Bump sass-loader from 15.0.0 to 16.0.0 in /webapp
Bumps sass-loader from 15.0.0 to 16.0.0.
Release notes
Sourced from sass-loader's releases.
v16.0.0
16.0.0 (2024-07-26)
⚠ BREAKING CHANGES
- use modern Sass JS API by default for
sass
andsass-embedded
[!WARNING]
The sass options are different for the
legacy
(before) andmodern
APIs. Please look at docs how to migrate to the modern options. Legacy options - https://sass-lang.com/documentation/js-api/interfaces/legacystringoptions/ Modern options - https://sass-lang.com/documentation/js-api/interfaces/options/To return to the previous logic use:
module.exports = { module: { rules: [ { test: /\.s[ac]ss$/i, use: [ "style-loader", "css-loader", { loader: "sass-loader", options: { api: "legacy", // Your options }, }, ], }, ], }, };
Features
- use modern Sass JS API by default for
sass
andsass-embedded
(10be1ba)
Changelog
Sourced from sass-loader's changelog.
16.0.0 (2024-07-26)
⚠ BREAKING CHANGES
- use modern Sass JS API by default for
sass
andsass-embedded
[!WARNING]
The sass options are different for the
legacy
(before) andmodern
APIs. Please look at docs how to migrate to the modern options. Legacy options - https://sass-lang.com/documentation/js-api/interfaces/legacystringoptions/ Modern options - https://sass-lang.com/documentation/js-api/interfaces/options/To return to the previous logic use:
module.exports = { module: { rules: [ { test: /\.s[ac]ss$/i, use: [ "style-loader", "css-loader", { loader: "sass-loader", options: { api: "legacy", // Your options }, }, ], }, ], }, };
Features
- use modern Sass JS API by default for
sass
andsass-embedded
(10be1ba)
Commits
Dependabot commands
You can trigger Dependabot actions by commenting on this MR
-
$dependabot recreate
will recreate this MR rewriting all the manual changes and resolving conflicts