feat(v0.8.44): npm codew alias binary wrapper

npm install -g codewhale now also provides the codew command.
Calls run('codewhale') — same download-and-forward pattern as
the existing codewhale.js and codewhale-tui.js wrappers.
This commit is contained in:
Hunter Bown
2026-05-24 15:09:49 -05:00
parent b46e0edebe
commit 95356714c8
2 changed files with 9 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/usr/bin/env node
const { run } = require("../scripts/run");
run("codewhale").catch((error) => {
console.error("Failed to start codewhale:", error.message);
process.exit(1);
});
+1
View File
@@ -35,6 +35,7 @@
"type": "commonjs",
"bin": {
"codewhale": "bin/codewhale.js",
"codew": "bin/codew.js",
"codewhale-tui": "bin/codewhale-tui.js"
},
"scripts": {