diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2016-01-27 13:02:58 +0100 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2016-01-27 13:02:58 +0100 |
commit | abb571580719328cc5431068bb5519b212f0f043 (patch) | |
tree | c6b6e4be147b9cc86bccbdd85479a11059a1ca6b /build | |
parent | 67c96a59f5af9e8404b3f904028e1c730d647498 (diff) | |
download | jquery-abb571580719328cc5431068bb5519b212f0f043.tar.gz jquery-abb571580719328cc5431068bb5519b212f0f043.zip |
Build: switch from win-spawn to cross-spawn
The win-spawn package is deprecated.
Refs gh-2877
Refs 67c96a59f5af9e8404b3f904028e1c730d647498
Diffstat (limited to 'build')
-rw-r--r-- | build/tasks/lib/spawn_test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/tasks/lib/spawn_test.js b/build/tasks/lib/spawn_test.js index 6c4596a3d..e633755ee 100644 --- a/build/tasks/lib/spawn_test.js +++ b/build/tasks/lib/spawn_test.js @@ -7,7 +7,7 @@ // See the comment in ../node_smoke_tests.js for more information. module.exports = function spawnTest( done ) { var testPaths = [].slice.call( arguments, 1 ), - spawn = require( "win-spawn" ); + spawn = require( "cross-spawn" ); spawn( "node", testPaths, { stdio: "inherit" } ) .on( "close", function( code ) { |