adminforth 1.3.54-next.15 → 1.3.54-next.16

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