@ibiz-template/runtime 0.0.1-alpha.36 → 0.0.1-alpha.37

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,8 @@ export interface IPluginFactory {
14
14
  * @author chitanda
15
15
  * @date 2022-10-21 16:10:27
16
16
  * @param {IPSSysPFPlugin} plugin
17
- * @return {*} {Promise<void>}
17
+ * @return {*} {Promise<boolean>}
18
18
  */
19
- loadPlugin(plugin: IPSSysPFPlugin): Promise<void>;
19
+ loadPlugin(plugin: IPSSysPFPlugin): Promise<boolean>;
20
20
  }
21
21
  //# sourceMappingURL=i-plugin-factory.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"i-plugin-factory.d.ts","sourceRoot":"","sources":["../../../src/interface/i-plugin-factory/i-plugin-factory.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAEtD;;;;;;;GAOG;AACH,MAAM,WAAW,cAAc;IAC7B;;;;;;;OAOG;IACH,UAAU,CAAC,MAAM,EAAE,cAAc,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;CACnD"}
1
+ {"version":3,"file":"i-plugin-factory.d.ts","sourceRoot":"","sources":["../../../src/interface/i-plugin-factory/i-plugin-factory.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAEtD;;;;;;;GAOG;AACH,MAAM,WAAW,cAAc;IAC7B;;;;;;;OAOG;IACH,UAAU,CAAC,MAAM,EAAE,cAAc,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;CACtD"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz-template/runtime",
3
- "version": "0.0.1-alpha.36",
3
+ "version": "0.0.1-alpha.37",
4
4
  "description": "控制器包",
5
5
  "type": "module",
6
6
  "main": "out/index.js",
@@ -28,20 +28,20 @@
28
28
  "author": "chitanda",
29
29
  "license": "MIT",
30
30
  "dependencies": {
31
- "@ibiz-template/command": "^0.0.1-alpha.33"
31
+ "@ibiz-template/command": "^0.0.1-alpha.37"
32
32
  },
33
33
  "devDependencies": {
34
- "@ibiz-template/core": "^0.0.1-alpha.34",
35
- "@ibiz-template/model": "^0.0.1-alpha.36",
36
- "@ibiz-template/service": "^0.0.1-alpha.36",
34
+ "@ibiz-template/core": "^0.0.1-alpha.37",
35
+ "@ibiz-template/model": "^0.0.1-alpha.37",
36
+ "@ibiz-template/service": "^0.0.1-alpha.37",
37
37
  "@types/systemjs": "^6.1.1",
38
- "qx-util": "0.4.3"
38
+ "qx-util": "^0.4.4"
39
39
  },
40
40
  "peerDependencies": {
41
41
  "@ibiz-template/core": "^0.0.1-alpha.2",
42
42
  "@ibiz-template/model": "^0.0.1-alpha.2",
43
43
  "@ibiz-template/service": "^0.0.1-alpha.2",
44
- "qx-util": "^0.4.1"
44
+ "qx-util": "^0.4.4"
45
45
  },
46
- "gitHead": "be90e985a7a9b79e35dcf5f58fc529673ca3069b"
46
+ "gitHead": "5dc73da226eb8c5863add2ee60a25d0251a26ed3"
47
47
  }
@@ -15,7 +15,7 @@ export interface IPluginFactory {
15
15
  * @author chitanda
16
16
  * @date 2022-10-21 16:10:27
17
17
  * @param {IPSSysPFPlugin} plugin
18
- * @return {*} {Promise<void>}
18
+ * @return {*} {Promise<boolean>}
19
19
  */
20
- loadPlugin(plugin: IPSSysPFPlugin): Promise<void>;
20
+ loadPlugin(plugin: IPSSysPFPlugin): Promise<boolean>;
21
21
  }