cmyr-template-cli 1.45.1 → 1.45.3

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/dist/plopfile.js CHANGED
@@ -2676,7 +2676,7 @@ module.exports = function(plop) {
2676
2676
  type: "confirm",
2677
2677
  name: "isAIAssisted",
2678
2678
  message: "是否启用 AI 引导模式?(通过 AI 帮助生成项目信息)",
2679
- default: false
2679
+ default: true
2680
2680
  },
2681
2681
  {
2682
2682
  type: "input",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cmyr-template-cli",
3
- "version": "1.45.1",
3
+ "version": "1.45.3",
4
4
  "description": "草梅友仁自制的项目模板创建器",
5
5
  "author": "CaoMeiYouRen",
6
6
  "license": "MIT",
@@ -102,24 +102,5 @@
102
102
  },
103
103
  "bugs": {
104
104
  "url": "https://github.com/CaoMeiYouRen/cmyr-template-cli/issues"
105
- },
106
- "pnpm": {
107
- "overrides": {
108
- "@semantic-release/github": "^12.0.0",
109
- "@semantic-release/npm": "^13.1.0"
110
- },
111
- "onlyBuiltDependencies": [
112
- "-",
113
- "3",
114
- "b",
115
- "e",
116
- "esbuild",
117
- "i",
118
- "l",
119
- "q",
120
- "r",
121
- "s",
122
- "t"
123
- ]
124
105
  }
125
106
  }
@@ -10,7 +10,7 @@ FROM nodejs AS builder
10
10
 
11
11
  WORKDIR /app
12
12
 
13
- COPY package.json .npmrc pnpm-lock.yaml /app/
13
+ COPY package.json pnpm-lock.yaml pnpm-workspace.yaml /app/
14
14
 
15
15
  RUN pnpm i --frozen-lockfile
16
16