aiot-toolkit 2.0.5-beta.14 → 2.0.5-beta.15
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
|
@@ -66,6 +66,7 @@ aiot-toolkit2.0目前支持的打包格式如下:
|
|
|
66
66
|
| *complete-feature* | confirm | 自动将代码中使用的功能,补全到 manifest.json 的 features 字段中 | `false` | |
|
|
67
67
|
| *start-page* | string | 启动页面,示例:`--start-page 'pages/index?a=1&b=2'` | | |
|
|
68
68
|
| *e2e-config-path* | string | e2e 配置文件的路径, 示例:--e2e-config-path ./test2/autoTestConfig.json | | |
|
|
69
|
+
| *enable-image-png8* | confirm | 压缩png文件为png8 | | |
|
|
69
70
|
| *~~enable-custom-component~~* | confirm | **已废弃** | | |
|
|
70
71
|
| *~~stats~~* | confirm | **已废弃** | | |
|
|
71
72
|
|
|
@@ -54,6 +54,10 @@ interface IVelaUxBuilderOption extends IUxBuildOption {
|
|
|
54
54
|
* e2e 配置文件的路径, 示例:--e2e-config-path ./test2/autoTestConfig.json
|
|
55
55
|
*/
|
|
56
56
|
e2eConfigPath?: string;
|
|
57
|
+
/**
|
|
58
|
+
* 压缩png文件为png8
|
|
59
|
+
*/
|
|
60
|
+
enableImagePng8?: boolean;
|
|
57
61
|
}
|
|
58
62
|
declare const velaUxBuilderParams: IParam[];
|
|
59
63
|
export { velaUxBuilderParams };
|
|
@@ -66,4 +66,8 @@ const velaUxBuilderParams = exports.velaUxBuilderParams = [{
|
|
|
66
66
|
"type": "string",
|
|
67
67
|
"name": "e2e-config-path",
|
|
68
68
|
"description": "e2e config file path, example: --e2e-config-path ./test2/autoTestConfig.json"
|
|
69
|
+
}, {
|
|
70
|
+
"type": "confirm",
|
|
71
|
+
"name": "enable-image-png8",
|
|
72
|
+
"description": "translate image to png8"
|
|
69
73
|
}];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aiot-toolkit",
|
|
3
|
-
"version": "2.0.5-beta.
|
|
3
|
+
"version": "2.0.5-beta.15",
|
|
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.
|
|
26
|
-
"@aiot-toolkit/commander": "2.0.5-beta.
|
|
27
|
-
"@aiot-toolkit/emulator": "2.0.5-beta.
|
|
28
|
-
"@aiot-toolkit/shared-utils": "2.0.5-beta.
|
|
25
|
+
"@aiot-toolkit/aiotpack": "2.0.5-beta.15",
|
|
26
|
+
"@aiot-toolkit/commander": "2.0.5-beta.15",
|
|
27
|
+
"@aiot-toolkit/emulator": "2.0.5-beta.15",
|
|
28
|
+
"@aiot-toolkit/shared-utils": "2.0.5-beta.15",
|
|
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.
|
|
32
|
+
"file-lane": "2.0.5-beta.15",
|
|
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": "
|
|
46
|
+
"gitHead": "6e39bae7f788a36a777e08545d862b87fab26a9b"
|
|
47
47
|
}
|