d48cda4081
CI / Test (ubuntu-latest, Node 18.x, bun) (push) Failing after 15m1s
CI / Test (ubuntu-latest, Node 18.x, npm) (push) Failing after 15m1s
CI / Test (ubuntu-latest, Node 18.x, pnpm) (push) Failing after 15m1s
CI / Test (ubuntu-latest, Node 18.x, yarn) (push) Failing after 15m1s
CI / Test (ubuntu-latest, Node 20.x, bun) (push) Failing after 17m13s
CI / Test (ubuntu-latest, Node 20.x, npm) (push) Failing after 18m42s
CI / Test (ubuntu-latest, Node 20.x, pnpm) (push) Failing after 15m0s
CI / Test (ubuntu-latest, Node 20.x, yarn) (push) Failing after 49m44s
CI / Test (ubuntu-latest, Node 22.x, bun) (push) Failing after 51m55s
CI / Test (ubuntu-latest, Node 22.x, pnpm) (push) Failing after 21m57s
CI / Test (ubuntu-latest, Node 22.x, npm) (push) Failing after 37m39s
CI / Test (ubuntu-latest, Node 22.x, yarn) (push) Failing after 34m7s
CI / Validate Components (push) Failing after 37m15s
CI / Python Tests (push) Failing after 10m1s
CI / Security Scan (push) Failing after 10m1s
CI / Lint (push) Failing after 17m12s
CI / Coverage (push) Failing after 20m19s
CI / Test (macos-latest, Node 18.x, bun) (push) Has been cancelled
CI / Test (macos-latest, Node 18.x, npm) (push) Has been cancelled
CI / Test (macos-latest, Node 18.x, pnpm) (push) Has been cancelled
CI / Test (macos-latest, Node 18.x, yarn) (push) Has been cancelled
CI / Test (windows-latest, Node 18.x, npm) (push) Has been cancelled
CI / Test (windows-latest, Node 18.x, pnpm) (push) Has been cancelled
CI / Test (windows-latest, Node 18.x, yarn) (push) Has been cancelled
CI / Test (macos-latest, Node 20.x, bun) (push) Has been cancelled
CI / Test (macos-latest, Node 20.x, npm) (push) Has been cancelled
CI / Test (macos-latest, Node 20.x, pnpm) (push) Has been cancelled
CI / Test (macos-latest, Node 20.x, yarn) (push) Has been cancelled
CI / Test (windows-latest, Node 20.x, npm) (push) Has been cancelled
CI / Test (windows-latest, Node 20.x, pnpm) (push) Has been cancelled
CI / Test (windows-latest, Node 20.x, yarn) (push) Has been cancelled
CI / Test (macos-latest, Node 22.x, bun) (push) Has been cancelled
CI / Test (macos-latest, Node 22.x, npm) (push) Has been cancelled
CI / Test (macos-latest, Node 22.x, pnpm) (push) Has been cancelled
CI / Test (macos-latest, Node 22.x, yarn) (push) Has been cancelled
CI / Test (windows-latest, Node 22.x, npm) (push) Has been cancelled
CI / Test (windows-latest, Node 22.x, pnpm) (push) Has been cancelled
CI / Test (windows-latest, Node 22.x, yarn) (push) Has been cancelled
81 lines
2.0 KiB
Markdown
81 lines
2.0 KiB
Markdown
---
|
||
description: 優先するパッケージマネージャーを設定(npm/pnpm/yarn/bun)
|
||
disable-model-invocation: true
|
||
---
|
||
|
||
# パッケージマネージャーの設定
|
||
|
||
このプロジェクトまたはグローバルで優先するパッケージマネージャーを設定します。
|
||
|
||
## 使用方法
|
||
|
||
```bash
|
||
# 現在のパッケージマネージャーを検出
|
||
node scripts/setup-package-manager.js --detect
|
||
|
||
# グローバル設定を指定
|
||
node scripts/setup-package-manager.js --global pnpm
|
||
|
||
# プロジェクト設定を指定
|
||
node scripts/setup-package-manager.js --project bun
|
||
|
||
# 利用可能なパッケージマネージャーをリスト表示
|
||
node scripts/setup-package-manager.js --list
|
||
```
|
||
|
||
## 検出の優先順位
|
||
|
||
使用するパッケージマネージャーを決定する際、以下の順序でチェックされます:
|
||
|
||
1. **環境変数**: `CLAUDE_PACKAGE_MANAGER`
|
||
2. **プロジェクト設定**: `.claude/package-manager.json`
|
||
3. **package.json**: `packageManager` フィールド
|
||
4. **ロックファイル**: package-lock.json、yarn.lock、pnpm-lock.yaml、bun.lockbの存在
|
||
5. **グローバル設定**: `~/.claude/package-manager.json`
|
||
6. **フォールバック**: 最初に利用可能なパッケージマネージャー(pnpm > bun > yarn > npm)
|
||
|
||
## 設定ファイル
|
||
|
||
### グローバル設定
|
||
```json
|
||
// ~/.claude/package-manager.json
|
||
{
|
||
"packageManager": "pnpm"
|
||
}
|
||
```
|
||
|
||
### プロジェクト設定
|
||
```json
|
||
// .claude/package-manager.json
|
||
{
|
||
"packageManager": "bun"
|
||
}
|
||
```
|
||
|
||
### package.json
|
||
```json
|
||
{
|
||
"packageManager": "pnpm@8.6.0"
|
||
}
|
||
```
|
||
|
||
## 環境変数
|
||
|
||
`CLAUDE_PACKAGE_MANAGER` を設定すると、他のすべての検出方法を上書きします:
|
||
|
||
```bash
|
||
# Windows (PowerShell)
|
||
$env:CLAUDE_PACKAGE_MANAGER = "pnpm"
|
||
|
||
# macOS/Linux
|
||
export CLAUDE_PACKAGE_MANAGER=pnpm
|
||
```
|
||
|
||
## 検出の実行
|
||
|
||
現在のパッケージマネージャー検出結果を確認するには、次を実行します:
|
||
|
||
```bash
|
||
node scripts/setup-package-manager.js --detect
|
||
```
|