deeke-script-app 1.2.5 → 1.2.6

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/init CHANGED
@@ -10,7 +10,7 @@ function generateFiles(answers) {
10
10
  }
11
11
 
12
12
  const entries = fs.readdirSync(__dirname, { withFileTypes: true });
13
- const excludeFiles = ['node_modules', '@deekeScript']; // 需排除的文件名列表
13
+ const excludeFiles = ['node_modules']; // 需排除的文件名列表
14
14
 
15
15
  const filteredEntries = entries.filter(entry =>
16
16
  !excludeFiles.includes(entry.name)
package/jsconfig.json CHANGED
@@ -7,5 +7,5 @@
7
7
  "include": [
8
8
  "src/**/*",
9
9
  "@deekeScript/**/*"
10
- , "@type" ]
10
+ ]
11
11
  }
package/package.json CHANGED
@@ -1,7 +1,6 @@
1
1
  {
2
- "name": "deeke-script-app",
3
- "types": "@deekeScript/type/index.d.ts",
4
- "version": "1.2.5",
2
+ "name": "deeke-script-app",
3
+ "version": "1.2.6",
5
4
  "description": "DeekeScript应用",
6
5
  "main": "src/index.ts",
7
6
  "scripts": {
@@ -1,17 +0,0 @@
1
- /// <reference path="./type/Class/Rect.d.ts" />
2
- /// <reference path="./type/Class/UiSelector.d.ts" />
3
-
4
- /// <reference path="./type/interface/App.d.ts" />
5
- /// <reference path="./type/interface/Console.d.ts" />
6
- /// <reference path="./type/interface/DeekeScript.d.ts" />
7
- /// <reference path="./type/interface/Device.d.ts" />
8
- /// <reference path="./type/interface/Dialogs.d.ts" />
9
- /// <reference path="./type/interface/Encrypt.d.ts" />
10
- /// <reference path="./type/interface/Engines.d.ts" />
11
- /// <reference path="./type/interface/FloatDialogs.d.ts" />
12
- /// <reference path="./type/interface/Gesture.d.ts" />
13
- /// <reference path="./type/interface/Http.d.ts" />
14
- /// <reference path="./type/interface/Intent.d.ts" />
15
- /// <reference path="./type/interface/Storage.d.ts" />
16
- /// <reference path="./type/interface/System.d.ts" />
17
- /// <reference path="./type/interface/UiObject.d.ts" />