@xfe-repo/cli-plugin-ai-rules 2.0.7 → 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 CHANGED
@@ -1,5 +1,14 @@
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
+
3
12
  ## 2.0.7
4
13
 
5
14
  ### 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 Not Synced';
52
- return 'Rules Synced';
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.7",
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.8",
13
- "@xfe-repo/cli-plugin-git": "2.0.7"
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",