css-loader 6.7.1 → 6.7.3
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/README.md +52 -20
- package/dist/CssSyntaxError.js +5 -10
- package/dist/Warning.js +5 -8
- package/dist/cjs.js +0 -1
- package/dist/index.js +9 -36
- package/dist/plugins/index.js +0 -4
- package/dist/plugins/postcss-icss-parser.js +4 -24
- package/dist/plugins/postcss-import-parser.js +15 -59
- package/dist/plugins/postcss-url-parser.js +29 -85
- package/dist/runtime/api.js +4 -21
- package/dist/runtime/getUrl.js +5 -8
- package/dist/runtime/sourceMaps.js +1 -7
- package/dist/utils.js +103 -264
- package/package.json +26 -23
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "css-loader",
|
|
3
|
-
"version": "6.7.
|
|
3
|
+
"version": "6.7.3",
|
|
4
4
|
"description": "css loader module for webpack",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": "webpack-contrib/css-loader",
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
"security": "npm audit --production",
|
|
27
27
|
"lint:prettier": "prettier --list-different .",
|
|
28
28
|
"lint:js": "eslint --cache .",
|
|
29
|
+
"lint:spelling": "cspell \"**/*.*\"",
|
|
29
30
|
"lint": "npm-run-all -l -p \"lint:**\"",
|
|
30
31
|
"test:only": "cross-env NODE_ENV=test jest",
|
|
31
32
|
"test:watch": "npm run test:only -- --watch",
|
|
@@ -43,50 +44,52 @@
|
|
|
43
44
|
},
|
|
44
45
|
"dependencies": {
|
|
45
46
|
"icss-utils": "^5.1.0",
|
|
46
|
-
"postcss": "^8.4.
|
|
47
|
+
"postcss": "^8.4.19",
|
|
47
48
|
"postcss-modules-extract-imports": "^3.0.0",
|
|
48
49
|
"postcss-modules-local-by-default": "^4.0.0",
|
|
49
50
|
"postcss-modules-scope": "^3.0.0",
|
|
50
51
|
"postcss-modules-values": "^4.0.0",
|
|
51
52
|
"postcss-value-parser": "^4.2.0",
|
|
52
|
-
"semver": "^7.3.
|
|
53
|
+
"semver": "^7.3.8"
|
|
53
54
|
},
|
|
54
55
|
"devDependencies": {
|
|
55
|
-
"@babel/cli": "^7.
|
|
56
|
-
"@babel/core": "^7.
|
|
57
|
-
"@babel/preset-env": "^7.
|
|
58
|
-
"@commitlint/cli": "^16.
|
|
59
|
-
"@commitlint/config-conventional": "^16.2.
|
|
56
|
+
"@babel/cli": "^7.19.3",
|
|
57
|
+
"@babel/core": "^7.20.5",
|
|
58
|
+
"@babel/preset-env": "^7.20.2",
|
|
59
|
+
"@commitlint/cli": "^16.3.0",
|
|
60
|
+
"@commitlint/config-conventional": "^16.2.4",
|
|
60
61
|
"@webpack-contrib/eslint-config-webpack": "^3.0.0",
|
|
61
|
-
"babel-jest": "^
|
|
62
|
+
"babel-jest": "^28.1.3",
|
|
62
63
|
"cross-env": "^7.0.3",
|
|
63
|
-
"
|
|
64
|
+
"cspell": "^6.15.1",
|
|
65
|
+
"del": "^6.1.1",
|
|
64
66
|
"del-cli": "^4.0.1",
|
|
65
|
-
"es-check": "^
|
|
66
|
-
"eslint": "^8.
|
|
67
|
+
"es-check": "^7.0.1",
|
|
68
|
+
"eslint": "^8.28.0",
|
|
67
69
|
"eslint-config-prettier": "^8.5.0",
|
|
68
|
-
"eslint-plugin-import": "^2.
|
|
70
|
+
"eslint-plugin-import": "^2.26.0",
|
|
69
71
|
"file-loader": "^6.2.0",
|
|
70
72
|
"husky": "^7.0.1",
|
|
71
|
-
"jest": "^
|
|
72
|
-
"
|
|
73
|
+
"jest": "^28.1.3",
|
|
74
|
+
"jest-environment-jsdom": "^28.1.3",
|
|
75
|
+
"less": "^4.1.3",
|
|
73
76
|
"less-loader": "^10.0.1",
|
|
74
|
-
"lint-staged": "^12.
|
|
75
|
-
"memfs": "^3.4.
|
|
76
|
-
"mini-css-extract-plugin": "^2.
|
|
77
|
+
"lint-staged": "^12.5.0",
|
|
78
|
+
"memfs": "^3.4.12",
|
|
79
|
+
"mini-css-extract-plugin": "^2.7.1",
|
|
77
80
|
"npm-run-all": "^4.1.5",
|
|
78
81
|
"postcss-loader": "^6.2.1",
|
|
79
|
-
"postcss-preset-env": "^7.
|
|
80
|
-
"prettier": "^2.
|
|
81
|
-
"sass": "^1.
|
|
82
|
+
"postcss-preset-env": "^7.8.3",
|
|
83
|
+
"prettier": "^2.8.0",
|
|
84
|
+
"sass": "^1.56.1",
|
|
82
85
|
"sass-loader": "^12.6.0",
|
|
83
|
-
"standard-version": "^9.
|
|
86
|
+
"standard-version": "^9.5.0",
|
|
84
87
|
"strip-ansi": "^6.0.0",
|
|
85
88
|
"style-loader": "^3.1.0",
|
|
86
89
|
"stylus": "^0.56.0",
|
|
87
90
|
"stylus-loader": "^6.1.0",
|
|
88
91
|
"url-loader": "^4.1.1",
|
|
89
|
-
"webpack": "^5.
|
|
92
|
+
"webpack": "^5.75.0"
|
|
90
93
|
},
|
|
91
94
|
"keywords": [
|
|
92
95
|
"webpack",
|