mirror of
https://github.com/samsonjs/spirit-tracker.git
synced 2026-03-25 09:25:51 +00:00
10 lines
199 B
JavaScript
Executable file
10 lines
199 B
JavaScript
Executable file
#!/usr/bin/env node
|
|
"use strict";
|
|
|
|
const { main } = require("../src/main");
|
|
|
|
main().catch((e) => {
|
|
const msg = e && e.stack ? e.stack : String(e);
|
|
console.error(msg);
|
|
process.exitCode = 1;
|
|
});
|