@se-studio/project-build 1.0.167 → 1.0.168
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 +6 -0
- package/README.md +12 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -75,13 +75,22 @@ See [`packages/skills/README.md`](../skills/README.md) for frontmatter rules.
|
|
|
75
75
|
npx skills add @se-studio/skills
|
|
76
76
|
```
|
|
77
77
|
|
|
78
|
-
Add to your project’s `package.json` to auto-
|
|
78
|
+
Add to your project’s `package.json` to auto-sync on `pnpm install` (skips on CI/Vercel):
|
|
79
79
|
|
|
80
80
|
```json
|
|
81
|
-
"devDependencies": {
|
|
82
|
-
"
|
|
81
|
+
"devDependencies": {
|
|
82
|
+
"@se-studio/skills": "^1.0.0",
|
|
83
|
+
"skills-npm": "^1.1.1"
|
|
84
|
+
},
|
|
85
|
+
"scripts": {
|
|
86
|
+
"prepare": "node -e \"if(process.env.VERCEL||process.env.CI)process.exit(0);process.exit(1)\" || (husky && skills-npm --yes && pnpm skills:update)",
|
|
87
|
+
"skills:sync": "bash scripts/sync-skills.sh",
|
|
88
|
+
"skills:update": "npx -y skills@latest update -y"
|
|
89
|
+
}
|
|
83
90
|
```
|
|
84
91
|
|
|
92
|
+
Commit `skills-lock.json` after the first `pnpm skills:sync`. Use `pnpm skills:sync` manually when adding or updating third-party skills (e.g. Vercel packs) from GitHub.
|
|
93
|
+
|
|
85
94
|
## API Reference
|
|
86
95
|
|
|
87
96
|
### Main Exports
|