Compare commits

..

No commits in common. "3d0d40ab1a2bac594b0de68a6f6d97bd84424ba8" and "81dcac4097ffbba922752156bdfa3cb1d74b874a" have entirely different histories.

2 changed files with 1 additions and 13 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@because/sandlot", "name": "@because/sandlot",
"version": "0.0.20", "version": "0.0.19",
"description": "Sandboxed, branch-based development with Claude", "description": "Sandboxed, branch-based development with Claude",
"type": "module", "type": "module",
"bin": { "bin": {

View File

@ -183,18 +183,6 @@ program
registerVmCommands(program) registerVmCommands(program)
program
.command("upgrade")
.description("Upgrade sandlot to the latest version")
.action(async () => {
const result = await Bun.spawn(["bun", "install", "-g", "@because/sandlot@latest"], {
stdin: "inherit",
stdout: "inherit",
stderr: "inherit",
}).exited
process.exit(result)
})
program program
.command("version") .command("version")
.description("Print the version number") .description("Print the version number")