mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Edit bower install script based on comments. Close gh-1392.
This commit is contained in:
parent
e9a36f3a34
commit
44b9d87484
@ -1,5 +1,4 @@
|
|||||||
var installer,
|
var which = require( "which" ),
|
||||||
which = require( "which" ),
|
|
||||||
spawn = require( "child_process" ).spawn;
|
spawn = require( "child_process" ).spawn;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
@ -8,16 +7,7 @@ try {
|
|||||||
console.error( "Bower must be installed to build jQuery." );
|
console.error( "Bower must be installed to build jQuery." );
|
||||||
console.error( "Please install Bower by running the following command:" );
|
console.error( "Please install Bower by running the following command:" );
|
||||||
console.error( "npm install -g bower" );
|
console.error( "npm install -g bower" );
|
||||||
process.exit( 1 );
|
process.exit( 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
installer = spawn( "bower", [ "install" ] );
|
spawn( "bower", [ "install" ], { stdio: 'inherit' } );
|
||||||
installer.stdout.on( "data", function( data ) {
|
|
||||||
console.log( data );
|
|
||||||
});
|
|
||||||
installer.stderr.on( "data", function( data ) {
|
|
||||||
console.error( data );
|
|
||||||
});
|
|
||||||
installer.on( "close", function( code ) {
|
|
||||||
process.exit( code );
|
|
||||||
});
|
|
||||||
|
@ -42,7 +42,7 @@
|
|||||||
"which": "~1.0.5"
|
"which": "~1.0.5"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"install": "bower install",
|
"install": "node build/bower-install",
|
||||||
"test": "grunt"
|
"test": "grunt"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user