adminforth 1.3.54-next.13 → 1.3.54-next.14

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.
Files changed (1) hide show
  1. package/package.json +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adminforth",
3
- "version": "1.3.54-next.13",
3
+ "version": "1.3.54-next.14",
4
4
  "description": "OpenSource Vue3 powered forth-generation admin panel",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -9,7 +9,7 @@
9
9
  "build": "tsc",
10
10
  "---prepareDist": "cp -rL spa dist/",
11
11
  "rollout": "tsc && npm version patch && npm publish && npm run rollout-doc",
12
- "rollout-next": "tsc && npm version prerelease --preid=next && npm publish --tag next",
12
+ "rollout-next": "tsc && npm version prerelease --preid=next && npm publish --tag next && git tag -a v$(node -p \"require('./package.json').version\") -m \"v$(node -p \"require('./package.json').version\")\"",
13
13
  "rollout-doc": "cd documentation && npm run build && npm run deploy",
14
14
  "docs": "typedoc",
15
15
  "postinstall": "cd ./spa/src/ && test ! -d ./types && ln -sf ../../types ./types || echo 'types linked'"