Compare commits

..

No commits in common. "7b014d0203e30d50161cbc95fbe0361c15262030" and "649796b0784dfae17ad953511b37d32d6ca66dce" have entirely different histories.

2 changed files with 1 additions and 13 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@because/shout",
"version": "0.0.7",
"version": "0.0.6",
"description": "shell output tester",
"module": "src/index.ts",
"type": "module",

View File

@ -264,16 +264,4 @@ $ true
[0]`)
})
program
.command("upgrade")
.description("Upgrade to the latest version")
.action(async () => {
const result = await Bun.spawn(["bun", "install", "-g", "@because/shout@latest"], {
stdin: "inherit",
stdout: "inherit",
stderr: "inherit",
}).exited
process.exit(result)
})
program.parse()