aiot-toolkit 1.1.1-imagebin-dev.2 → 1.1.1-media-dev.2

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,11 @@
1
1
  # Change Log
2
2
 
3
+ #### [1.1.1] - 2024-05-09
4
+
5
+ - 支持 `internal` 绝对文件路径
6
+ - 增加 `process` 的属性type值
7
+ - 优化 `style` 的class动态值
8
+
3
9
  #### [1.1.0] - 2024-01-10
4
10
 
5
11
  - 支持 `enable-e2e` 在 server 模式下
package/README.md CHANGED
@@ -41,6 +41,12 @@ npm run release
41
41
 
42
42
  ### 版本日志(详情请在 node_modules 中查看 CHANGELOG)
43
43
 
44
+ #### [1.1.1] - 2024-05-09
45
+
46
+ - 支持 `internal` 绝对文件路径
47
+ - 增加 `process` 的属性type值
48
+ - 优化 `style` 的class动态值
49
+
44
50
  #### [1.1.0] - 2024-01-10
45
51
 
46
52
  - 支持 `enable-e2e` 在 server 模式下
package/bin/index.js CHANGED
@@ -73,8 +73,6 @@ 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')
78
76
  .option(
79
77
  '--split-chunks-mode <value>',
80
78
  'extract js module to single files',
@@ -223,8 +221,6 @@ program
223
221
  .option('--enable-ops-wrap', 'inject performance log in code')
224
222
  .option('--disable-build-rpk', 'disable build rpk')
225
223
  .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')
228
224
  .option(
229
225
  '--split-chunks-mode <value>',
230
226
  '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.1-imagebin-dev.2",
3
+ "version": "1.1.1-media-dev.2",
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.1.1-imagebin-dev.2",
10
- "@aiot-toolkit/debugger": "1.1.1-imagebin-dev.2",
11
- "@aiot-toolkit/dsl-vue": "1.1.1-imagebin-dev.2",
12
- "@aiot-toolkit/dsl-xvm": "1.1.1-imagebin-dev.2",
13
- "@aiot-toolkit/packager": "1.1.1-imagebin-dev.2",
14
- "@aiot-toolkit/server": "1.1.1-imagebin-dev.2",
15
- "@aiot-toolkit/shared-utils": "1.1.1-imagebin-dev.2",
9
+ "@aiot-toolkit/compiler": "1.1.1-media-dev.2",
10
+ "@aiot-toolkit/debugger": "1.1.1-media-dev.2",
11
+ "@aiot-toolkit/dsl-vue": "1.1.1-media-dev.2",
12
+ "@aiot-toolkit/dsl-xvm": "1.1.1-media-dev.2",
13
+ "@aiot-toolkit/packager": "1.1.1-media-dev.2",
14
+ "@aiot-toolkit/server": "1.1.1-media-dev.2",
15
+ "@aiot-toolkit/shared-utils": "1.1.1-media-dev.2",
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": "680dca71f0f3a0814296d0254cec647a5faec9dc"
55
+ "gitHead": "82ea331599a5845e890598b59aa76318dee28433"
56
56
  }