UNPKG

421 BJavaScriptView Raw
1'use strict';
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6var EXIT_CODES = exports.EXIT_CODES = {
7 SHX_ERROR: 27, // https://xkcd.com/221/
8 CMD_FAILED: 1, // TODO: Once shelljs/shelljs#269 lands, use `error()`
9 SUCCESS: 0
10};
11
12var CMD_BLACKLIST = exports.CMD_BLACKLIST = ['cd', 'pushd', 'popd', 'dirs', 'set', 'exit', 'exec', 'ShellString'];
13
14var CONFIG_FILE = exports.CONFIG_FILE = '.shxrc.json';
\No newline at end of file