Rig some more cli things
This commit is contained in:
Родитель
bdde4b8999
Коммит
3fb2fcbdfe
|
@ -5,7 +5,7 @@
|
||||||
"main": "lib/main.js",
|
"main": "lib/main.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"compile": "babel --stage 0 -d lib/ src/ && babel --stage 0 -d test-dist/ test/",
|
"compile": "babel --stage 0 -d lib/ src/ && babel --stage 0 -d test-dist/ test/",
|
||||||
"prepublish": "npm run compile",
|
"prepublish": "npm run compile && chmod +x ./lib/cli.js",
|
||||||
"test": "npm run compile && mocha test-dist/*"
|
"test": "npm run compile && mocha test-dist/*"
|
||||||
},
|
},
|
||||||
"bin": {
|
"bin": {
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
#!/usr/bin/env node
|
||||||
|
|
||||||
require('babel/polyfill');
|
require('babel/polyfill');
|
||||||
|
|
||||||
import {installNodeHeaders, rebuildNativeModules} from './main.js';
|
import {installNodeHeaders, rebuildNativeModules} from './main.js';
|
||||||
|
@ -42,6 +44,7 @@ installNodeHeaders(argv.v)
|
||||||
.then(() => rebuildNativeModules(argv.v, argv.m))
|
.then(() => rebuildNativeModules(argv.v, argv.m))
|
||||||
.then(() => process.exit(0))
|
.then(() => process.exit(0))
|
||||||
.catch((e) => {
|
.catch((e) => {
|
||||||
console.error(e);
|
console.error(e.message);
|
||||||
|
console.error(e.stack);
|
||||||
process.exit(-1);
|
process.exit(-1);
|
||||||
});
|
});
|
||||||
|
|
Загрузка…
Ссылка в новой задаче