Skip to content

Commit 30e38fa

Browse files
committed
[release] Drop CLI postinstall echo + remove misleading packageManager field
The CLI's postinstall was a harmless echo that pnpm 10+ flagged in the approve-builds prompt for every consumer install. Drop it. Root package.json declared pnpm as the package manager, but the repo actually uses Bun (bun.lock, CI uses `bun install`) — the field was misleading Corepack and downstream tooling. Remove it.
1 parent a78c1c6 commit 30e38fa

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
"build": "cd packages/appwrite-utils && bun run build && cd ../appwrite-utils-helpers && bun run build && cd ../appwrite-utils-cli && bun run build && cd ../appwrite-utils-mcp && bun run build",
1818
"deploy": "cd packages/appwrite-utils && bun run deploy && cd ../appwrite-utils-cli && bun run deploy"
1919
},
20-
"packageManager": "pnpm@10.11.1+sha512.e519b9f7639869dc8d5c3c5dfef73b3f091094b0a006d7317353c72b124e80e1afd429732e28705ad6bfa1ee879c1fce46c128ccebd3192101f43dd67c667912",
2120
"overrides": {
2221
"zod": "4.4.3"
2322
}

packages/appwrite-utils-cli/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@
3333
"test": "jest",
3434
"test:watch": "jest --watch",
3535
"test:coverage": "jest --coverage",
36-
"test:ci": "jest --ci --coverage --watchAll=false",
37-
"postinstall": "echo 'This package is intended for CLI use only and should not be added as a dependency in other projects.'"
36+
"test:ci": "jest --ci --coverage --watchAll=false"
3837
},
3938
"dependencies": {
4039
"@types/inquirer": "^9.0.8",

0 commit comments

Comments
 (0)