Skip to content

Commit 928cffb

Browse files
committed
dapp: downgrade Sass dependency
Unfortunately there is an issue of Vuetify which produces tons (massive amounts) of warning output when building the dApp. This issue is known at the Vuetify project. Unfortunately it can't be resolved while sticking to Vue 2 as it would produce conflicting dependency versions. That is what I take away from the respective issues (links below). This downgrade is the recommended solution. vuetifyjs/vuetify#13737 vuetifyjs/vuetify#13694
1 parent 9032d2e commit 928cffb

File tree

2 files changed

+39
-17
lines changed

2 files changed

+39
-17
lines changed

raiden-dapp/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
"jest-junit": "^12.2.0",
104104
"material-design-icons-iconfont": "^6.1.0",
105105
"nyc": "^15.1.0",
106-
"sass": "^1.35.2",
106+
"sass": "1.32.0",
107107
"sass-loader": "^10.2.0",
108108
"source-map-loader": "^1.1.3",
109109
"stylelint": "^13.13.1",

yarn.lock

+38-16
Original file line numberDiff line numberDiff line change
@@ -4416,7 +4416,7 @@ anymatch@^2.0.0:
44164416
micromatch "^3.1.4"
44174417
normalize-path "^2.1.1"
44184418

4419-
anymatch@^3.0.0, anymatch@^3.0.3, anymatch@~3.1.1:
4419+
anymatch@^3.0.0, anymatch@^3.0.3, anymatch@~3.1.1, anymatch@~3.1.2:
44204420
version "3.1.2"
44214421
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716"
44224422
integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==
@@ -6097,20 +6097,20 @@ checkpoint-store@^1.1.0:
60976097
dependencies:
60986098
functional-red-black-tree "^1.0.1"
60996099

6100-
"chokidar@>=3.0.0 <4.0.0", chokidar@^3.3.0, chokidar@^3.4.1:
6101-
version "3.5.1"
6102-
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.1.tgz#ee9ce7bbebd2b79f49f304799d5468e31e14e68a"
6103-
integrity sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==
6100+
"chokidar@>=2.0.0 <4.0.0":
6101+
version "3.5.2"
6102+
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.2.tgz#dba3976fcadb016f66fd365021d91600d01c1e75"
6103+
integrity sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==
61046104
dependencies:
6105-
anymatch "~3.1.1"
6105+
anymatch "~3.1.2"
61066106
braces "~3.0.2"
6107-
glob-parent "~5.1.0"
6107+
glob-parent "~5.1.2"
61086108
is-binary-path "~2.1.0"
61096109
is-glob "~4.0.1"
61106110
normalize-path "~3.0.0"
6111-
readdirp "~3.5.0"
6111+
readdirp "~3.6.0"
61126112
optionalDependencies:
6113-
fsevents "~2.3.1"
6113+
fsevents "~2.3.2"
61146114

61156115
chokidar@^2.0.4, chokidar@^2.1.1, chokidar@^2.1.8:
61166116
version "2.1.8"
@@ -6131,6 +6131,21 @@ chokidar@^2.0.4, chokidar@^2.1.1, chokidar@^2.1.8:
61316131
optionalDependencies:
61326132
fsevents "^1.2.7"
61336133

6134+
chokidar@^3.3.0, chokidar@^3.4.1:
6135+
version "3.5.1"
6136+
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.1.tgz#ee9ce7bbebd2b79f49f304799d5468e31e14e68a"
6137+
integrity sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==
6138+
dependencies:
6139+
anymatch "~3.1.1"
6140+
braces "~3.0.2"
6141+
glob-parent "~5.1.0"
6142+
is-binary-path "~2.1.0"
6143+
is-glob "~4.0.1"
6144+
normalize-path "~3.0.0"
6145+
readdirp "~3.5.0"
6146+
optionalDependencies:
6147+
fsevents "~2.3.1"
6148+
61346149
chownr@^1.1.1:
61356150
version "1.1.4"
61366151
resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b"
@@ -9735,7 +9750,7 @@ fsevents@^1.2.7:
97359750
bindings "^1.5.0"
97369751
nan "^2.12.1"
97379752

9738-
fsevents@^2.1.2, fsevents@~2.3.1:
9753+
fsevents@^2.1.2, fsevents@~2.3.1, fsevents@~2.3.2:
97399754
version "2.3.2"
97409755
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
97419756
integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
@@ -9907,7 +9922,7 @@ glob-parent@^3.1.0:
99079922
is-glob "^3.1.0"
99089923
path-dirname "^1.0.0"
99099924

9910-
glob-parent@^5.1.0, glob-parent@^5.1.1, glob-parent@^5.1.2, glob-parent@~5.1.0:
9925+
glob-parent@^5.1.0, glob-parent@^5.1.1, glob-parent@^5.1.2, glob-parent@~5.1.0, glob-parent@~5.1.2:
99119926
version "5.1.2"
99129927
resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
99139928
integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
@@ -16350,6 +16365,13 @@ readdirp@~3.5.0:
1635016365
dependencies:
1635116366
picomatch "^2.2.1"
1635216367

16368+
readdirp@~3.6.0:
16369+
version "3.6.0"
16370+
resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7"
16371+
integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==
16372+
dependencies:
16373+
picomatch "^2.2.1"
16374+
1635316375
realpath-native@^1.1.0:
1635416376
version "1.1.0"
1635516377
resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.1.0.tgz#2003294fea23fb0672f2476ebe22fcf498a2d65c"
@@ -16959,12 +16981,12 @@ sass-loader@^10.2.0:
1695916981
schema-utils "^3.0.0"
1696016982
semver "^7.3.2"
1696116983

16962-
sass@^1.35.2:
16963-
version "1.35.2"
16964-
resolved "https://registry.yarnpkg.com/sass/-/sass-1.35.2.tgz#b732314fcdaf7ef8d0f1698698adc378043cb821"
16965-
integrity sha512-jhO5KAR+AMxCEwIH3v+4zbB2WB0z67V1X0jbapfVwQQdjHZUGUyukpnoM6+iCMfsIUC016w9OPKQ5jrNOS9uXw==
16984+
sass@1.32.0:
16985+
version "1.32.0"
16986+
resolved "https://registry.yarnpkg.com/sass/-/sass-1.32.0.tgz#10101a026c13080b14e2b374d4e15ee24400a4d3"
16987+
integrity sha512-fhyqEbMIycQA4blrz/C0pYhv2o4x2y6FYYAH0CshBw3DXh5D5wyERgxw0ptdau1orc/GhNrhF7DFN2etyOCEng==
1696616988
dependencies:
16967-
chokidar ">=3.0.0 <4.0.0"
16989+
chokidar ">=2.0.0 <4.0.0"
1696816990

1696916991
1697016992
version "1.1.4"

0 commit comments

Comments
 (0)