aiot-toolkit 1.1.3 → 1.1.4
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/CHANGELOG.md +6 -0
- package/README.md +6 -0
- package/bin/index.js +4 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
package/bin/index.js
CHANGED
|
@@ -73,6 +73,8 @@ program
|
|
|
73
73
|
.option('--enable-jsc', 'bundle to jsc if the projectType is vela')
|
|
74
74
|
.option('--enable-ops-wrap', 'inject performance log in code')
|
|
75
75
|
.option('--disable-build-rpk', 'disable build rpk')
|
|
76
|
+
.option('--enable-image-bin', 'translate image to bin')
|
|
77
|
+
.option('--enable-image-png8', 'translate image to png8')
|
|
76
78
|
.option(
|
|
77
79
|
'--split-chunks-mode <value>',
|
|
78
80
|
'extract js module to single files',
|
|
@@ -221,6 +223,8 @@ 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-image-bin', 'translate image to bin')
|
|
227
|
+
.option('--enable-image-png8', 'translate image to png8')
|
|
224
228
|
.option(
|
|
225
229
|
'--split-chunks-mode <value>',
|
|
226
230
|
'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.
|
|
3
|
+
"version": "1.1.4",
|
|
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": "
|
|
10
|
-
"@aiot-toolkit/debugger": "
|
|
11
|
-
"@aiot-toolkit/dsl-vue": "
|
|
12
|
-
"@aiot-toolkit/dsl-xvm": "
|
|
13
|
-
"@aiot-toolkit/packager": "
|
|
14
|
-
"@aiot-toolkit/server": "
|
|
15
|
-
"@aiot-toolkit/shared-utils": "
|
|
9
|
+
"@aiot-toolkit/compiler": "1.1.4",
|
|
10
|
+
"@aiot-toolkit/debugger": "1.1.4",
|
|
11
|
+
"@aiot-toolkit/dsl-vue": "1.1.4",
|
|
12
|
+
"@aiot-toolkit/dsl-xvm": "1.1.4",
|
|
13
|
+
"@aiot-toolkit/packager": "1.1.4",
|
|
14
|
+
"@aiot-toolkit/server": "1.1.4",
|
|
15
|
+
"@aiot-toolkit/shared-utils": "1.1.4",
|
|
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": "9a1cb892be9795674483e610cc51c2b904b35041"
|
|
56
56
|
}
|