@itcase/config 1.0.48 → 1.0.49
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 +9 -9
- package/postcss/index.js +5 -0
- package/postcss/require.cjs +12 -5
- package/postcss/require.js +12 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itcase/config",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.49",
|
|
4
4
|
"author": "ITCase",
|
|
5
5
|
"description": "Config",
|
|
6
6
|
"engines": {
|
|
@@ -52,13 +52,13 @@
|
|
|
52
52
|
"postcss-import-ext-glob": "^2.1.1",
|
|
53
53
|
"postcss-loader": "^8.1.1",
|
|
54
54
|
"postcss-merge-at-rules": "^1.2.0",
|
|
55
|
-
"postcss-mixins": "^
|
|
55
|
+
"postcss-mixins": "^12.0.0",
|
|
56
56
|
"postcss-mq-extract": "^1.0.0",
|
|
57
57
|
"postcss-nested": "^7.0.2",
|
|
58
58
|
"postcss-nested-ancestors": "^3.0.0",
|
|
59
59
|
"postcss-normalize": "^13.0.1",
|
|
60
60
|
"postcss-prepend-imports": "^1.0.1",
|
|
61
|
-
"postcss-preset-env": "^10.2.
|
|
61
|
+
"postcss-preset-env": "^10.2.4",
|
|
62
62
|
"postcss-pxtorem": "^6.1.0",
|
|
63
63
|
"postcss-sort-media-queries": "^5.2.0",
|
|
64
64
|
"postcss-url": "^10.1.3",
|
|
@@ -67,17 +67,17 @@
|
|
|
67
67
|
"devDependencies": {
|
|
68
68
|
"@commitlint/cli": "^19.8.1",
|
|
69
69
|
"@commitlint/config-conventional": "^19.8.1",
|
|
70
|
-
"@itcase/lint": "^1.1.
|
|
70
|
+
"@itcase/lint": "^1.1.21",
|
|
71
71
|
"@semantic-release/changelog": "^6.0.3",
|
|
72
72
|
"@semantic-release/git": "^10.0.1",
|
|
73
73
|
"@semantic-release/release-notes-generator": "14.0.3",
|
|
74
|
-
"conventional-changelog-conventionalcommits": "^9.
|
|
75
|
-
"eslint": "^9.
|
|
74
|
+
"conventional-changelog-conventionalcommits": "^9.1.0",
|
|
75
|
+
"eslint": "^9.30.1",
|
|
76
76
|
"husky": "^9.1.7",
|
|
77
77
|
"lint-staged": "^16.1.2",
|
|
78
|
-
"prettier": "^3.
|
|
79
|
-
"semantic-release": "^24.2.
|
|
80
|
-
"stylelint": "^16.21.
|
|
78
|
+
"prettier": "^3.6.2",
|
|
79
|
+
"semantic-release": "^24.2.6",
|
|
80
|
+
"stylelint": "^16.21.1",
|
|
81
81
|
"typescript": "^5.8.3"
|
|
82
82
|
}
|
|
83
83
|
}
|
package/postcss/index.js
CHANGED
package/postcss/require.cjs
CHANGED
|
@@ -35,11 +35,18 @@ module.exports = {
|
|
|
35
35
|
stage: 2,
|
|
36
36
|
}),
|
|
37
37
|
require('postcss-mixins'),
|
|
38
|
-
require('postcss-url')(
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
38
|
+
require('postcss-url')(
|
|
39
|
+
{
|
|
40
|
+
maxSize: 256,
|
|
41
|
+
url: 'inline',
|
|
42
|
+
filter: /\.(svg|png)$/,
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
maxSize: 128,
|
|
46
|
+
url: 'inline',
|
|
47
|
+
filter: /\.(eot|woff|woff2|ttf)$/,
|
|
48
|
+
},
|
|
49
|
+
),
|
|
43
50
|
require('postcss-nested-ancestors'),
|
|
44
51
|
require('postcss-nested'),
|
|
45
52
|
require('postcss-hexrgba'),
|
package/postcss/require.js
CHANGED
|
@@ -36,11 +36,18 @@ module.exports = {
|
|
|
36
36
|
stage: 2,
|
|
37
37
|
}),
|
|
38
38
|
require('postcss-mixins'),
|
|
39
|
-
require('postcss-url')(
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
39
|
+
require('postcss-url')(
|
|
40
|
+
{
|
|
41
|
+
maxSize: 256,
|
|
42
|
+
url: 'inline',
|
|
43
|
+
filter: /\.(svg|png)$/,
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
maxSize: 128,
|
|
47
|
+
url: 'inline',
|
|
48
|
+
filter: /\.(eot|woff|woff2|ttf)$/,
|
|
49
|
+
},
|
|
50
|
+
),
|
|
44
51
|
require('postcss-nested-ancestors'),
|
|
45
52
|
require('postcss-nested'),
|
|
46
53
|
require('postcss-hexrgba'),
|