Skip to content

Commit 07f09d1

Browse files
update dependencies
1 parent 85def71 commit 07f09d1

File tree

21 files changed

+29175
-8733
lines changed

21 files changed

+29175
-8733
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,4 @@ yarn-error.log*
2424
.editorconfig
2525
.prettierrc.json
2626
src/**/*.css
27+
src/**/*.css.map

package-lock.json

Lines changed: 29140 additions & 8698 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
{
22
"name": "spotify-client",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"private": true,
55
"dependencies": {
6-
"axios": "^0.18.0",
7-
"moment": "^2.22.2",
8-
"node-sass-chokidar": "^1.3.3",
9-
"npm-run-all": "^4.1.3",
6+
"axios": "^0.23.0",
7+
"moment": "^2.29.1",
8+
"npm-run-all": "^4.1.5",
109
"react": "^16.5.1",
1110
"react-dom": "^16.5.1",
1211
"react-drag-listview": "^0.1.4",
@@ -15,11 +14,12 @@
1514
"react-redux": "^5.0.7",
1615
"react-scripts": "^2.1.8",
1716
"redux": "^4.0.0",
18-
"redux-thunk": "^2.3.0"
17+
"redux-thunk": "^2.3.0",
18+
"sass": "^1.43.2"
1919
},
2020
"scripts": {
21-
"build-css": "node-sass-chokidar src/ -o src/",
22-
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
21+
"build-css": "sass --load-path=src src/:src/",
22+
"watch-css": "npm run build-css && sass -w --load-path=src src/:src/",
2323
"start-js": "react-scripts start",
2424
"start": "npm-run-all -p watch-css start-js",
2525
"build-js": "react-scripts build",

src/App.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import 'src/utilities/variables';
1+
@import 'utilities/variables';
22

33
body {
44
background: rgb(24, 24, 24);

src/components/buttons/followButton/followButton.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import 'src/utilities/variables';
1+
@import 'utilities/variables';
22

33
.menu-btn,
44
.follow-btn {

src/components/devices/devices.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import 'src/utilities/variables';
1+
@import 'utilities/variables';
22

33
$green: green;
44

src/components/header/songsHeader.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import 'src/utilities/variables';
1+
@import 'utilities/variables';
22

33
.header-title {
44
font-size: 48px;

src/components/playlistModal/modal.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import 'src/utilities/variables';
1+
@import 'utilities/variables';
22

33
.overlay {
44
position: fixed;

src/components/sections/artist/components/albums/albums.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import 'src/utilities/variables';
1+
@import 'utilities/variables';
22

33
.albums-title {
44
border-bottom: 1px solid #6666665c;

src/components/sections/artist/components/popular/popular.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import "src/utilities/variables";
1+
@import 'utilities/variables';
22

33
button {
44
outline: none;
@@ -143,7 +143,7 @@ button {
143143
padding-left: 10px;
144144
text-transform: uppercase;
145145
background: transparent;
146-
font-family: "Proxima Nova", Georgia, sans-serif;
146+
font-family: 'Proxima Nova', Georgia, sans-serif;
147147
color: $light-gray;
148148
border: 1px solid $gray;
149149
padding: 10px;

0 commit comments

Comments
 (0)