@minus-ai/create-skill 0.1.0-beta.4 → 0.1.0-beta.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@minus-ai/create-skill",
3
- "version": "0.1.0-beta.4",
3
+ "version": "0.1.0-beta.6",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "create-skill": "./index.mjs"
@@ -1,7 +1,15 @@
1
1
  packages:
2
2
  - frontend
3
3
 
4
- # pnpm 10.16+/11 onlyBuiltDependencies 从 package.json 迁到这里。
5
- # 不声明的话 pnpm 会忽略依赖的构建脚本并硬报错 ERR_PNPM_IGNORED_BUILDS。
4
+ # pnpm 11 minimumReleaseAge 门槛会拒装"发布太近"的版本,导致内部包刚发布的新版被压回旧版。
5
+ # @minus-ai/* 是平台内部高频迭代包,豁免门槛以保证新建项目总能拿到最新版。
6
+ minimumReleaseAgeExclude:
7
+ - '@minus-ai/*'
8
+
9
+ # pnpm 11.4 起用 allowBuilds 审批构建脚本;只写 onlyBuiltDependencies 会被忽略并报 ERR_PNPM_IGNORED_BUILDS(install exit 1)。
10
+ allowBuilds:
11
+ esbuild: true
12
+
13
+ # 兼容 pnpm 10.16+ 的旧机制,与 allowBuilds 共存无害。
6
14
  onlyBuiltDependencies:
7
15
  - esbuild