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