Skip to content

Commit a3f6855

Browse files
committed
feature #1251 Add compatibility with sass-loader 14.0 (cedric-anne)
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
2 parents 692dbab + 8356445 commit a3f6855

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
"preact": "^10.5.0",
8686
"preact-compat": "^3.17.0",
8787
"sass": "^1.17.0",
88-
"sass-loader": "^13.0.0",
88+
"sass-loader": "^13.0.0 || ^14.0.0",
8989
"sinon": "^14.0.0",
9090
"strip-ansi": "^6.0.0",
9191
"stylus": "^0.60.0",
@@ -123,7 +123,7 @@
123123
"postcss": "^8.3.0",
124124
"postcss-loader": "^7.0.0",
125125
"sass": "^1.17.0",
126-
"sass-loader": "^13.0.0",
126+
"sass-loader": "^13.0.0 || ^14.0.0",
127127
"stylus": "^0.58.1",
128128
"stylus-loader": "^7.0.0",
129129
"ts-loader": "^9.0.0",

0 commit comments

Comments
 (0)