Skip to content

Commit

Permalink
chore: upgrade 'sass' to 1.85.1, silence new deprecation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
bradenmacdonald committed Mar 4, 2025
1 parent c43cbf4 commit ab7203b
Show file tree
Hide file tree
Showing 5 changed files with 363 additions and 13 deletions.
3 changes: 2 additions & 1 deletion config/webpack.dev-stage.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,9 @@ module.exports = merge(commonConfig, {
path.join(process.cwd(), 'node_modules'),
path.join(process.cwd(), 'src'),
],
// silences compiler warnings regarding deprecation warnings
// Silences compiler deprecation warnings. They mostly come from bootstrap and/or paragon.
quietDeps: true,
silenceDeprecations: ['abs-percent', 'color-functions', 'import', 'mixed-decls', 'global-builtin'],
},
},
},
Expand Down
3 changes: 2 additions & 1 deletion config/webpack.dev.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,9 @@ function getStyleUseConfig() {
path.join(process.cwd(), 'node_modules'),
path.join(process.cwd(), 'src'),
],
// silences compiler warnings regarding deprecation warnings
// Silences compiler deprecation warnings. They mostly come from bootstrap and/or paragon.
quietDeps: true,
silenceDeprecations: ['abs-percent', 'color-functions', 'import', 'mixed-decls', 'global-builtin'],
},
},
},
Expand Down
3 changes: 2 additions & 1 deletion config/webpack.prod.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,9 @@ module.exports = merge(commonConfig, {
path.join(process.cwd(), 'node_modules'),
path.join(process.cwd(), 'src'),
],
// silences compiler warnings regarding deprecation warnings
// Silences compiler deprecation warnings. They mostly come from bootstrap and/or paragon.
quietDeps: true,
silenceDeprecations: ['abs-percent', 'color-functions', 'import', 'mixed-decls', 'global-builtin'],
},
},
},
Expand Down
Loading

0 comments on commit ab7203b

Please sign in to comment.