Skip to content

Commit

Permalink
chore(deps-dev): Bump sass from 1.79.5 to 1.83.0 (#1410)
Browse files Browse the repository at this point in the history
* chore(deps-dev): Bump sass from 1.79.5 to 1.83.0

Bumps [sass](https://github.com/sass/dart-sass) from 1.79.5 to 1.83.0.
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.79.5...1.83.0)

---
updated-dependencies:
- dependency-name: sass
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Silence sass deprecations

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: David Rodríguez <[email protected]>
  • Loading branch information
dependabot[bot] and deivid-rodriguez authored Jan 2, 2025
1 parent 345309d commit b43ebe2
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 26 deletions.
68 changes: 46 additions & 22 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"css-loader": "^7.1.2",
"mini-css-extract-plugin": "^2.9.2",
"prettier": "3.4.2",
"sass": "^1.79.5",
"sass": "^1.83.0",
"sass-loader": "^16.0.4",
"style-loader": "^4.0.0",
"webpack": "^5.97.1",
Expand Down
17 changes: 14 additions & 3 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,20 @@ module.exports = {
{
test: /\.scss$/,
use: [
MiniCssExtractPlugin.loader,
'css-loader',
'sass-loader',
{
loader: MiniCssExtractPlugin.loader
},
{
loader: 'css-loader'
},
{
loader: 'sass-loader',
options: {
sassOptions: {
silenceDeprecations: ['mixed-decls', 'color-functions', 'global-builtin', 'import'],
}
}
}
],
},
{
Expand Down

0 comments on commit b43ebe2

Please sign in to comment.