@xfe-repo/cli 2.0.6 → 2.0.7
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 +37 -0
- package/package.json +4 -3
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# @xfe-repo/cli
|
|
2
|
+
|
|
3
|
+
## 2.0.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 新增xfe-repo包更新检测能力
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @xfe-repo/cli-presets@2.0.3
|
|
10
|
+
- @xfe-repo/cli-core@2.0.3
|
|
11
|
+
|
|
12
|
+
## 2.0.6
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 修复安装问题
|
|
17
|
+
|
|
18
|
+
## 2.0.4
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- 修复postinstall报错问题
|
|
23
|
+
|
|
24
|
+
## 2.0.3
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- 更新依赖版本
|
|
29
|
+
|
|
30
|
+
## 2.0.3
|
|
31
|
+
|
|
32
|
+
### Patch Changes
|
|
33
|
+
|
|
34
|
+
- add README.md
|
|
35
|
+
- Updated dependencies
|
|
36
|
+
- @xfe-repo/cli-presets@2.0.2
|
|
37
|
+
- @xfe-repo/cli-core@2.0.2
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xfe-repo/cli",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.7",
|
|
4
4
|
"description": "XFE CLI - Ink-based terminal UI for project scaffolding",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
"ink-link": "^5.0.0",
|
|
18
18
|
"react": "^19.1.0",
|
|
19
19
|
"zod": "^4.3.6",
|
|
20
|
-
"@xfe-repo/cli-core": "2.0.
|
|
21
|
-
"@xfe-repo/cli-presets": "2.0.
|
|
20
|
+
"@xfe-repo/cli-core": "2.0.3",
|
|
21
|
+
"@xfe-repo/cli-presets": "2.0.3"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@types/node": "^24.3.0",
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
},
|
|
29
29
|
"files": [
|
|
30
30
|
"dist",
|
|
31
|
+
"CHANGELOG.md",
|
|
31
32
|
"!dist/**/*.map"
|
|
32
33
|
],
|
|
33
34
|
"license": "ISC",
|