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:
Executable
+8
@@ -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);
|
||||
});
|
||||
@@ -35,6 +35,7 @@
|
||||
"type": "commonjs",
|
||||
"bin": {
|
||||
"codewhale": "bin/codewhale.js",
|
||||
"codew": "bin/codew.js",
|
||||
"codewhale-tui": "bin/codewhale-tui.js"
|
||||
},
|
||||
"scripts": {
|
||||
|
||||
Reference in New Issue
Block a user