@pinegrow/vite-plugin 3.0.73-alpha.5 → 3.0.73-alpha.6
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
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pinegrow/vite-plugin",
|
|
3
|
-
"version": "3.0.73-alpha.
|
|
3
|
+
"version": "3.0.73-alpha.6",
|
|
4
4
|
"description": "Pinegrow Vite Plugin",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"files": [
|
|
7
|
-
"dist",
|
|
8
|
-
"./types.d.ts",
|
|
9
|
-
"./astro.d.ts",
|
|
10
|
-
"./astro-runtime.d.ts"
|
|
11
|
-
],
|
|
6
|
+
"files": [
|
|
7
|
+
"dist",
|
|
8
|
+
"./types.d.ts",
|
|
9
|
+
"./astro.d.ts",
|
|
10
|
+
"./astro-runtime.d.ts"
|
|
11
|
+
],
|
|
12
12
|
"main": "./dist/index.cjs",
|
|
13
13
|
"module": "./dist/index.mjs",
|
|
14
14
|
"types": "./types.d.ts",
|
|
@@ -17,25 +17,25 @@
|
|
|
17
17
|
"types": "./types.d.ts",
|
|
18
18
|
"import": "./dist/index.mjs",
|
|
19
19
|
"require": "./dist/index.cjs"
|
|
20
|
-
},
|
|
21
|
-
"./dev": {
|
|
22
|
-
"import": "./src/index.dev.js",
|
|
23
|
-
"require": "./src/index.dev.js"
|
|
24
|
-
},
|
|
25
|
-
"./vue": {
|
|
26
|
-
"import": "./dist/vue/index.js"
|
|
27
|
-
},
|
|
28
|
-
"./astro": {
|
|
29
|
-
"types": "./astro.d.ts",
|
|
30
|
-
"import": "./dist/astro/index.mjs",
|
|
31
|
-
"require": "./dist/astro/index.cjs"
|
|
32
|
-
},
|
|
33
|
-
"./astro/runtime": {
|
|
34
|
-
"types": "./astro-runtime.d.ts",
|
|
35
|
-
"import": "./dist/astro/runtime.mjs",
|
|
36
|
-
"require": "./dist/astro/runtime.cjs"
|
|
37
|
-
}
|
|
38
|
-
},
|
|
20
|
+
},
|
|
21
|
+
"./dev": {
|
|
22
|
+
"import": "./src/index.dev.js",
|
|
23
|
+
"require": "./src/index.dev.js"
|
|
24
|
+
},
|
|
25
|
+
"./vue": {
|
|
26
|
+
"import": "./dist/vue/index.js"
|
|
27
|
+
},
|
|
28
|
+
"./astro": {
|
|
29
|
+
"types": "./astro.d.ts",
|
|
30
|
+
"import": "./dist/astro/index.mjs",
|
|
31
|
+
"require": "./dist/astro/index.cjs"
|
|
32
|
+
},
|
|
33
|
+
"./astro/runtime": {
|
|
34
|
+
"types": "./astro-runtime.d.ts",
|
|
35
|
+
"import": "./dist/astro/runtime.mjs",
|
|
36
|
+
"require": "./dist/astro/runtime.cjs"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
39
|
"keywords": [
|
|
40
40
|
"pinegrow",
|
|
41
41
|
"vue designer",
|
|
@@ -46,23 +46,23 @@
|
|
|
46
46
|
],
|
|
47
47
|
"author": "Pinegrow (http://pinegrow.com/)",
|
|
48
48
|
"license": "MIT",
|
|
49
|
-
"scripts": {
|
|
50
|
-
"build": "webpack -- --env mode=production vite",
|
|
51
|
-
"build:vite-plugin": "webpack -- --env mode=production vite",
|
|
52
|
-
"build:vite-plugin:dev": "webpack -- --env mode=development vite",
|
|
53
|
-
"test": "node --test test/*.test.mjs",
|
|
54
|
-
"publish-alpha": "npm run increment-alpha-version && npm publish --tag alpha",
|
|
55
|
-
"increment-alpha-version": "npm version prerelease --preid=alpha",
|
|
56
|
-
"publish-beta": "npm run increment-beta-version && npm publish --tag beta",
|
|
49
|
+
"scripts": {
|
|
50
|
+
"build": "webpack -- --env mode=production vite",
|
|
51
|
+
"build:vite-plugin": "webpack -- --env mode=production vite",
|
|
52
|
+
"build:vite-plugin:dev": "webpack -- --env mode=development vite",
|
|
53
|
+
"test": "node --test test/*.test.mjs",
|
|
54
|
+
"publish-alpha": "npm run increment-alpha-version && npm publish --tag alpha",
|
|
55
|
+
"increment-alpha-version": "npm version prerelease --preid=alpha",
|
|
56
|
+
"publish-beta": "npm run increment-beta-version && npm publish --tag beta",
|
|
57
57
|
"increment-beta-version": "npm version prerelease --preid=beta",
|
|
58
58
|
"publish-patch": "npm run increment-version && npm publish",
|
|
59
59
|
"increment-version": "npm version patch"
|
|
60
60
|
},
|
|
61
|
-
"dependencies": {
|
|
62
|
-
"@vue/compiler-sfc": "^3.2.45",
|
|
63
|
-
"magic-string": "^0.27.0"
|
|
64
|
-
},
|
|
65
|
-
"devDependencies": {
|
|
66
|
-
"@astrojs/compiler": "^2.2.1"
|
|
67
|
-
}
|
|
68
|
-
}
|
|
61
|
+
"dependencies": {
|
|
62
|
+
"@vue/compiler-sfc": "^3.2.45",
|
|
63
|
+
"magic-string": "^0.27.0"
|
|
64
|
+
},
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"@astrojs/compiler": "^2.2.1"
|
|
67
|
+
}
|
|
68
|
+
}
|