@varlet/cli 3.0.0-alpha.1708361923890 → 3.0.0
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/README.md +3 -4
- package/README.zh-CN.md +2 -2
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ The out-of-the-box `Vue3 component library` rapid prototyping tool provides a se
|
|
|
16
16
|
- 💪 Support for `VSCode` extension development
|
|
17
17
|
- 💪 Support `build svg to web fonts`
|
|
18
18
|
- 💪 Support for `Typescript`
|
|
19
|
-
- 💪 Support `Various themes, including
|
|
19
|
+
- 💪 Support `Various themes, including Material Design 2, Material Design 3`
|
|
20
20
|
- 🌍 Support `Internationalization`
|
|
21
21
|
- 🚀 Based on `pnpm`
|
|
22
22
|
|
|
@@ -276,12 +276,11 @@ varlet-cli create
|
|
|
276
276
|
|
|
277
277
|
### Q & A
|
|
278
278
|
|
|
279
|
-
|
|
279
|
+
#### How to solve failure of installing sharp ?
|
|
280
280
|
|
|
281
281
|
- You can choose to change mirror site which contains binaries for both sharp and libvips.
|
|
282
282
|
|
|
283
283
|
``` shell
|
|
284
284
|
pnpm config set sharp_binary_host "https://npmmirror.com/mirrors/sharp"
|
|
285
285
|
pnpm config set sharp_libvips_binary_host "https://npmmirror.com/mirrors/sharp-libvips"
|
|
286
|
-
```
|
|
287
|
-
|
|
286
|
+
```
|
package/README.zh-CN.md
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
- 💪 支持 `VSCode` 插件开发
|
|
17
17
|
- 💪 支持 `字体图标打包`
|
|
18
18
|
- 💪 支持 `Typescript`
|
|
19
|
-
- 💪 支持 `多种主题, 包含
|
|
19
|
+
- 💪 支持 `多种主题, 包含 Material Design 2、Material Design 3`
|
|
20
20
|
- 🌍 支持 `国际化`
|
|
21
21
|
- 🚀 基于 `pnpm`
|
|
22
22
|
|
|
@@ -275,7 +275,7 @@ varlet-cli create
|
|
|
275
275
|
|
|
276
276
|
### 问答
|
|
277
277
|
|
|
278
|
-
|
|
278
|
+
#### 如何解决安装 sharp 失败的问题 ?
|
|
279
279
|
|
|
280
280
|
- 您可以选择更改包含 sharp 和 libvips 二进制文件的镜像站点
|
|
281
281
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@varlet/cli",
|
|
3
|
-
"version": "3.0.0
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "cli of varlet",
|
|
6
6
|
"bin": {
|
|
@@ -64,8 +64,8 @@
|
|
|
64
64
|
"slash": "^3.0.0",
|
|
65
65
|
"typescript": "^5.1.5",
|
|
66
66
|
"webfont": "11.2.26",
|
|
67
|
-
"@varlet/shared": "3.0.0
|
|
68
|
-
"@varlet/vite-plugins": "3.0.0
|
|
67
|
+
"@varlet/shared": "3.0.0",
|
|
68
|
+
"@varlet/vite-plugins": "3.0.0"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
71
|
"@types/babel__core": "^7.20.1",
|
|
@@ -80,9 +80,9 @@
|
|
|
80
80
|
"@types/semver": "^7.3.9",
|
|
81
81
|
"@types/sharp": "0.31.1",
|
|
82
82
|
"rimraf": "^5.0.1",
|
|
83
|
-
"@varlet/
|
|
84
|
-
"@varlet/
|
|
85
|
-
"@varlet/
|
|
83
|
+
"@varlet/ui": "3.0.0",
|
|
84
|
+
"@varlet/icons": "3.0.0",
|
|
85
|
+
"@varlet/touch-emulator": "3.0.0"
|
|
86
86
|
},
|
|
87
87
|
"peerDependencies": {
|
|
88
88
|
"@vue/runtime-core": "3.4.15",
|
|
@@ -95,9 +95,9 @@
|
|
|
95
95
|
"lodash-es": "^4.17.21",
|
|
96
96
|
"vue": "3.4.15",
|
|
97
97
|
"vue-router": "4.2.0",
|
|
98
|
-
"@varlet/
|
|
99
|
-
"@varlet/
|
|
100
|
-
"@varlet/
|
|
98
|
+
"@varlet/ui": "3.0.0",
|
|
99
|
+
"@varlet/icons": "3.0.0",
|
|
100
|
+
"@varlet/touch-emulator": "3.0.0"
|
|
101
101
|
},
|
|
102
102
|
"scripts": {
|
|
103
103
|
"dev": "tsc --watch",
|