vona-core 5.0.21 → 5.0.23

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.
@@ -14,8 +14,9 @@ export function Use(options) {
14
14
  let beanFullName = options.beanFullName;
15
15
  if (!beanFullName) {
16
16
  beanFullName = appResource.getBeanFullName(beanClass);
17
- if (!beanFullName)
18
- throw new Error(`beanFullName not found for: ${beanClass.name}`);
17
+ if (!beanFullName) {
18
+ throw new Error(`@Use not found valid beanFullName for: ${target.constructor.name}.${String(prop)}`);
19
+ }
19
20
  }
20
21
  // record
21
22
  appResource.addUse(target, {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vona-core",
3
3
  "type": "module",
4
- "version": "5.0.21",
4
+ "version": "5.0.23",
5
5
  "description": "vona",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -30,10 +30,10 @@
30
30
  "@cabloy/extend": "^3.1.10",
31
31
  "@cabloy/json5": "^1.0.18",
32
32
  "@cabloy/localeutil": "^2.0.10",
33
- "@cabloy/module-info": "^1.3.19",
34
- "@cabloy/module-info-pro": "^1.0.27",
33
+ "@cabloy/module-info": "^1.3.20",
34
+ "@cabloy/module-info-pro": "^1.0.28",
35
35
  "@cabloy/set": "^1.0.17",
36
- "@cabloy/utils": "^1.0.26",
36
+ "@cabloy/utils": "^1.0.27",
37
37
  "@cabloy/word-utils": "^2.0.1",
38
38
  "fs-extra": "^10.1.0",
39
39
  "koa": "^3.0.0",