Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/bobcob7/dot-tools --skill yarn명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | yarn |
| description | Yarn commands for package management (v1 and v4/berry) |
| argument-hint | [command or question] |
| allowed-tools | Bash, Read |
Help with Yarn based on $ARGUMENTS.
# Initialize
yarn init
yarn init -y
# Install
yarn # Install from yarn.lock
yarn add lodash # Add dependency
yarn add -D typescript # Add dev dependency
yarn add lodash@4.17.21 # Specific version
# Remove
yarn remove lodash
# Update
yarn upgrade # Update all
yarn upgrade lodash # Update specific
yarn outdated # Check for updates
yarn run build
yarn build # "run" is optional
yarn test
yarn dev
# Enable modern yarn
corepack enable
yarn set version stable
# Install
yarn # Install dependencies
yarn add lodash
yarn add -D typescript
# Update
yarn up # Interactive upgrade
yarn up lodash # Upgrade specific
# Remove
yarn remove lodash
# Run in workspace
yarn workspace @myorg/web build
# Run in all workspaces
yarn workspaces foreach run build
# Add to workspace
yarn workspace @myorg/web add lodash
# Import plugins
yarn plugin import typescript
yarn plugin import workspace-tools
# List plugins
yarn plugin list
yarn why lodash # Why is package installed
yarn list # List dependencies
yarn info lodash # Package info
yarn cache clean # v1
yarn cache clear # v4
# .yarnrc.yml (v4)
nodeLinker: node-modules # Use node_modules
enableGlobalCache: true
# Or use PnP (Plug'n'Play)
nodeLinker: pnp
{
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "vitest",
"lint": "eslint src/"
}
}
| Action | npm | yarn |
|---|---|---|
| Install all | npm install | yarn |
| Add package | npm install pkg | yarn add pkg |
| Add dev | npm install -D pkg | yarn add -D pkg |
| Remove | npm uninstall pkg | yarn remove pkg |
| Run script | npm run cmd | yarn cmd |
| Clean install | npm ci | yarn --frozen-lockfile |