adminforth 1.2.62 → 1.2.64

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,17 +1,17 @@
1
1
  {
2
2
  "name": "adminforth",
3
- "version": "1.2.62",
3
+ "version": "1.2.64",
4
4
  "description": "OpenSource Vue3 powered forth-generation admin panel",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "scripts": {
8
8
  "test": "echo \"Error: no test specified\" && exit 1",
9
9
  "build": "tsc",
10
- "prepareDist": "cp -rL spa dist/",
11
- "rollout": "tsc && npm run prepareDist && npm version patch && npm publish && npm run rollout-doc",
10
+ "---prepareDist": "cp -rL spa dist/",
11
+ "rollout": "tsc && npm version patch && npm publish && npm run rollout-doc",
12
12
  "rollout-doc": "cd documentation && npm run build && npm run deploy",
13
13
  "docs": "typedoc",
14
- "postinstall": "ln -sf types spa/src/types"
14
+ "postinstall": "cd spa/src && ln -sf ../../types types"
15
15
  },
16
16
  "author": "devforth.io",
17
17
  "license": "ISC",
@@ -1,4 +1,4 @@
1
- import { Express } from 'express';
1
+ import type { Express } from 'express';
2
2
 
3
3
  export interface ICodeInjector {
4
4
  srcFoldersToSync: Object;