Pnpm workspaces
Skill a5c-ai/babysitter/library/specializations/web-development/skills/pnpm-workspaces
pnpm workspace patterns and dependency management.From its SKILL.md
npx -y skills add a5c-ai/babysitter --skill pnpm-workspacesAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
SKILL.md
1.1 KB, 197 tokens by cl100k_base, as published. Nobody here has run it
pnpm Workspaces Skill
Expert assistance for pnpm workspace management.
Capabilities
- Configure workspaces
- Manage dependencies
- Handle peer dependencies
- Publish packages
- Optimize node_modules
Configuration
# pnpm-workspace.yaml
packages:
- 'apps/*'
- 'packages/*'
// package.json
{
"name": "root",
"private": true,
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm -r --parallel dev"
}
}
Commands
# Install in workspace
pnpm add lodash --filter @repo/web
# Run in all packages
pnpm -r build
# Run in specific package
pnpm --filter @repo/ui build
Target Processes
- monorepo-setup
- dependency-management
- package-publishing
What ships with it: 1 file
345 B alongside SKILL.md
- README.md345 B