aiot-toolkit 1.1.2-beta.2 → 1.1.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 +9 -2
- package/README.md +9 -2
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
#### [1.1.2] - 2024-06-19
|
|
4
|
+
|
|
5
|
+
- 优化 `screen and` 媒体查询的条件
|
|
6
|
+
- 增加 `internal://` 协议的资源在 css 中支持
|
|
7
|
+
- 修改 `global.Env.designWidth` 的值在 velaApp 中
|
|
8
|
+
|
|
3
9
|
#### [1.1.1] - 2024-05-09
|
|
4
10
|
|
|
5
11
|
- 支持 `internal` 绝对文件路径
|
|
6
|
-
- 增加 `process` 的属性type值
|
|
7
|
-
- 优化 `style` 的class动态值
|
|
12
|
+
- 增加 `process` 的属性 type 值
|
|
13
|
+
- 优化 `style` 的 class 动态值
|
|
14
|
+
- 修复 `optimizeUnusedResource` 配置无效的问题
|
|
8
15
|
|
|
9
16
|
#### [1.1.0] - 2024-01-10
|
|
10
17
|
|
package/README.md
CHANGED
|
@@ -41,11 +41,18 @@ npm run release
|
|
|
41
41
|
|
|
42
42
|
### 版本日志(详情请在 node_modules 中查看 CHANGELOG)
|
|
43
43
|
|
|
44
|
+
#### [1.1.2] - 2024-06-19
|
|
45
|
+
|
|
46
|
+
- 优化 `screen and` 媒体查询的条件
|
|
47
|
+
- 增加 `internal://` 协议的资源在 css 中支持
|
|
48
|
+
- 修复 `global.Env.designWidth` 的值在 velaApp.js
|
|
49
|
+
|
|
44
50
|
#### [1.1.1] - 2024-05-09
|
|
45
51
|
|
|
46
52
|
- 支持 `internal` 绝对文件路径
|
|
47
|
-
- 增加 `process` 的属性type值
|
|
48
|
-
- 优化 `style` 的class动态值
|
|
53
|
+
- 增加 `process` 的属性 type 值
|
|
54
|
+
- 优化 `style` 的 class 动态值
|
|
55
|
+
- 修复 `optimizeUnusedResource` 配置无效的问题
|
|
49
56
|
|
|
50
57
|
#### [1.1.0] - 2024-01-10
|
|
51
58
|
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aiot-toolkit",
|
|
3
|
-
"version": "1.1.2
|
|
3
|
+
"version": "1.1.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.2
|
|
10
|
-
"@aiot-toolkit/debugger": "1.1.2
|
|
11
|
-
"@aiot-toolkit/dsl-vue": "1.1.2
|
|
12
|
-
"@aiot-toolkit/dsl-xvm": "1.1.2
|
|
13
|
-
"@aiot-toolkit/packager": "1.1.2
|
|
14
|
-
"@aiot-toolkit/server": "1.1.2
|
|
15
|
-
"@aiot-toolkit/shared-utils": "1.1.2
|
|
9
|
+
"@aiot-toolkit/compiler": "1.1.2",
|
|
10
|
+
"@aiot-toolkit/debugger": "1.1.2",
|
|
11
|
+
"@aiot-toolkit/dsl-vue": "1.1.2",
|
|
12
|
+
"@aiot-toolkit/dsl-xvm": "1.1.2",
|
|
13
|
+
"@aiot-toolkit/packager": "1.1.2",
|
|
14
|
+
"@aiot-toolkit/server": "1.1.2",
|
|
15
|
+
"@aiot-toolkit/shared-utils": "1.1.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": "
|
|
55
|
+
"gitHead": "861f1d2319f6427cb9459903a0fe2f3ba1bbe22c"
|
|
56
56
|
}
|