onemon
Version:
Run a npm script as a deamon, once
51 lines (50 loc) • 1.88 kB
JavaScript
;
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const meow_1 = __importDefault(require("meow"));
const chalk_1 = __importDefault(require("chalk"));
const _1 = __importDefault(require("."));
const getCommand_1 = require("./getCommand");
const cli = meow_1.default(`
Usage
$ onemon <command> [deamon-script] <script>
List of commands
- kill |> Kill the deamon
- start (default) |> start the deamon and launch script with deamon attached
`, {
flags: {
silent: {
type: 'boolean',
alias: 's',
},
wait: {
type: 'boolean',
alias: 'w',
},
},
});
if (cli.input.length === 0) {
cli.showHelp(0);
}
const main = () => __awaiter(void 0, void 0, void 0, function* () {
const command = getCommand_1.getCommand(cli.input);
yield _1.default(command, cli.flags);
});
main()
.catch((err) => {
console.error(chalk_1.default.yellow(err.message));
process.exit(1);
});
//# sourceMappingURL=cli.js.map