Skip to content

Commit ab7203b

Browse files
chore: upgrade 'sass' to 1.85.1, silence new deprecation warnings
1 parent c43cbf4 commit ab7203b

File tree

5 files changed

+363
-13
lines changed

5 files changed

+363
-13
lines changed

config/webpack.dev-stage.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,9 @@ module.exports = merge(commonConfig, {
100100
path.join(process.cwd(), 'node_modules'),
101101
path.join(process.cwd(), 'src'),
102102
],
103-
// silences compiler warnings regarding deprecation warnings
103+
// Silences compiler deprecation warnings. They mostly come from bootstrap and/or paragon.
104104
quietDeps: true,
105+
silenceDeprecations: ['abs-percent', 'color-functions', 'import', 'mixed-decls', 'global-builtin'],
105106
},
106107
},
107108
},

config/webpack.dev.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,9 @@ function getStyleUseConfig() {
6464
path.join(process.cwd(), 'node_modules'),
6565
path.join(process.cwd(), 'src'),
6666
],
67-
// silences compiler warnings regarding deprecation warnings
67+
// Silences compiler deprecation warnings. They mostly come from bootstrap and/or paragon.
6868
quietDeps: true,
69+
silenceDeprecations: ['abs-percent', 'color-functions', 'import', 'mixed-decls', 'global-builtin'],
6970
},
7071
},
7172
},

config/webpack.prod.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,9 @@ module.exports = merge(commonConfig, {
131131
path.join(process.cwd(), 'node_modules'),
132132
path.join(process.cwd(), 'src'),
133133
],
134-
// silences compiler warnings regarding deprecation warnings
134+
// Silences compiler deprecation warnings. They mostly come from bootstrap and/or paragon.
135135
quietDeps: true,
136+
silenceDeprecations: ['abs-percent', 'color-functions', 'import', 'mixed-decls', 'global-builtin'],
136137
},
137138
},
138139
},

0 commit comments

Comments
 (0)