@havelaer/vite-plugin-ssr 0.0.6 → 0.0.9
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 +8 -3
package/package.json
CHANGED
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@havelaer/vite-plugin-ssr",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"description": "SSR plugin for Vite. With optional API servers.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
8
8
|
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/havelaer/vite-plugin-ssr.git"
|
|
12
|
+
},
|
|
9
13
|
"exports": {
|
|
10
14
|
".": {
|
|
11
15
|
"import": "./dist/plugin.js",
|
|
@@ -17,10 +21,11 @@
|
|
|
17
21
|
"bin"
|
|
18
22
|
],
|
|
19
23
|
"scripts": {
|
|
20
|
-
"build": "tsdown src/plugin.ts --dts",
|
|
21
24
|
"dev": "tsdown src/plugin.ts --dts --watch ./src",
|
|
22
25
|
"check": "biome check .",
|
|
23
|
-
"
|
|
26
|
+
"release": "npm run check && tsc && npm version patch -m 'chore: bump version %s'",
|
|
27
|
+
"postrelease": "git push && git push --tags",
|
|
28
|
+
"build": "tsdown src/plugin.ts --dts",
|
|
24
29
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
25
30
|
},
|
|
26
31
|
"keywords": [
|