@kengic/vue 0.21.5-beta.2 → 0.21.5-beta.4
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/kengic-vue.js +2314 -2270
- package/dist/project/index.ts +1 -1
- package/dist/src/utils/kg-logger.util.d.ts +5 -1
- package/package.json +2 -10
package/dist/project/index.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export * from './build';
|
1
|
+
export * from './build';
|
@@ -62,4 +62,8 @@ declare class KgLogger {
|
|
62
62
|
*/
|
63
63
|
static debugDDA(formID: string | null | undefined, component: string | null | undefined, method: string | null | undefined, message: string | null | undefined, args?: Record<string, any>, collapsed?: boolean): void;
|
64
64
|
}
|
65
|
-
|
65
|
+
declare const ____DEBUG____: typeof KgLogger.debug;
|
66
|
+
declare const ____INFO_____: typeof KgLogger.info;
|
67
|
+
declare const ____WARN_____: typeof KgLogger.warn;
|
68
|
+
declare const ____ERROR____: typeof KgLogger.error;
|
69
|
+
export { KgLogger, ____DEBUG____, ____INFO_____, ____WARN_____, ____ERROR____ };
|
package/package.json
CHANGED
@@ -1,29 +1,21 @@
|
|
1
1
|
{
|
2
2
|
"name": "@kengic/vue",
|
3
|
-
"version": "0.21.5-beta.
|
3
|
+
"version": "0.21.5-beta.4",
|
4
4
|
"scripts": {
|
5
5
|
"build": "npm run switch-node-version && rimraf dist && vue-tsc && vite build",
|
6
6
|
"build:dev": "npm run switch-node-version && rimraf dist && vue-tsc && vite build --mode development",
|
7
7
|
"--------------------------------------------------": "",
|
8
8
|
"publish:all:beta": "npm run bump-version:beta && npm run publish:all",
|
9
|
-
"publish:all:patch": "npm run bump-version:patch && npm run publish:all",
|
10
|
-
"publish:all:minor": "npm run bump-version:minor && npm run publish:all",
|
11
|
-
"publish:all:major": "npm run bump-version:major && npm run publish:all",
|
12
9
|
"----- --------------------------------------------": "",
|
13
10
|
"gen:apis:WMS": "npm run switch-node-version && kengic-pont generate-apis --config kg.config.ts --origin WMS",
|
14
11
|
"--- ----------------------------------------------": "",
|
15
|
-
"bump-to:luotao.wms-vue3--dev-3.1": "npm run switch-node-version && tsx scripts/bump-to.luotao.wms-vue3.ts",
|
16
|
-
"copy-to:luotao.wms-vue3--dev-3.1": "npm run build:dev && tsx scripts/copy-to.luotao.wms-vue3.ts",
|
17
|
-
"bump-to:luotao.wms-vue3--focus": "npm run switch-node-version && tsx scripts/bump-to.luotao.wms-vue3.focus.ts",
|
18
12
|
"copy-to:luotao.wms-vue3--focus": "npm run build:dev && tsx scripts/copy-to.luotao.wms-vue3.focus.ts",
|
13
|
+
"bump-to:luotao.wms-vue3--focus": "npm run switch-node-version && tsx scripts/bump-to.luotao.wms-vue3.focus.ts",
|
19
14
|
"- ------------------------------------------------": "",
|
20
15
|
"cnpm:sync": "npm run switch-node-version && npx cnpm --yes sync @kengic/vue",
|
21
16
|
"switch-node-version": "nvm use 18.16.0 && corepack enable && corepack prepare pnpm@7.30.5 --activate",
|
22
17
|
"-- -----------------------------------------------": "",
|
23
18
|
"bump-version:beta": "npm run switch-node-version && tsx scripts/bump.ts beta",
|
24
|
-
"bump-version:major": "npm run switch-node-version && tsx scripts/bump.ts major",
|
25
|
-
"bump-version:minor": "npm run switch-node-version && tsx scripts/bump.ts minor",
|
26
|
-
"bump-version:patch": "npm run switch-node-version && tsx scripts/bump.ts patch",
|
27
19
|
"---- ---------------------------------------------": "",
|
28
20
|
"publish:all": "npm run switch-node-version && tsx scripts/publish.ts",
|
29
21
|
"publish:npm": "npm run switch-node-version && npmrc kengic && npm publish ./ --registry https://registry.npmjs.org/ --access public"
|