@vituum/vite-plugin-postcss 2.0.0-next.1 → 2.0.1
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 +2 -2
- package/package.json +19 -10
package/README.md
CHANGED
|
@@ -27,5 +27,5 @@ Read the [docs](https://vituum.dev/plugins/postcss.html) to learn more about plu
|
|
|
27
27
|
|
|
28
28
|
### Requirements
|
|
29
29
|
|
|
30
|
-
- [Node.js LTS (
|
|
31
|
-
- [Vite
|
|
30
|
+
- [Node.js LTS (20.x)](https://nodejs.org/en/download/)
|
|
31
|
+
- [Vite](https://vitejs.dev/)
|
package/package.json
CHANGED
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vituum/vite-plugin-postcss",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "types/index.d.ts",
|
|
7
|
+
"description": "Vite plugin for PostCSS, adds basic plugins out of the box",
|
|
8
|
+
"keywords": [
|
|
9
|
+
"postcss",
|
|
10
|
+
"vituum",
|
|
11
|
+
"vite",
|
|
12
|
+
"vite-plugin"
|
|
13
|
+
],
|
|
7
14
|
"scripts": {
|
|
8
15
|
"lint": "npm run eslint && npm run tsc",
|
|
9
16
|
"tsc": "tsc",
|
|
@@ -11,21 +18,23 @@
|
|
|
11
18
|
"publish-next": "npm publish --tag next"
|
|
12
19
|
},
|
|
13
20
|
"dependencies": {
|
|
14
|
-
"vituum": "^2.0
|
|
21
|
+
"vituum": "^2.0",
|
|
15
22
|
"autoprefixer": "^10.4",
|
|
16
23
|
"postcss": "^8.5",
|
|
17
24
|
"postcss-import": "^16.1",
|
|
18
25
|
"postcss-nesting": "^14.0",
|
|
19
26
|
"postcss-custom-media": "^12.0"
|
|
20
27
|
},
|
|
28
|
+
"peerDependencies": {
|
|
29
|
+
"vite": "^8.0"
|
|
30
|
+
},
|
|
21
31
|
"devDependencies": {
|
|
22
|
-
"@eslint/js": "^
|
|
23
|
-
"@stylistic/eslint-plugin": "^5.
|
|
24
|
-
"@types/node": "^25.
|
|
25
|
-
"eslint": "^
|
|
26
|
-
"globals": "^17.
|
|
27
|
-
"typescript": "^5.9"
|
|
28
|
-
"vite": "^8.0.0-beta.8"
|
|
32
|
+
"@eslint/js": "^10.0",
|
|
33
|
+
"@stylistic/eslint-plugin": "^5.10",
|
|
34
|
+
"@types/node": "^25.5",
|
|
35
|
+
"eslint": "^10.0",
|
|
36
|
+
"globals": "^17.4",
|
|
37
|
+
"typescript": "^5.9"
|
|
29
38
|
},
|
|
30
39
|
"files": [
|
|
31
40
|
"index.js",
|
|
@@ -38,7 +47,7 @@
|
|
|
38
47
|
}
|
|
39
48
|
},
|
|
40
49
|
"engines": {
|
|
41
|
-
"node": "^
|
|
50
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
42
51
|
},
|
|
43
52
|
"repository": {
|
|
44
53
|
"type": "git",
|