aiot-toolkit 1.1.5-beta.1 → 1.1.5-beta.3
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/bin/index.js +3 -0
- package/package.json +9 -9
package/bin/index.js
CHANGED
|
@@ -93,6 +93,7 @@ program
|
|
|
93
93
|
validateBuildNameFormat
|
|
94
94
|
)
|
|
95
95
|
.option('--enable-protobuf', 'use protobuf gen binary.bin file')
|
|
96
|
+
.option('--enable-laboratory', 'enable features in the experiment')
|
|
96
97
|
.action(options => {
|
|
97
98
|
// 必备参数:当开发者不传递该参数时,要解析为默认
|
|
98
99
|
const signModeTmp = options.disableSign && compileOptionsMeta.signModeEnum.NULL
|
|
@@ -136,6 +137,7 @@ program
|
|
|
136
137
|
.option('--enable-ops-wrap', 'inject performance log in code')
|
|
137
138
|
.option('--disable-build-rpk', 'disable build rpk')
|
|
138
139
|
.option('--enable-protobuf', 'use protobuf gen binary.bin file')
|
|
140
|
+
.option('--enable-laboratory', 'enable features in the experiment')
|
|
139
141
|
.option(
|
|
140
142
|
'--build-name-format <build-name-format>',
|
|
141
143
|
'custom output rpk file name',
|
|
@@ -225,6 +227,7 @@ program
|
|
|
225
227
|
.option('--enable-protobuf', 'use protobuf gen binary.bin file')
|
|
226
228
|
.option('--enable-image-bin', 'translate image to bin')
|
|
227
229
|
.option('--enable-image-png8', 'translate image to png8')
|
|
230
|
+
.option('--enable-laboratory', 'enable features in the experiment')
|
|
228
231
|
.option(
|
|
229
232
|
'--split-chunks-mode <value>',
|
|
230
233
|
'extract js module to single files',
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aiot-toolkit",
|
|
3
|
-
"version": "1.1.5-beta.
|
|
3
|
+
"version": "1.1.5-beta.3",
|
|
4
4
|
"description": "A command line toolkit for developing Aiot Quick Apps.",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=8.0.0"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@aiot-toolkit/compiler": "1.1.5-beta.
|
|
10
|
-
"@aiot-toolkit/debugger": "1.1.5-beta.
|
|
11
|
-
"@aiot-toolkit/dsl-vue": "1.1.5-beta.
|
|
12
|
-
"@aiot-toolkit/dsl-xvm": "1.1.5-beta.
|
|
13
|
-
"@aiot-toolkit/packager": "1.1.5-beta.
|
|
14
|
-
"@aiot-toolkit/server": "1.1.5-beta.
|
|
15
|
-
"@aiot-toolkit/shared-utils": "1.1.5-beta.
|
|
9
|
+
"@aiot-toolkit/compiler": "1.1.5-beta.3",
|
|
10
|
+
"@aiot-toolkit/debugger": "1.1.5-beta.3",
|
|
11
|
+
"@aiot-toolkit/dsl-vue": "1.1.5-beta.3",
|
|
12
|
+
"@aiot-toolkit/dsl-xvm": "1.1.5-beta.3",
|
|
13
|
+
"@aiot-toolkit/packager": "1.1.5-beta.3",
|
|
14
|
+
"@aiot-toolkit/server": "1.1.5-beta.3",
|
|
15
|
+
"@aiot-toolkit/shared-utils": "1.1.5-beta.3",
|
|
16
16
|
"@babel/core": "^7.9.6",
|
|
17
17
|
"@babel/plugin-syntax-jsx": "^7.8.3",
|
|
18
18
|
"@babel/preset-env": "^7.9.6",
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"supertest": "^3.3.0",
|
|
53
53
|
"webpack-cli": "^4.3.0"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "0d10d835c6b7c395753526f284d40de6c3618f98"
|
|
56
56
|
}
|