deeke-script-app 2.0.0 → 2.0.1

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/jsconfig.json CHANGED
@@ -1,13 +1,13 @@
1
- {
2
- "compilerOptions": {
3
- "checkJs": true,
4
- "target": "ES2022",
5
- "lib": [
6
- "es2022"
7
- ]
8
- },
9
- "include": [
10
- ".vscode/*.d.ts",
11
- "**/*.js"
12
- ]
1
+ {
2
+ "compilerOptions": {
3
+ "checkJs": true,
4
+ "target": "ES2022",
5
+ "lib": [
6
+ "es2022"
7
+ ]
8
+ },
9
+ "include": [
10
+ ".vscode/*.d.ts",
11
+ "**/*.js"
12
+ ]
13
13
  }
package/package.json CHANGED
@@ -1,18 +1,12 @@
1
- {
2
- "name": "deeke-script-app",
3
- "version": "2.0.0",
4
- "description": "DeekeScript应用",
5
- "repository": {
6
- "type": "git",
7
- "url": "git+https://github.com/DeekeScript/deekeScript.git"
8
- },
9
- "keywords": [
10
- "DeekeScript应用"
11
- ],
12
- "author": "DeekeScript",
13
- "license": "ISC",
14
- "bugs": {
15
- "url": "https://github.com/DeekeScript/deekeScript/issues"
16
- },
17
- "homepage": "https://github.com/DeekeScript/deekeScript#readme"
1
+ {
2
+ "name": "deeke-script-app",
3
+ "version": "2.0.1",
4
+ "description": "DeekeScript application template",
5
+ "license": "ISC",
6
+ "files": [
7
+ "src",
8
+ "deekeScript.json",
9
+ "deekeScript.schema.json",
10
+ "jsconfig.json"
11
+ ]
18
12
  }
Binary file
package/src/task/dy.js CHANGED
@@ -1,14 +1,14 @@
1
- let dyApp = require("./dyApp");
2
-
3
- let tag = UiSelector().id('name').findOne();
4
-
5
- // console.log(tag.click());
6
- let config = {
7
- toker_view_video_keywords: Storage.get('toker_view_video_keywords'),
8
- toker_view_video_second: Storage.getInteger('toker_view_video_second'),
9
- toker_run_sex: Storage.getArray('toker_run_sex'),
10
- }
11
-
12
- console.log(config, dyApp.getName());//获取json文件中的配置参数
13
-
14
- FloatDialogs.show('提示', '请编写业务代码');
1
+ let dyApp = require("./dyApp");
2
+
3
+ let tag = UiSelector().id('name').findOne();
4
+
5
+ // console.log(tag.click());
6
+ let config = {
7
+ toker_view_video_keywords: Storage.get('toker_view_video_keywords'),
8
+ toker_view_video_second: Storage.getInteger('toker_view_video_second'),
9
+ toker_run_sex: Storage.getArray('toker_run_sex'),
10
+ }
11
+
12
+ console.log(config, dyApp.getName());//获取json文件中的配置参数
13
+
14
+ FloatDialogs.show('提示', '请编写业务代码');