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.
@@ -1,4 +1,4 @@
1
+ export * from './prefixKeys.ts';
1
2
  export * from './protocolKey.ts';
2
3
  export * from './stateLock.ts';
3
- export * from './prefixKeys.ts';
4
4
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iBAAiB,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"}
@@ -1,4 +1,4 @@
1
1
  export * from './composable.ts';
2
- export * from './watch.ts';
3
2
  export * from './computed.ts';
3
+ export * from './watch.ts';
4
4
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/vueExtra/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC;AAChC,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,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.39",
4
- "gitHead": "6f675a8cc46d596142c591c28a40cc4d82fcc6cc",
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.12",
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.11",
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
 
@@ -1,3 +1,3 @@
1
+ export * from './prefixKeys.ts';
1
2
  export * from './protocolKey.ts';
2
3
  export * from './stateLock.ts';
3
- export * from './prefixKeys.ts';
@@ -1,3 +1,3 @@
1
1
  export * from './composable.ts';
2
- export * from './watch.ts';
3
2
  export * from './computed.ts';
3
+ export * from './watch.ts';