minimal-homepage 2.0.2 → 2.0.4
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-en.md +9 -2
- package/README.md +11 -4
- package/package.json +1 -1
- package/src/index.js +0 -5
package/README-en.md
CHANGED
|
@@ -66,13 +66,20 @@ A personal homepage project built with Vue 3 + Vite + Tailwind CSS, supporting:
|
|
|
66
66
|
npm install @mete0r/minimal-homepage
|
|
67
67
|
```
|
|
68
68
|
|
|
69
|
-
2.
|
|
69
|
+
2. Copy the project
|
|
70
|
+
|
|
71
|
+
```bash
|
|
72
|
+
xcopy /E /I /H node_modules\minimal-homepage .
|
|
73
|
+
```
|
|
74
|
+
> Select Replace the `package.json`file
|
|
75
|
+
|
|
76
|
+
3. Enter the project directory
|
|
70
77
|
|
|
71
78
|
```bash
|
|
72
79
|
cd @mete0r/minimal-homepage
|
|
73
80
|
```
|
|
74
81
|
|
|
75
|
-
|
|
82
|
+
4. Install dependencies
|
|
76
83
|
|
|
77
84
|
```bash
|
|
78
85
|
npm install
|
package/README.md
CHANGED
|
@@ -64,16 +64,23 @@
|
|
|
64
64
|
1. 安装
|
|
65
65
|
|
|
66
66
|
```bash
|
|
67
|
-
npm install
|
|
67
|
+
npm install minimal-homepage
|
|
68
68
|
```
|
|
69
69
|
|
|
70
|
-
2.
|
|
70
|
+
2. 复制项目至当前目录
|
|
71
71
|
|
|
72
72
|
```bash
|
|
73
|
-
|
|
73
|
+
xcopy /E /I /H node_modules\minimal-homepage .
|
|
74
74
|
```
|
|
75
|
+
> 选择覆盖package.json文件
|
|
75
76
|
|
|
76
|
-
3.
|
|
77
|
+
3. 进入项目
|
|
78
|
+
|
|
79
|
+
```bash
|
|
80
|
+
cd minimal-homepage
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
4. 安装依赖
|
|
77
84
|
|
|
78
85
|
```bash
|
|
79
86
|
npm install
|
package/package.json
CHANGED