Comparing version 0.0.3 to 0.0.4
#!/usr/bin/env node | ||
const { spawnSync } = require("child_process"); | ||
const { spawn } = require("child_process"); | ||
const path = require("path"); | ||
spawnSync("../node_modules/.bin/bun", ["install"], { | ||
cwd: path.join(__dirname, "..", "bun"), | ||
stdio: "inherit", | ||
}); | ||
spawnSync( | ||
spawn( | ||
"../node_modules/.bin/bun", | ||
@@ -12,0 +7,0 @@ ["run", "fetchbook.ts", path.resolve(process.argv[2])], |
{ | ||
"name": "fetchbook", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"description": "Manage your HTTP requests", | ||
@@ -5,0 +5,0 @@ "author": "Alejandro Tardín <alejandro@tardin.com>", |
12576
184