@db-ux/core-postcss-plugin 4.7.2 → 4.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/CHANGELOG.md +5 -1
- package/package.json +15 -13
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@db-ux/core-postcss-plugin",
|
|
3
|
-
"version": "4.7.
|
|
3
|
+
"version": "4.7.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "PostCSS plugins for DB UX Design System",
|
|
6
6
|
"repository": {
|
|
@@ -25,26 +25,28 @@
|
|
|
25
25
|
"css-variables",
|
|
26
26
|
"light-dark"
|
|
27
27
|
],
|
|
28
|
-
"scripts": {
|
|
29
|
-
"build": "tsc",
|
|
30
|
-
"copy-output": "npm-run-all copy:*",
|
|
31
|
-
"copy:changelog": "cpr CHANGELOG.md ../../build-outputs/postcss-plugin/CHANGELOG.md --overwrite",
|
|
32
|
-
"copy:outputs": "cpr build ../../build-outputs/postcss-plugin/build -o",
|
|
33
|
-
"copy:package.json": "cpr package.json ../../build-outputs/postcss-plugin/package.json -o",
|
|
34
|
-
"copy:readme": "cpr README.md ../../build-outputs/postcss-plugin/README.md -o",
|
|
35
|
-
"test": "vitest run --config vitest.config.ts",
|
|
36
|
-
"test:update": "vitest run --config vitest.config.ts --update"
|
|
37
|
-
},
|
|
38
28
|
"peerDependencies": {
|
|
39
29
|
"postcss": "^8.0.0"
|
|
40
30
|
},
|
|
41
31
|
"devDependencies": {
|
|
42
|
-
"
|
|
32
|
+
"cpr": "3.0.1",
|
|
33
|
+
"npm-run-all2": "8.0.4",
|
|
34
|
+
"postcss": "8.5.14",
|
|
43
35
|
"typescript": "5.9.3",
|
|
44
36
|
"vitest": "4.1.5"
|
|
45
37
|
},
|
|
46
38
|
"publishConfig": {
|
|
47
39
|
"registry": "https://registry.npmjs.org/",
|
|
48
40
|
"access": "public"
|
|
41
|
+
},
|
|
42
|
+
"scripts": {
|
|
43
|
+
"build": "tsc",
|
|
44
|
+
"copy-output": "run-p copy:*",
|
|
45
|
+
"copy:changelog": "cpr CHANGELOG.md ../../build-outputs/postcss-plugin/CHANGELOG.md --overwrite",
|
|
46
|
+
"copy:outputs": "cpr build ../../build-outputs/postcss-plugin/build -o",
|
|
47
|
+
"copy:package.json": "cpr package.json ../../build-outputs/postcss-plugin/package.json -o",
|
|
48
|
+
"copy:readme": "cpr README.md ../../build-outputs/postcss-plugin/README.md -o",
|
|
49
|
+
"test": "vitest run --config vitest.config.ts",
|
|
50
|
+
"test:update": "vitest run --config vitest.config.ts --update"
|
|
49
51
|
}
|
|
50
|
-
}
|
|
52
|
+
}
|