2015-05-24 13:03:43 +00:00
|
|
|
#!/usr/bin/env node
|
2018-01-12 20:36:10 +00:00
|
|
|
|
|
|
|
try {
|
|
|
|
eval('let __nodeTest = 123;');
|
|
|
|
} catch(e) {
|
|
|
|
if (e.name === 'SyntaxError') {
|
2018-09-07 16:37:18 +00:00
|
|
|
console.error("unsupported version of NodeJS. Make sure you are running nodejs 8.11.3 or above");
|
|
|
|
|
2018-01-12 20:36:10 +00:00
|
|
|
process.exit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-12 14:57:09 +00:00
|
|
|
var Cmd = require('../cmd/cmd');
|
|
|
|
var cli = new Cmd();
|
|
|
|
cli.process(process.argv);
|