sass-loader 14.0.0 → 14.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +10 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sass-loader",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.1.0",
|
|
4
4
|
"description": "Sass loader for webpack",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": "webpack-contrib/sass-loader",
|
|
@@ -22,14 +22,14 @@
|
|
|
22
22
|
"build": "cross-env NODE_ENV=production babel src -d dist --copy-files",
|
|
23
23
|
"commitlint": "commitlint --from=master",
|
|
24
24
|
"security": "npm audit --production",
|
|
25
|
-
"lint:prettier": "prettier --list-different .",
|
|
25
|
+
"lint:prettier": "prettier --cache --list-different .",
|
|
26
26
|
"lint:js": "eslint --cache .",
|
|
27
|
+
"lint:spelling": "cspell --cache --no-must-find-files --quiet \"**/*.*\"",
|
|
27
28
|
"lint": "npm-run-all -l -p \"lint:**\"",
|
|
28
29
|
"test:only": "cross-env NODE_ENV=test jest",
|
|
29
30
|
"fix:js": "npm run lint:js -- --fix",
|
|
30
31
|
"fix:prettier": "npm run lint:prettier -- --write",
|
|
31
32
|
"fix": "npm-run-all -l fix:js fix:prettier",
|
|
32
|
-
"lint:spelling": "cspell \"**/*.*\"",
|
|
33
33
|
"test:watch": "npm run test:only -- --watch",
|
|
34
34
|
"test:manual": "npm run build && webpack-dev-server test/manual/src/index.js --open --config test/manual/webpack.config.js",
|
|
35
35
|
"test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
|
|
@@ -42,12 +42,16 @@
|
|
|
42
42
|
"dist"
|
|
43
43
|
],
|
|
44
44
|
"peerDependencies": {
|
|
45
|
+
"@rspack/core": "0.x || 1.x",
|
|
45
46
|
"node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
|
|
46
47
|
"sass": "^1.3.0",
|
|
47
48
|
"sass-embedded": "*",
|
|
48
49
|
"webpack": "^5.0.0"
|
|
49
50
|
},
|
|
50
51
|
"peerDependenciesMeta": {
|
|
52
|
+
"@rspack/core": {
|
|
53
|
+
"optional": true
|
|
54
|
+
},
|
|
51
55
|
"node-sass": {
|
|
52
56
|
"optional": true
|
|
53
57
|
},
|
|
@@ -56,6 +60,9 @@
|
|
|
56
60
|
},
|
|
57
61
|
"sass-embedded": {
|
|
58
62
|
"optional": true
|
|
63
|
+
},
|
|
64
|
+
"webpack": {
|
|
65
|
+
"optional": true
|
|
59
66
|
}
|
|
60
67
|
},
|
|
61
68
|
"dependencies": {
|