Skip to content

Commit f5e2817

Browse files
CybotTMclaude
andcommitted
fix(catalog): switch pnpm to auto installation method
Changed pnpm from package_manager to auto method with npm_package support to fix incorrect apt-based upgrade attempts for npm-installed pnpm. Before: install_method: "package_manager" (defaulted to apt) After: install_method: "auto" with npm_package: "pnpm" This enables the reconciliation system to detect npm installation and use the correct update method (npm install -g pnpm). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent bcf3ad5 commit f5e2817

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

catalog/pnpm.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
{
22
"name": "pnpm",
3-
"install_method": "package_manager",
3+
"install_method": "auto",
44
"description": "Fast, disk space efficient Node.js package manager",
55
"homepage": "https://pnpm.io/",
6+
"npm_package": "pnpm",
67
"binary_name": "pnpm",
78
"packages": {
89
"apt": "pnpm",
910
"brew": "pnpm",
1011
"dnf": "pnpm",
1112
"pacman": "pnpm"
1213
},
13-
"notes": "Can also be installed via npm: npm install -g pnpm"
14+
"notes": "Can be installed via npm (npm install -g pnpm), apt, or brew"
1415
}

0 commit comments

Comments
 (0)