@tego/core 1.6.0-alpha.3 → 1.6.0-alpha.4
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.d.ts +8 -0
- package/package.json +13 -13
package/lib/application.d.ts
CHANGED
|
@@ -136,6 +136,14 @@ export declare class Application extends EventEmitter implements AsyncEmitter {
|
|
|
136
136
|
*/
|
|
137
137
|
pubSubManager: PubSubManager;
|
|
138
138
|
syncMessageManager: SyncMessageManager;
|
|
139
|
+
/**
|
|
140
|
+
* Worker thread manager, injected by module-worker-thread plugin
|
|
141
|
+
*/
|
|
142
|
+
worker?: any;
|
|
143
|
+
/**
|
|
144
|
+
* Message manager, injected by module-message plugin
|
|
145
|
+
*/
|
|
146
|
+
messageManager?: any;
|
|
139
147
|
protected plugins: Map<string, Plugin>;
|
|
140
148
|
protected _appSupervisor: AppSupervisor;
|
|
141
149
|
protected _started: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tego/core",
|
|
3
|
-
"version": "1.6.0-alpha.
|
|
3
|
+
"version": "1.6.0-alpha.4",
|
|
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.6.0-alpha.
|
|
35
|
-
"@tachybase/actions": "1.6.0-alpha.
|
|
36
|
-
"@tachybase/
|
|
37
|
-
"@tachybase/
|
|
38
|
-
"@tachybase/
|
|
39
|
-
"@tachybase/database": "1.6.0-alpha.
|
|
40
|
-
"@tachybase/di": "1.6.0-alpha.
|
|
41
|
-
"@tachybase/
|
|
42
|
-
"@tachybase/
|
|
43
|
-
"@tachybase/
|
|
44
|
-
"@tachybase/
|
|
45
|
-
"@tachybase/
|
|
34
|
+
"@tachybase/acl": "1.6.0-alpha.4",
|
|
35
|
+
"@tachybase/actions": "1.6.0-alpha.4",
|
|
36
|
+
"@tachybase/cache": "1.6.0-alpha.4",
|
|
37
|
+
"@tachybase/auth": "1.6.0-alpha.4",
|
|
38
|
+
"@tachybase/data-source": "1.6.0-alpha.4",
|
|
39
|
+
"@tachybase/database": "1.6.0-alpha.4",
|
|
40
|
+
"@tachybase/di": "1.6.0-alpha.4",
|
|
41
|
+
"@tachybase/globals": "1.6.0-alpha.4",
|
|
42
|
+
"@tachybase/loader": "1.6.0-alpha.4",
|
|
43
|
+
"@tachybase/logger": "1.6.0-alpha.4",
|
|
44
|
+
"@tachybase/utils": "1.6.0-alpha.4",
|
|
45
|
+
"@tachybase/resourcer": "1.6.0-alpha.4"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@types/fs-extra": "11.0.4",
|