zova-core 5.1.39 → 5.1.41
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/LICENSE +0 -0
- package/README.md +0 -0
- package/dist/core/logger/format.d.ts.map +1 -1
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/utils/index.d.ts +1 -1
- package/dist/utils/index.d.ts.map +1 -1
- package/dist/vueExtra/index.d.ts +1 -1
- package/dist/vueExtra/index.d.ts.map +1 -1
- package/package.json +12 -9
- package/src/bean/beanContainer.ts +1 -1
- package/src/bean/resource/error/errorClass.ts +0 -0
- package/src/bean/resource/error/errorInternal.ts +0 -0
- package/src/core/logger/format.ts +2 -1
- package/src/utils/index.ts +1 -1
- package/src/vueExtra/index.ts +1 -1
package/dist/utils/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC;AAChC,cAAc,kBAAkB,CAAC;AACjC,cAAc,gBAAgB,CAAC"}
|
package/dist/vueExtra/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/vueExtra/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC;AAChC,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/vueExtra/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,YAAY,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zova-core",
|
|
3
|
-
"version": "5.1.
|
|
4
|
-
"gitHead": "
|
|
3
|
+
"version": "5.1.41",
|
|
4
|
+
"gitHead": "09d901d17140a80ee0764211b441cda72fd94663",
|
|
5
5
|
"description": "A vue3 framework with ioc",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"ioc",
|
|
@@ -33,12 +33,19 @@
|
|
|
33
33
|
"publishConfig": {
|
|
34
34
|
"access": "public"
|
|
35
35
|
},
|
|
36
|
+
"scripts": {
|
|
37
|
+
"clean": "rimraf dist tsconfig.tsbuildinfo",
|
|
38
|
+
"tsc:publish": "npm run clean && vona :bin:buildGeneral --sourcemap && tsc",
|
|
39
|
+
"prepublishOnly": "npm run tsc:publish",
|
|
40
|
+
"prepack": "clean-package",
|
|
41
|
+
"postpack": "clean-package restore"
|
|
42
|
+
},
|
|
36
43
|
"dependencies": {
|
|
37
44
|
"@cabloy/compose": "^2.1.5",
|
|
38
45
|
"@cabloy/extend": "^3.2.3",
|
|
39
46
|
"@cabloy/json5": "^1.1.6",
|
|
40
47
|
"@cabloy/localeutil": "^2.1.3",
|
|
41
|
-
"@cabloy/logger": "^1.1.
|
|
48
|
+
"@cabloy/logger": "^1.1.14",
|
|
42
49
|
"@cabloy/module-info": "^2.0.0",
|
|
43
50
|
"@cabloy/utils": "^2.1.19",
|
|
44
51
|
"@cabloy/vue-compiler-sfc": "^3.5.14",
|
|
@@ -47,7 +54,7 @@
|
|
|
47
54
|
"@cabloy/vue-runtime-core": "^3.5.53",
|
|
48
55
|
"@cabloy/vue-runtime-dom": "^3.5.13",
|
|
49
56
|
"@cabloy/vue-server-renderer": "^3.5.18",
|
|
50
|
-
"@cabloy/word-utils": "^2.1.
|
|
57
|
+
"@cabloy/word-utils": "^2.1.13",
|
|
51
58
|
"@cabloy/zod-errors-custom": "^2.1.3",
|
|
52
59
|
"@cabloy/zod-openapi": "^1.1.6",
|
|
53
60
|
"@cabloy/zod-query": "^2.1.3",
|
|
@@ -58,9 +65,5 @@
|
|
|
58
65
|
"vue": "^3.5.32",
|
|
59
66
|
"vue-plugin-render-freeze": "^2.0.4",
|
|
60
67
|
"zod": "^4.4.3"
|
|
61
|
-
},
|
|
62
|
-
"scripts": {
|
|
63
|
-
"clean": "rimraf dist tsconfig.tsbuildinfo",
|
|
64
|
-
"tsc:publish": "npm run clean && vona :bin:buildGeneral --sourcemap && tsc"
|
|
65
68
|
}
|
|
66
|
-
}
|
|
69
|
+
}
|
|
@@ -814,7 +814,7 @@ export class BeanContainer {
|
|
|
814
814
|
) {
|
|
815
815
|
let beanContainerParent;
|
|
816
816
|
if (!useOptions.injectionScope || useOptions.injectionScope === 'host') {
|
|
817
|
-
//eslint-disable-next-line
|
|
817
|
+
// eslint-disable-next-line
|
|
818
818
|
beanContainerParent = this;
|
|
819
819
|
} else if (useOptions.injectionScope === 'skipSelf') {
|
|
820
820
|
beanContainerParent = this.parent;
|
|
File without changes
|
|
File without changes
|
|
@@ -14,8 +14,9 @@ export const formatLoggerFilter = format((info, opts: any) => {
|
|
|
14
14
|
if (
|
|
15
15
|
NpmConfigSetLevels[info.level as string] <= NpmConfigSetLevels[level] ||
|
|
16
16
|
(opts.silly && info.level === 'silly')
|
|
17
|
-
)
|
|
17
|
+
) {
|
|
18
18
|
return __formatLoggerFilterCheckInfo(info);
|
|
19
|
+
}
|
|
19
20
|
return false;
|
|
20
21
|
});
|
|
21
22
|
|
package/src/utils/index.ts
CHANGED
package/src/vueExtra/index.ts
CHANGED