aiot-toolkit 1.0.18-binary-beta.16 → 1.0.18-binary-beta.18
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
|
@@ -90,6 +90,7 @@ program
|
|
|
90
90
|
'custom output rpk file name',
|
|
91
91
|
validateBuildNameFormat
|
|
92
92
|
)
|
|
93
|
+
.option('--enable-protobuf', 'use protobuf gen binary.bin file')
|
|
93
94
|
.action(options => {
|
|
94
95
|
// 必备参数:当开发者不传递该参数时,要解析为默认
|
|
95
96
|
const signModeTmp = options.disableSign && compileOptionsMeta.signModeEnum.NULL
|
|
@@ -131,6 +132,7 @@ program
|
|
|
131
132
|
.option('--enable-jsc', 'bundle to jsc if the projectType is vela')
|
|
132
133
|
.option('--enable-ops-wrap', 'inject performance log in code')
|
|
133
134
|
.option('--disable-build-rpk', 'disable build rpk')
|
|
135
|
+
.option('--enable-protobuf', 'use protobuf gen binary.bin file')
|
|
134
136
|
.option(
|
|
135
137
|
'--build-name-format <build-name-format>',
|
|
136
138
|
'custom output rpk file name',
|
|
@@ -212,6 +214,7 @@ program
|
|
|
212
214
|
.option('--enable-jsc', 'bundle to jsc if the projectType is vela')
|
|
213
215
|
.option('--enable-ops-wrap', 'inject performance log in code')
|
|
214
216
|
.option('--disable-build-rpk', 'disable build rpk')
|
|
217
|
+
.option('--enable-protobuf', 'use protobuf gen binary.bin file')
|
|
215
218
|
.option(
|
|
216
219
|
'--split-chunks-mode <value>',
|
|
217
220
|
'extract js module to single files',
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aiot-toolkit",
|
|
3
|
-
"version": "1.0.18-binary-beta.
|
|
3
|
+
"version": "1.0.18-binary-beta.18",
|
|
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.0.18-binary-beta.
|
|
10
|
-
"@aiot-toolkit/debugger": "1.0.18-binary-beta.
|
|
11
|
-
"@aiot-toolkit/dsl-vue": "1.0.18-binary-beta.
|
|
12
|
-
"@aiot-toolkit/dsl-xvm": "1.0.18-binary-beta.
|
|
13
|
-
"@aiot-toolkit/packager": "1.0.18-binary-beta.
|
|
14
|
-
"@aiot-toolkit/server": "1.0.18-binary-beta.
|
|
15
|
-
"@aiot-toolkit/shared-utils": "1.0.18-binary-beta.
|
|
9
|
+
"@aiot-toolkit/compiler": "1.0.18-binary-beta.18",
|
|
10
|
+
"@aiot-toolkit/debugger": "1.0.18-binary-beta.18",
|
|
11
|
+
"@aiot-toolkit/dsl-vue": "1.0.18-binary-beta.18",
|
|
12
|
+
"@aiot-toolkit/dsl-xvm": "1.0.18-binary-beta.18",
|
|
13
|
+
"@aiot-toolkit/packager": "1.0.18-binary-beta.18",
|
|
14
|
+
"@aiot-toolkit/server": "1.0.18-binary-beta.18",
|
|
15
|
+
"@aiot-toolkit/shared-utils": "1.0.18-binary-beta.18",
|
|
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": "52fbb01b28b72ecc002f252cb4a5c38bf29a269a"
|
|
56
56
|
}
|