Skip to content

Commit

Permalink
feature #1251 Add compatibility with sass-loader 14.0 (cedric-anne)
Browse files Browse the repository at this point in the history
This PR was merged into the main branch.

Discussion
----------

Add compatibility with `sass-loader` 14.0

A new version of `sass-loader` has been recently released. Unless I miss something, this new version can be used with `webpack-encore` without any unexpected side effect.

I kept compatibility with `sass-loader@^13.0.0` to ensure the compatibility of `webpack-encore` with `node` 16 (`sass-loader@^14.0.0` now requires `node` 18 at least).

Commits
-------

8356445 Add compatibility with `sass-loader` 14.0
  • Loading branch information
weaverryan committed Jan 22, 2024
2 parents 692dbab + 8356445 commit a3f6855
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
"preact": "^10.5.0",
"preact-compat": "^3.17.0",
"sass": "^1.17.0",
"sass-loader": "^13.0.0",
"sass-loader": "^13.0.0 || ^14.0.0",
"sinon": "^14.0.0",
"strip-ansi": "^6.0.0",
"stylus": "^0.60.0",
Expand Down Expand Up @@ -123,7 +123,7 @@
"postcss": "^8.3.0",
"postcss-loader": "^7.0.0",
"sass": "^1.17.0",
"sass-loader": "^13.0.0",
"sass-loader": "^13.0.0 || ^14.0.0",
"stylus": "^0.58.1",
"stylus-loader": "^7.0.0",
"ts-loader": "^9.0.0",
Expand Down

0 comments on commit a3f6855

Please sign in to comment.