Skip to content
This repository was archived by the owner on Sep 4, 2025. It is now read-only.

Commit 14ac35e

Browse files
flyingrobotsclaude
andcommitted
chore(monorepo): Add publish configs and shebang to CLI
- Add shebang to CLI entry point for direct execution - Add publishConfig with public access to all packages - Add files array to control what gets published - Standardize node engine to >=18 across all packages - Set sideEffects: false for tree-shaking optimization - Fix lint issues in CLI index file 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 7a9480d commit 14ac35e

File tree

5 files changed

+97
-74
lines changed

5 files changed

+97
-74
lines changed

starfleet/data-cli/package.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,14 @@
2929
"zod": "^4.1.5"
3030
},
3131
"engines": {
32-
"node": ">=20.0.0",
33-
"bun": ">=1.0.0"
32+
"node": ">=18"
33+
},
34+
"files": [
35+
"src"
36+
],
37+
"sideEffects": false,
38+
"publishConfig": {
39+
"access": "public"
3440
},
3541
"keywords": [
3642
"supabase",

0 commit comments

Comments
 (0)