@xfe-repo/cli-presets 2.0.8 → 2.1.2

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,44 @@
1
1
  # @xfe-repo/cli-presets
2
2
 
3
+ ## 2.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @xfe-repo/cli-plugin-oauth@2.0.9
9
+ - @xfe-repo/cli-plugin-deploy@2.0.10
10
+
11
+ ## 2.1.1
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies
16
+ - @xfe-repo/cli-plugin-ai-mcp@2.0.9
17
+ - @xfe-repo/cli-plugin-deploy@2.0.9
18
+
19
+ ## 2.1.0
20
+
21
+ ### Minor Changes
22
+
23
+ - 新增deploy自动部署支持
24
+
25
+ ### Patch Changes
26
+
27
+ - Updated dependencies
28
+ - @xfe-repo/cli-core@2.1.0
29
+ - @xfe-repo/cli-plugin-project-mini@2.0.8
30
+ - @xfe-repo/cli-plugin-project-bff@2.0.8
31
+ - @xfe-repo/cli-plugin-project-web@2.0.8
32
+ - @xfe-repo/cli-plugin-ai-rules@2.0.8
33
+ - @xfe-repo/cli-plugin-project@2.0.8
34
+ - @xfe-repo/cli-plugin-service@2.0.8
35
+ - @xfe-repo/cli-plugin-ai-mcp@2.0.8
36
+ - @xfe-repo/cli-plugin-deploy@2.0.8
37
+ - @xfe-repo/cli-plugin-update@2.0.8
38
+ - @xfe-repo/cli-plugin-oauth@2.0.8
39
+ - @xfe-repo/cli-plugin-git@2.0.8
40
+ - @xfe-repo/cli-plugin-pkg@2.0.8
41
+
3
42
  ## 2.0.8
4
43
 
5
44
  ### Patch Changes
package/dist/index.js CHANGED
@@ -7,6 +7,7 @@
7
7
  import { gitPlugin } from '@xfe-repo/cli-plugin-git';
8
8
  import { pkgPlugin } from '@xfe-repo/cli-plugin-pkg';
9
9
  import { projectPlugin } from '@xfe-repo/cli-plugin-project';
10
+ import { deployPlugin } from '@xfe-repo/cli-plugin-deploy';
10
11
  import { webProjectPlugin } from '@xfe-repo/cli-plugin-project-web';
11
12
  import { bffProjectPlugin } from '@xfe-repo/cli-plugin-project-bff';
12
13
  import { miniProjectPlugin } from '@xfe-repo/cli-plugin-project-mini';
@@ -14,6 +15,7 @@ import { servicePlugin } from '@xfe-repo/cli-plugin-service';
14
15
  import { updatePlugin } from '@xfe-repo/cli-plugin-update';
15
16
  import { aiRulesPlugin } from '@xfe-repo/cli-plugin-ai-rules';
16
17
  import { aiMcpPlugin } from '@xfe-repo/cli-plugin-ai-mcp';
18
+ import { oauthPlugin } from '@xfe-repo/cli-plugin-oauth';
17
19
  // ============================================================
18
20
  // 项目模板工厂
19
21
  // ============================================================
@@ -27,6 +29,8 @@ function createWebProject(config) {
27
29
  gitPlugin({ gitPath: config.gitPath }),
28
30
  pkgPlugin(),
29
31
  projectPlugin(),
32
+ oauthPlugin(),
33
+ deployPlugin(),
30
34
  webProjectPlugin({ businessList: config.businessList }),
31
35
  servicePlugin(),
32
36
  updatePlugin(),
@@ -45,6 +49,8 @@ function createBffProject(config) {
45
49
  gitPlugin({ gitPath: config.gitPath }),
46
50
  pkgPlugin(),
47
51
  projectPlugin(),
52
+ oauthPlugin(),
53
+ deployPlugin(),
48
54
  bffProjectPlugin(),
49
55
  servicePlugin(),
50
56
  updatePlugin(),
@@ -63,6 +69,8 @@ function createMiniProject(config) {
63
69
  gitPlugin({ gitPath: config.gitPath }),
64
70
  pkgPlugin(),
65
71
  projectPlugin(),
72
+ oauthPlugin(),
73
+ deployPlugin(),
66
74
  miniProjectPlugin(),
67
75
  servicePlugin(),
68
76
  updatePlugin(),
package/package.json CHANGED
@@ -1,22 +1,24 @@
1
1
  {
2
2
  "name": "@xfe-repo/cli-presets",
3
- "version": "2.0.8",
3
+ "version": "2.1.2",
4
4
  "description": "XFE project type presets",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",
8
8
  "dependencies": {
9
- "@xfe-repo/cli-plugin-git": "2.0.7",
10
- "@xfe-repo/cli-plugin-project": "2.0.7",
11
- "@xfe-repo/cli-plugin-project-web": "2.0.7",
12
- "@xfe-repo/cli-core": "2.0.8",
13
- "@xfe-repo/cli-plugin-pkg": "2.0.7",
14
- "@xfe-repo/cli-plugin-project-bff": "2.0.7",
15
- "@xfe-repo/cli-plugin-service": "2.0.7",
16
- "@xfe-repo/cli-plugin-project-mini": "2.0.7",
17
- "@xfe-repo/cli-plugin-update": "2.0.7",
18
- "@xfe-repo/cli-plugin-ai-mcp": "2.0.7",
19
- "@xfe-repo/cli-plugin-ai-rules": "2.0.7"
9
+ "@xfe-repo/cli-core": "2.1.0",
10
+ "@xfe-repo/cli-plugin-project": "2.0.8",
11
+ "@xfe-repo/cli-plugin-pkg": "2.0.8",
12
+ "@xfe-repo/cli-plugin-project-bff": "2.0.8",
13
+ "@xfe-repo/cli-plugin-git": "2.0.8",
14
+ "@xfe-repo/cli-plugin-project-web": "2.0.8",
15
+ "@xfe-repo/cli-plugin-deploy": "2.0.10",
16
+ "@xfe-repo/cli-plugin-service": "2.0.8",
17
+ "@xfe-repo/cli-plugin-ai-mcp": "2.0.9",
18
+ "@xfe-repo/cli-plugin-update": "2.0.8",
19
+ "@xfe-repo/cli-plugin-ai-rules": "2.0.8",
20
+ "@xfe-repo/cli-plugin-project-mini": "2.0.8",
21
+ "@xfe-repo/cli-plugin-oauth": "2.0.9"
20
22
  },
21
23
  "devDependencies": {
22
24
  "@types/node": "^24.3.0",