@tego/core 1.3.54-alpha.8 → 1.3.54-alpha.9
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/lib/application.js +1 -1
- package/lib/commands/start.js +1 -1
- package/lib/plugin.js +1 -1
- package/package.json +13 -13
package/lib/application.js
CHANGED
|
@@ -547,7 +547,7 @@ const _Application = class _Application extends import_node_stream.EventEmitter
|
|
|
547
547
|
this._started = true;
|
|
548
548
|
if (options.checkInstall && !await this.isInstalled()) {
|
|
549
549
|
throw new import_application_not_install.ApplicationNotInstall(
|
|
550
|
-
`Application ${this.name} is not installed, Please run 'pnpm
|
|
550
|
+
`Application ${this.name} is not installed, Please run 'pnpm tego install' command first`
|
|
551
551
|
);
|
|
552
552
|
}
|
|
553
553
|
this.setMaintainingMessage("starting app...");
|
package/lib/commands/start.js
CHANGED
|
@@ -59,7 +59,7 @@ var start_default = /* @__PURE__ */ __name((app) => {
|
|
|
59
59
|
if (!await app.isInstalled()) {
|
|
60
60
|
app["_started"] = true;
|
|
61
61
|
throw new import_application_not_install.ApplicationNotInstall(
|
|
62
|
-
`Application ${app.name} is not installed, Please run 'pnpm
|
|
62
|
+
`Application ${app.name} is not installed, Please run 'pnpm tego install' command first`
|
|
63
63
|
);
|
|
64
64
|
}
|
|
65
65
|
await app.load();
|
package/lib/plugin.js
CHANGED
|
@@ -230,7 +230,7 @@ const _Plugin = class _Plugin {
|
|
|
230
230
|
});
|
|
231
231
|
} else {
|
|
232
232
|
this.app.logger.warn(
|
|
233
|
-
`[Plugin.loadCollections] Collections directory not found.
|
|
233
|
+
`[Plugin.loadCollections] Collections directory for ${this.options.packageName} not found, skipping import. Notice this may a mistake.`,
|
|
234
234
|
{
|
|
235
235
|
submodule: "Plugin",
|
|
236
236
|
method: "loadCollections",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tego/core",
|
|
3
|
-
"version": "1.3.54-alpha.
|
|
3
|
+
"version": "1.3.54-alpha.9",
|
|
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/acl": "1.3.54-alpha.
|
|
35
|
-
"@tachybase/
|
|
36
|
-
"@tachybase/
|
|
37
|
-
"@tachybase/
|
|
38
|
-
"@tachybase/
|
|
39
|
-
"@tachybase/database": "1.3.54-alpha.
|
|
40
|
-
"@tachybase/di": "1.3.54-alpha.
|
|
41
|
-
"@tachybase/
|
|
42
|
-
"@tachybase/globals": "1.3.54-alpha.
|
|
43
|
-
"@tachybase/
|
|
44
|
-
"@tachybase/resourcer": "1.3.54-alpha.
|
|
45
|
-
"@tachybase/utils": "1.3.54-alpha.
|
|
34
|
+
"@tachybase/acl": "1.3.54-alpha.9",
|
|
35
|
+
"@tachybase/actions": "1.3.54-alpha.9",
|
|
36
|
+
"@tachybase/cache": "1.3.54-alpha.9",
|
|
37
|
+
"@tachybase/auth": "1.3.54-alpha.9",
|
|
38
|
+
"@tachybase/data-source": "1.3.54-alpha.9",
|
|
39
|
+
"@tachybase/database": "1.3.54-alpha.9",
|
|
40
|
+
"@tachybase/di": "1.3.54-alpha.9",
|
|
41
|
+
"@tachybase/logger": "1.3.54-alpha.9",
|
|
42
|
+
"@tachybase/globals": "1.3.54-alpha.9",
|
|
43
|
+
"@tachybase/loader": "1.3.54-alpha.9",
|
|
44
|
+
"@tachybase/resourcer": "1.3.54-alpha.9",
|
|
45
|
+
"@tachybase/utils": "1.3.54-alpha.9"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@types/fs-extra": "11.0.4",
|