@xfe-repo/cli-presets 2.0.7 → 2.1.0

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,46 @@
1
1
  # @xfe-repo/cli-presets
2
2
 
3
+ ## 2.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 新增deploy自动部署支持
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+ - @xfe-repo/cli-core@2.1.0
13
+ - @xfe-repo/cli-plugin-project-mini@2.0.8
14
+ - @xfe-repo/cli-plugin-project-bff@2.0.8
15
+ - @xfe-repo/cli-plugin-project-web@2.0.8
16
+ - @xfe-repo/cli-plugin-ai-rules@2.0.8
17
+ - @xfe-repo/cli-plugin-project@2.0.8
18
+ - @xfe-repo/cli-plugin-service@2.0.8
19
+ - @xfe-repo/cli-plugin-ai-mcp@2.0.8
20
+ - @xfe-repo/cli-plugin-deploy@2.0.8
21
+ - @xfe-repo/cli-plugin-update@2.0.8
22
+ - @xfe-repo/cli-plugin-oauth@2.0.8
23
+ - @xfe-repo/cli-plugin-git@2.0.8
24
+ - @xfe-repo/cli-plugin-pkg@2.0.8
25
+
26
+ ## 2.0.8
27
+
28
+ ### Patch Changes
29
+
30
+ - 修复窗口高度计算问题
31
+ - Updated dependencies
32
+ - @xfe-repo/cli-plugin-project-mini@2.0.7
33
+ - @xfe-repo/cli-plugin-project-bff@2.0.7
34
+ - @xfe-repo/cli-plugin-project-web@2.0.7
35
+ - @xfe-repo/cli-plugin-ai-rules@2.0.7
36
+ - @xfe-repo/cli-plugin-project@2.0.7
37
+ - @xfe-repo/cli-plugin-service@2.0.7
38
+ - @xfe-repo/cli-plugin-ai-mcp@2.0.7
39
+ - @xfe-repo/cli-plugin-update@2.0.7
40
+ - @xfe-repo/cli-plugin-git@2.0.7
41
+ - @xfe-repo/cli-plugin-pkg@2.0.7
42
+ - @xfe-repo/cli-core@2.0.8
43
+
3
44
  ## 2.0.7
4
45
 
5
46
  ### 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.7",
3
+ "version": "2.1.0",
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.6",
10
- "@xfe-repo/cli-plugin-project-web": "2.0.6",
11
- "@xfe-repo/cli-plugin-project": "2.0.6",
12
- "@xfe-repo/cli-plugin-pkg": "2.0.6",
13
- "@xfe-repo/cli-core": "2.0.7",
14
- "@xfe-repo/cli-plugin-project-bff": "2.0.6",
15
- "@xfe-repo/cli-plugin-project-mini": "2.0.6",
16
- "@xfe-repo/cli-plugin-service": "2.0.6",
17
- "@xfe-repo/cli-plugin-ai-rules": "2.0.6",
18
- "@xfe-repo/cli-plugin-ai-mcp": "2.0.6",
19
- "@xfe-repo/cli-plugin-update": "2.0.6"
9
+ "@xfe-repo/cli-core": "2.1.0",
10
+ "@xfe-repo/cli-plugin-pkg": "2.0.8",
11
+ "@xfe-repo/cli-plugin-project": "2.0.8",
12
+ "@xfe-repo/cli-plugin-git": "2.0.8",
13
+ "@xfe-repo/cli-plugin-deploy": "2.0.8",
14
+ "@xfe-repo/cli-plugin-project-web": "2.0.8",
15
+ "@xfe-repo/cli-plugin-project-bff": "2.0.8",
16
+ "@xfe-repo/cli-plugin-service": "2.0.8",
17
+ "@xfe-repo/cli-plugin-update": "2.0.8",
18
+ "@xfe-repo/cli-plugin-project-mini": "2.0.8",
19
+ "@xfe-repo/cli-plugin-ai-mcp": "2.0.8",
20
+ "@xfe-repo/cli-plugin-ai-rules": "2.0.8",
21
+ "@xfe-repo/cli-plugin-oauth": "2.0.8"
20
22
  },
21
23
  "devDependencies": {
22
24
  "@types/node": "^24.3.0",