@studiokloek/vite-config 0.3.0 → 0.3.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/package.json +14 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@studiokloek/vite-config",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Martijn Swart <opensource@studiokloek.nl> (https://studiokloek.nl)",
|
|
6
6
|
"description": "Base Vite config for usage in our projects.",
|
|
@@ -24,13 +24,17 @@
|
|
|
24
24
|
"url": "https://github.com/studiokloek/vite-config/issues"
|
|
25
25
|
},
|
|
26
26
|
"scripts": {
|
|
27
|
-
"dev": "
|
|
28
|
-
"build": "
|
|
29
|
-
"build
|
|
30
|
-
"build
|
|
31
|
-
"build
|
|
32
|
-
"
|
|
33
|
-
"
|
|
27
|
+
"dev": "run-s build/clean build/watch",
|
|
28
|
+
"build": "run-s build/clean build/bundle types",
|
|
29
|
+
"build/clean": "rimraf dist",
|
|
30
|
+
"build/watch": "yarn build/bundle -w",
|
|
31
|
+
"build/bundle": "rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
|
|
32
|
+
"types": "run-s types/temp types/roll types/clean",
|
|
33
|
+
"types/temp": "tsc --project tsconfig.types.json",
|
|
34
|
+
"types/roll": "api-extractor run",
|
|
35
|
+
"types/clean": "rimraf tmp/types",
|
|
36
|
+
"release": "run-s build release/publish",
|
|
37
|
+
"release/publish": "np"
|
|
34
38
|
},
|
|
35
39
|
"engines": {
|
|
36
40
|
"node": ">=14.18.0"
|
|
@@ -69,7 +73,7 @@
|
|
|
69
73
|
"eslint": "^8.21.0",
|
|
70
74
|
"eslint-config-prettier": "^8.5.0",
|
|
71
75
|
"eslint-formatter-pretty": "^4.1.0",
|
|
72
|
-
"eslint-import-resolver-typescript": "^3.4.
|
|
76
|
+
"eslint-import-resolver-typescript": "^3.4.1",
|
|
73
77
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
74
78
|
"eslint-plugin-import": "^2.26.0",
|
|
75
79
|
"eslint-plugin-prettier": "^4.2.1",
|
|
@@ -77,6 +81,7 @@
|
|
|
77
81
|
"eslint-plugin-svelte3": "^4.0.0",
|
|
78
82
|
"eslint-plugin-unicorn": "^43.0.2",
|
|
79
83
|
"meow": "^10.1.3",
|
|
84
|
+
"npm-run-all": "^4.1.5",
|
|
80
85
|
"postcss": "^8.4.16",
|
|
81
86
|
"postcss-load-config": "^4.0.1",
|
|
82
87
|
"prettier": "^2.7.1",
|
|
@@ -103,7 +108,6 @@
|
|
|
103
108
|
"@types/html-minifier-terser": "^6.1.0",
|
|
104
109
|
"@types/node": "^16.11.48",
|
|
105
110
|
"np": "^7.6.2",
|
|
106
|
-
"npm-run-all": "^4.1.5",
|
|
107
111
|
"prettier": "^2.7.1",
|
|
108
112
|
"rimraf": "^3.0.2",
|
|
109
113
|
"rollup": "^2.77.3",
|