@xfe-repo/cli-plugin-ai-rules 2.0.6 → 2.0.8
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 +18 -0
- package/dist/index.js +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @xfe-repo/cli-plugin-ai-rules
|
|
2
2
|
|
|
3
|
+
## 2.0.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 新增deploy自动部署支持
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @xfe-repo/cli-core@2.1.0
|
|
10
|
+
- @xfe-repo/cli-plugin-git@2.0.8
|
|
11
|
+
|
|
12
|
+
## 2.0.7
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 修复窗口高度计算问题
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
- @xfe-repo/cli-plugin-git@2.0.7
|
|
19
|
+
- @xfe-repo/cli-core@2.0.8
|
|
20
|
+
|
|
3
21
|
## 2.0.6
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -48,8 +48,8 @@ export function aiRulesPlugin() {
|
|
|
48
48
|
value: (state) => {
|
|
49
49
|
const s = state['ai-rules'];
|
|
50
50
|
if (!s?.lastSyncTime || s.synced === false)
|
|
51
|
-
return 'Rules
|
|
52
|
-
return 'Rules
|
|
51
|
+
return 'Rules 未同步';
|
|
52
|
+
return 'Rules 已同步';
|
|
53
53
|
},
|
|
54
54
|
color: 'cyan',
|
|
55
55
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xfe-repo/cli-plugin-ai-rules",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.8",
|
|
4
4
|
"description": "XFE AI Rules plugin - sync AI coding rules from remote repo to IDE configs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"fs-extra": "^11.3.0",
|
|
10
10
|
"gray-matter": "^4.0.3",
|
|
11
11
|
"zod": "^4.3.6",
|
|
12
|
-
"@xfe-repo/cli-core": "2.0
|
|
13
|
-
"@xfe-repo/cli-plugin-git": "2.0.
|
|
12
|
+
"@xfe-repo/cli-core": "2.1.0",
|
|
13
|
+
"@xfe-repo/cli-plugin-git": "2.0.8"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"@types/fs-extra": "^11.0.4",
|