aiot-toolkit 1.1.1-blockcb-dev.2 → 1.1.1-blockcb-dev.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
|
@@ -91,6 +91,7 @@ program
|
|
|
91
91
|
validateBuildNameFormat
|
|
92
92
|
)
|
|
93
93
|
.option('--enable-protobuf', 'use protobuf gen binary.bin file')
|
|
94
|
+
.option('--enable-laboratory', 'enable features in the experiment')
|
|
94
95
|
.action(options => {
|
|
95
96
|
// 必备参数:当开发者不传递该参数时,要解析为默认
|
|
96
97
|
const signModeTmp = options.disableSign && compileOptionsMeta.signModeEnum.NULL
|
|
@@ -134,6 +135,7 @@ program
|
|
|
134
135
|
.option('--enable-ops-wrap', 'inject performance log in code')
|
|
135
136
|
.option('--disable-build-rpk', 'disable build rpk')
|
|
136
137
|
.option('--enable-protobuf', 'use protobuf gen binary.bin file')
|
|
138
|
+
.option('--enable-laboratory', 'enable features in the experiment')
|
|
137
139
|
.option(
|
|
138
140
|
'--build-name-format <build-name-format>',
|
|
139
141
|
'custom output rpk file name',
|
|
@@ -221,6 +223,7 @@ program
|
|
|
221
223
|
.option('--enable-ops-wrap', 'inject performance log in code')
|
|
222
224
|
.option('--disable-build-rpk', 'disable build rpk')
|
|
223
225
|
.option('--enable-protobuf', 'use protobuf gen binary.bin file')
|
|
226
|
+
.option('--enable-laboratory', 'enable features in the experiment')
|
|
224
227
|
.option(
|
|
225
228
|
'--split-chunks-mode <value>',
|
|
226
229
|
'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.1-blockcb-dev.
|
|
3
|
+
"version": "1.1.1-blockcb-dev.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.1-blockcb-dev.
|
|
10
|
-
"@aiot-toolkit/debugger": "1.1.1-blockcb-dev.
|
|
11
|
-
"@aiot-toolkit/dsl-vue": "1.1.1-blockcb-dev.
|
|
12
|
-
"@aiot-toolkit/dsl-xvm": "1.1.1-blockcb-dev.
|
|
13
|
-
"@aiot-toolkit/packager": "1.1.1-blockcb-dev.
|
|
14
|
-
"@aiot-toolkit/server": "1.1.1-blockcb-dev.
|
|
15
|
-
"@aiot-toolkit/shared-utils": "1.1.1-blockcb-dev.
|
|
9
|
+
"@aiot-toolkit/compiler": "1.1.1-blockcb-dev.3",
|
|
10
|
+
"@aiot-toolkit/debugger": "1.1.1-blockcb-dev.3",
|
|
11
|
+
"@aiot-toolkit/dsl-vue": "1.1.1-blockcb-dev.3",
|
|
12
|
+
"@aiot-toolkit/dsl-xvm": "1.1.1-blockcb-dev.3",
|
|
13
|
+
"@aiot-toolkit/packager": "1.1.1-blockcb-dev.3",
|
|
14
|
+
"@aiot-toolkit/server": "1.1.1-blockcb-dev.3",
|
|
15
|
+
"@aiot-toolkit/shared-utils": "1.1.1-blockcb-dev.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": "ca66ad39e5a1f71d92b42331dc1fd17dd3ea286f"
|
|
56
56
|
}
|