aiot-toolkit 2.0.5-beta.1 → 2.0.5-beta.2

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/README.md CHANGED
@@ -65,6 +65,7 @@ aiot-toolkit2.0目前支持的打包格式如下:
65
65
  | *optimize-css-attr* | confirm | 优化压缩css名称 | `false` | |
66
66
  | *complete-feature* | confirm | 自动将代码中使用的功能,补全到 manifest.json 的 features 字段中 | `false` | |
67
67
  | *start-page* | string | 启动页面,示例:`--start-page 'pages/index?a=1&b=2'` | | |
68
+ | *e2e-config-path* | string | e2e 配置文件的路径, 示例:--e2e-config-path ./test2/autoTestConfig.json | | |
68
69
  | *~~enable-custom-component~~* | confirm | **已废弃** | | |
69
70
  | *~~stats~~* | confirm | **已废弃** | | |
70
71
 
@@ -50,6 +50,10 @@ interface IVelaUxBuilderOption extends IUxBuildOption {
50
50
  * 启动页面,示例:`--start-page 'pages/index?a=1&b=2'`
51
51
  */
52
52
  startPage?: string;
53
+ /**
54
+ * e2e 配置文件的路径, 示例:--e2e-config-path ./test2/autoTestConfig.json
55
+ */
56
+ e2eConfigPath?: string;
53
57
  }
54
58
  declare const velaUxBuilderParams: IParam[];
55
59
  export { velaUxBuilderParams };
@@ -62,4 +62,8 @@ const velaUxBuilderParams = exports.velaUxBuilderParams = [{
62
62
  "type": "string",
63
63
  "name": "start-page",
64
64
  "description": "start page of current project, example: --start-page 'pages/index?a=1&b=2'"
65
+ }, {
66
+ "type": "string",
67
+ "name": "e2e-config-path",
68
+ "description": "e2e config file path, example: --e2e-config-path ./test2/autoTestConfig.json"
65
69
  }];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aiot-toolkit",
3
- "version": "2.0.5-beta.1",
3
+ "version": "2.0.5-beta.2",
4
4
  "description": "Tools for creating, developing, and packaging aiot applications.",
5
5
  "keywords": [
6
6
  "aiot"
@@ -22,14 +22,14 @@
22
22
  "test": "node ./__tests__/aiot-toolkit.test.js"
23
23
  },
24
24
  "dependencies": {
25
- "@aiot-toolkit/aiotpack": "2.0.5-beta.1",
26
- "@aiot-toolkit/commander": "2.0.5-beta.1",
27
- "@aiot-toolkit/emulator": "2.0.5-beta.1",
28
- "@aiot-toolkit/shared-utils": "2.0.5-beta.1",
25
+ "@aiot-toolkit/aiotpack": "2.0.5-beta.2",
26
+ "@aiot-toolkit/commander": "2.0.5-beta.2",
27
+ "@aiot-toolkit/emulator": "2.0.5-beta.2",
28
+ "@aiot-toolkit/shared-utils": "2.0.5-beta.2",
29
29
  "@inquirer/prompts": "^5.3.0",
30
30
  "@miwt/adb": "^0.9.0",
31
31
  "axios": "^1.7.4",
32
- "file-lane": "2.0.5-beta.1",
32
+ "file-lane": "2.0.5-beta.2",
33
33
  "fs-extra": "^11.2.0",
34
34
  "koa-router": "^13.0.1",
35
35
  "lodash": "^4.17.21",
@@ -43,5 +43,5 @@
43
43
  "@types/qr-image": "^3.2.9",
44
44
  "@types/semver": "^7.5.8"
45
45
  },
46
- "gitHead": "44f8c6ee763bc01bd53c655b93e09c698057fc3e"
46
+ "gitHead": "90f28324bb8bded7f04e1074dbf5ddc9a31f86f6"
47
47
  }