aiot-toolkit 1.0.18-binary-beta.25 → 1.0.18-binary-beta.27
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 +5 -0
- package/package.json +9 -9
package/bin/index.js
CHANGED
|
@@ -138,6 +138,11 @@ program
|
|
|
138
138
|
'custom output rpk file name',
|
|
139
139
|
validateBuildNameFormat
|
|
140
140
|
)
|
|
141
|
+
.option(
|
|
142
|
+
'--split-chunks-mode <value>',
|
|
143
|
+
'extract js module to single files',
|
|
144
|
+
validateSplitChunksMode
|
|
145
|
+
)
|
|
141
146
|
.action(options => {
|
|
142
147
|
const { launchServer } = require('@aiot-toolkit/server')
|
|
143
148
|
const { compile } = require('../lib/commands/compile')
|
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.27",
|
|
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.27",
|
|
10
|
+
"@aiot-toolkit/debugger": "1.0.18-binary-beta.27",
|
|
11
|
+
"@aiot-toolkit/dsl-vue": "1.0.18-binary-beta.27",
|
|
12
|
+
"@aiot-toolkit/dsl-xvm": "1.0.18-binary-beta.27",
|
|
13
|
+
"@aiot-toolkit/packager": "1.0.18-binary-beta.27",
|
|
14
|
+
"@aiot-toolkit/server": "1.0.18-binary-beta.27",
|
|
15
|
+
"@aiot-toolkit/shared-utils": "1.0.18-binary-beta.27",
|
|
16
16
|
"@babel/core": "^7.9.6",
|
|
17
17
|
"@babel/plugin-syntax-jsx": "^7.8.3",
|
|
18
18
|
"@babel/preset-env": "^7.9.6",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"supertest": "^3.3.0",
|
|
52
52
|
"webpack-cli": "^4.3.0"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "f54533e33c855d7150b6256ffad2de4770d8efb2"
|
|
55
55
|
}
|