Update scripts

This commit is contained in:
Michael Jackson
2019-07-09 16:38:32 -07:00
parent b67e58d985
commit 49c55af59d
4 changed files with 81 additions and 103 deletions

View File

@ -1,12 +0,0 @@
const util = require('util');
const chalk = require('chalk');
function die(why) {
const message = typeof why === 'string' ? why : util.inspect(why);
console.error(chalk.red(message));
process.exit(1);
}
module.exports = {
die
};