adminforth 1.3.54-next.27 → 1.3.54-next.28
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 +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "adminforth",
|
|
3
|
-
"version": "1.3.54-next.
|
|
3
|
+
"version": "1.3.54-next.28",
|
|
4
4
|
"description": "OpenSource Vue3 powered forth-generation admin panel",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -17,6 +17,8 @@
|
|
|
17
17
|
"rollout-next": "tsc && npm version prerelease --preid=next && npm publish --tag next && npm run put-git-tag",
|
|
18
18
|
"rollout-doc": "cd documentation && npm run build && npm run deploy",
|
|
19
19
|
"docs": "typedoc",
|
|
20
|
+
"prepublishOnly": "cd ./spa/src/ && test ! -d ./types && cp -r ../../types ./types || echo 'types copied before publish'",
|
|
21
|
+
"postPublish": "cd ./spa/src/ && test -d ./types && ln -sf ../../types ./types || echo 'types linked back after publish'",
|
|
20
22
|
"postinstall": "cd ./spa/src/ && test ! -d ./types && ln -sf ../../types ./types || echo 'types linked'"
|
|
21
23
|
},
|
|
22
24
|
"author": "devforth.io",
|