@leeovery/claude-technical-workflows 2.0.4 → 2.0.6

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.
Files changed (2) hide show
  1. package/README.md +4 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -48,10 +48,12 @@ pnpm approve-builds # approve when prompted
48
48
  pnpm install # triggers postinstall
49
49
  ```
50
50
 
51
- **Removal (pnpm):**
51
+ ### Removal
52
+
53
+ Due to bugs in npm 7+ ([issue #3042](https://github.com/npm/cli/issues/3042)) and pnpm ([issue #3276](https://github.com/pnpm/pnpm/issues/3276)), preuninstall hooks don't run reliably. Remove files manually first:
52
54
 
53
55
  ```bash
54
- npx claude-manager remove @leeovery/claude-technical-workflows && pnpm remove @leeovery/claude-technical-workflows
56
+ npx claude-manager remove @leeovery/claude-technical-workflows && npm rm @leeovery/claude-technical-workflows
55
57
  ```
56
58
 
57
59
  The [Claude Manager](https://github.com/leeovery/claude-manager) copies skills to `.claude/` automatically.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leeovery/claude-technical-workflows",
3
- "version": "2.0.4",
3
+ "version": "2.0.6",
4
4
  "description": "Technical workflow skills & commands for Claude Code",
5
5
  "license": "MIT",
6
6
  "author": "Lee Overy <me@leeovery.com>",
@@ -11,7 +11,7 @@
11
11
  "type": "module",
12
12
  "scripts": {
13
13
  "postinstall": "claude-manager add",
14
- "preuninstall": "npx --package=@leeovery/claude-manager claude-manager remove"
14
+ "preuninstall": "npx --yes --package=@leeovery/claude-manager claude-manager remove"
15
15
  },
16
16
  "dependencies": {
17
17
  "@leeovery/claude-manager": "^2.0.0"