File tree Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ 'use strict' ;
2+ var args = process . env . CI === 'true' ? [ 'rebuild' , '--debug' ] : [ 'rebuild' ] ;
3+ var child = require ( 'child_process' ) . spawn ( 'node-gyp' , args , {
4+ encoding : 'utf8' ,
5+ stdio : 'inherit' ,
6+ cwd : require ( 'path' ) . dirname ( __dirname )
7+ } ) ;
8+
9+ child . on ( 'exit' , function ( code ) {
10+ process . exit ( code ) ;
11+ } ) ;
12+
Original file line number Diff line number Diff line change 2222 "sqlite3" : " ^3.1.4"
2323 },
2424 "scripts" : {
25- "install" : " if [ \" $CI \" = \" true \" ]; then node-gyp rebuild --debug; else node-gyp rebuild; fi; " ,
25+ "install" : " node install " ,
2626 "test" : " $(npm bin)/mocha --bail --timeout 5000 --slow 5000" ,
2727 "pretest" : " rm -r ./temp/ || true && mkdir ./temp/" ,
2828 "posttest" : " rm -r ./temp/" ,
You can’t perform that action at this time.
0 commit comments