Bundle faucet

This commit is contained in:
Simon Warta
2022-04-12 14:36:19 +02:00
parent b8db0b3255
commit 0f138e87ca
4 changed files with 34 additions and 7 deletions
+6
View File
@@ -0,0 +1,6 @@
#!/usr/bin/env node
const path = require("path");
// attempt to call in main file....
const faucet = require(path.join(__dirname, "..", "dist", "node", "cli.js"));
faucet.main(process.argv.slice(2));