deeke-script-app 1.2.9 → 1.3.0
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/@deekeScript/@type/interface/Engines.d.ts +6 -1
- package/@deekeScript/@type/interface/Log.d.ts +16 -0
- package/jsconfig.json +1 -0
- package/package.json +1 -1
- package/script/test/test-one/one.js +6 -0
- package/script/test/test-two/three/three.js +8 -0
- package/script/test/test-two/two.js +6 -0
- package/script/test/test.js +9 -0
- package/test/engines.js +1 -1
- package/test/module/module.js +5 -0
- package/deekeScript.zip +0 -0
|
@@ -7,7 +7,7 @@ interface Engines {
|
|
|
7
7
|
* 执行脚本
|
|
8
8
|
* @param file 文件路径,相对根目录的路径
|
|
9
9
|
*/
|
|
10
|
-
public
|
|
10
|
+
public executeScript(file: string): void;
|
|
11
11
|
|
|
12
12
|
/**
|
|
13
13
|
* 执行脚本
|
|
@@ -19,6 +19,11 @@ interface Engines {
|
|
|
19
19
|
* 关闭所有脚本
|
|
20
20
|
*/
|
|
21
21
|
public closeAll(): void;
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* 关闭当前脚本之外的其他脚本
|
|
25
|
+
*/
|
|
26
|
+
public closeOther(): void
|
|
22
27
|
}
|
|
23
28
|
|
|
24
29
|
export { };
|
package/jsconfig.json
CHANGED
package/package.json
CHANGED
package/test/engines.js
CHANGED
package/deekeScript.zip
DELETED
|
Binary file
|