aiot-toolkit 1.0.13-beta.7 → 1.0.13

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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # Change Log
2
2
 
3
+ #### [1.0.13] - 2022-06-15
4
+
5
+ - 支持 `vela` 项目的全局样式
6
+ - 支持 `vela` 项目 --enable-ops-wrap、--enable-export-function 参数
7
+ - 重构 `vela` 项目的编译时函数
8
+ - 修复 `vela` 项目 for、if 属性丢失等问题
9
+ - 增加 `vela` 项目 jsc 转译功能
10
+
3
11
  #### [1.0.12] - 2022-03-23
4
12
 
5
13
  - 支持 `vela` 项目中事件参数可以加上{{}}
package/README.md CHANGED
@@ -41,6 +41,14 @@ npm run release
41
41
 
42
42
  ### 版本日志(详情请在 node_modules 中查看 CHANGELOG)
43
43
 
44
+ #### [1.0.13] - 2022-06-15
45
+
46
+ - 支持 `vela` 项目的全局样式
47
+ - 支持 `vela` 项目 --enable-ops-wrap、--enable-export-function 参数
48
+ - 重构 `vela` 项目的编译时函数
49
+ - 修复 `vela` 项目 for、if 属性丢失等问题
50
+ - 增加 `vela` 项目 jsc 转译功能
51
+
44
52
  #### [1.0.12] - 2022-03-23
45
53
 
46
54
  - 支持 `vela` 项目中事件参数可以加上{{}}
package/bin/index.js CHANGED
@@ -65,8 +65,9 @@ program
65
65
  .option('--include-static-resources', 'bundle static resources to rpk')
66
66
  .option('--match-sourcemap', 'match sourcemap')
67
67
  .option('--enable-extract-css', 'extract css to json')
68
- .option('--enable-wrap', 'wrap attribute')
68
+ .option('--enable-ops-wrap', 'wrap attribute')
69
69
  .option('--enable-export-function', 'explort entrys by function')
70
+ .option('--enable-jsc', 'bundle to jsc if the projectType is vela')
70
71
  .option(
71
72
  '--split-chunks-mode <value>',
72
73
  'extract js module to single files',
@@ -120,8 +121,9 @@ program
120
121
  .option('--include-dsl-from-lib', 'bundle dsl to rpk')
121
122
  .option('--include-static-resources', 'bundle static resources to rpk')
122
123
  .option('--enable-performance-check', 'inject performance log in code')
123
- .option('--enable-wrap', 'wrap attribute')
124
+ .option('--enable-ops-wrap', 'wrap attribute')
124
125
  .option('--enable-export-function', 'explort entrys by function')
126
+ .option('--enable-jsc', 'bundle to jsc if the projectType is vela')
125
127
  .option(
126
128
  '--build-name-format <build-name-format>',
127
129
  'custom output rpk file name',
@@ -200,6 +202,7 @@ program
200
202
  .option('--include-static-resources', 'bundle static resources to rpk')
201
203
  .option('--match-sourcemap', 'match sourcemap')
202
204
  .option('--enable-extract-css', 'extract css to json')
205
+ .option('--enable-jsc', 'bundle to jsc if the projectType is vela')
203
206
  .option(
204
207
  '--split-chunks-mode <value>',
205
208
  'extract js module to single files',
@@ -217,6 +220,8 @@ program
217
220
  'custom output rpk file name',
218
221
  validateBuildNameFormat
219
222
  )
223
+ .option('--enable-ops-wrap', 'wrap attribute')
224
+ .option('--enable-export-function', 'explort entrys by function')
220
225
  .action(options => {
221
226
  // 必备参数:当开发者不传递该参数时,要解析为默认
222
227
  const signModeTmp = options.disableSign && compileOptionsMeta.signModeEnum.NULL
package/package.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "aiot-toolkit",
3
- "version": "1.0.13-beta.7",
3
+ "version": "1.0.13",
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.13-beta.7",
10
- "@aiot-toolkit/debugger": "1.0.13-beta.7",
11
- "@aiot-toolkit/dsl-vue": "1.0.13-beta.7",
12
- "@aiot-toolkit/dsl-xvm": "1.0.13-beta.7",
13
- "@aiot-toolkit/packager": "1.0.13-beta.7",
14
- "@aiot-toolkit/server": "1.0.13-beta.7",
15
- "@aiot-toolkit/shared-utils": "1.0.13-beta.7",
9
+ "@aiot-toolkit/compiler": "1.0.13",
10
+ "@aiot-toolkit/debugger": "1.0.13",
11
+ "@aiot-toolkit/dsl-vue": "1.0.13",
12
+ "@aiot-toolkit/dsl-xvm": "1.0.13",
13
+ "@aiot-toolkit/packager": "1.0.13",
14
+ "@aiot-toolkit/server": "1.0.13",
15
+ "@aiot-toolkit/shared-utils": "1.0.13",
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": "3d4d5a6838b2dbad4610d013658ce441fb5d3992"
55
+ "gitHead": "cae5b88b110f32a54fa92b3c73097cbeb47ebc01"
56
56
  }