aiot-toolkit 1.0.15 → 1.0.16-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 +6 -0
- package/package.json +9 -9
package/bin/index.js
CHANGED
|
@@ -67,6 +67,8 @@ program
|
|
|
67
67
|
.option('--enable-extract-css', 'extract css to json')
|
|
68
68
|
.option('--enable-custom-component', 'explort entrys by function')
|
|
69
69
|
.option('--enable-jsc', 'bundle to jsc if the projectType is vela')
|
|
70
|
+
.option('--enable-ops-wrap', 'inject performance log in code')
|
|
71
|
+
.option('--disable-build-rpk', 'disable build rpk')
|
|
70
72
|
.option(
|
|
71
73
|
'--split-chunks-mode <value>',
|
|
72
74
|
'extract js module to single files',
|
|
@@ -122,6 +124,8 @@ program
|
|
|
122
124
|
.option('--enable-performance-check', 'inject performance log in code')
|
|
123
125
|
.option('--enable-custom-component', 'explort entrys by function')
|
|
124
126
|
.option('--enable-jsc', 'bundle to jsc if the projectType is vela')
|
|
127
|
+
.option('--enable-ops-wrap', 'inject performance log in code')
|
|
128
|
+
.option('--disable-build-rpk', 'disable build rpk')
|
|
125
129
|
.option(
|
|
126
130
|
'--build-name-format <build-name-format>',
|
|
127
131
|
'custom output rpk file name',
|
|
@@ -201,6 +205,8 @@ program
|
|
|
201
205
|
.option('--match-sourcemap', 'match sourcemap')
|
|
202
206
|
.option('--enable-extract-css', 'extract css to json')
|
|
203
207
|
.option('--enable-jsc', 'bundle to jsc if the projectType is vela')
|
|
208
|
+
.option('--enable-ops-wrap', 'inject performance log in code')
|
|
209
|
+
.option('--disable-build-rpk', 'disable build rpk')
|
|
204
210
|
.option(
|
|
205
211
|
'--split-chunks-mode <value>',
|
|
206
212
|
'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.
|
|
3
|
+
"version": "1.0.16-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.0.
|
|
10
|
-
"@aiot-toolkit/debugger": "1.0.
|
|
11
|
-
"@aiot-toolkit/dsl-vue": "1.0.
|
|
12
|
-
"@aiot-toolkit/dsl-xvm": "1.0.
|
|
13
|
-
"@aiot-toolkit/packager": "1.0.
|
|
14
|
-
"@aiot-toolkit/server": "1.0.
|
|
15
|
-
"@aiot-toolkit/shared-utils": "1.0.
|
|
9
|
+
"@aiot-toolkit/compiler": "1.0.16-beta.3",
|
|
10
|
+
"@aiot-toolkit/debugger": "1.0.16-beta.3",
|
|
11
|
+
"@aiot-toolkit/dsl-vue": "1.0.16-beta.3",
|
|
12
|
+
"@aiot-toolkit/dsl-xvm": "1.0.16-beta.3",
|
|
13
|
+
"@aiot-toolkit/packager": "1.0.16-beta.3",
|
|
14
|
+
"@aiot-toolkit/server": "1.0.16-beta.3",
|
|
15
|
+
"@aiot-toolkit/shared-utils": "1.0.16-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": "326142612e2691dfb85743e081a7abe15f8a75be"
|
|
56
56
|
}
|