@tego/core 1.3.54-alpha.6 → 1.3.54-alpha.8

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.
Files changed (2) hide show
  1. package/lib/plugin.js +7 -4
  2. package/package.json +13 -13
package/lib/plugin.js CHANGED
@@ -185,10 +185,13 @@ const _Plugin = class _Plugin {
185
185
  */
186
186
  async loadCollections() {
187
187
  if (!this.options.packageName) {
188
- this.app.logger.debug(`[Plugin.loadCollections] packageName not set for plugin ${this.getName()}`, {
189
- submodule: "Plugin",
190
- method: "loadCollections"
191
- });
188
+ this.app.logger.warn(
189
+ `[Plugin.loadCollections] packageName not set for plugin ${this.getName()}, skipping loadCollections`,
190
+ {
191
+ submodule: "Plugin",
192
+ method: "loadCollections"
193
+ }
194
+ );
192
195
  return;
193
196
  }
194
197
  const resolvedPath = (0, import_helper.resolveRequest)(this.options.packageName);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tego/core",
3
- "version": "1.3.54-alpha.6",
3
+ "version": "1.3.54-alpha.8",
4
4
  "license": "Apache-2.0",
5
5
  "main": "lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -31,18 +31,18 @@
31
31
  "winston": "^3.17.0",
32
32
  "ws": "^8.18.3",
33
33
  "xpipe": "^1.0.8",
34
- "@tachybase/auth": "1.3.54-alpha.6",
35
- "@tachybase/acl": "1.3.54-alpha.6",
36
- "@tachybase/actions": "1.3.54-alpha.6",
37
- "@tachybase/cache": "1.3.54-alpha.6",
38
- "@tachybase/database": "1.3.54-alpha.6",
39
- "@tachybase/data-source": "1.3.54-alpha.6",
40
- "@tachybase/di": "1.3.54-alpha.6",
41
- "@tachybase/loader": "1.3.54-alpha.6",
42
- "@tachybase/logger": "1.3.54-alpha.6",
43
- "@tachybase/utils": "1.3.54-alpha.6",
44
- "@tachybase/globals": "1.3.54-alpha.6",
45
- "@tachybase/resourcer": "1.3.54-alpha.6"
34
+ "@tachybase/acl": "1.3.54-alpha.8",
35
+ "@tachybase/auth": "1.3.54-alpha.8",
36
+ "@tachybase/actions": "1.3.54-alpha.8",
37
+ "@tachybase/data-source": "1.3.54-alpha.8",
38
+ "@tachybase/cache": "1.3.54-alpha.8",
39
+ "@tachybase/database": "1.3.54-alpha.8",
40
+ "@tachybase/di": "1.3.54-alpha.8",
41
+ "@tachybase/loader": "1.3.54-alpha.8",
42
+ "@tachybase/globals": "1.3.54-alpha.8",
43
+ "@tachybase/logger": "1.3.54-alpha.8",
44
+ "@tachybase/resourcer": "1.3.54-alpha.8",
45
+ "@tachybase/utils": "1.3.54-alpha.8"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@types/fs-extra": "11.0.4",