Skip to content

Commit e0e0a24

Browse files
committed
Build: Update dependencies, remove vulnerabilities
As of version 2.4.1 the qunitjs package is now at qunit and that required a change to the index.js unit test file. jQuery ESLint settings now require marking unused args with "_"
1 parent 5b2cf74 commit e0e0a24

File tree

6 files changed

+3694
-2614
lines changed

6 files changed

+3694
-2614
lines changed

build/release.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,9 @@ function initialize( next ) {
122122

123123
function checkGitStatus( next ) {
124124
child.execFile( "git", [ "status" ], function( error, stdout ) {
125+
if ( error ) {
126+
throw error;
127+
}
125128
var onBranch = ( ( stdout || "" ).match( /On branch (\S+)/ ) || [] )[ 1 ];
126129
if ( onBranch !== branch ) {
127130
die( "Branches don't match: Wanted " + branch + ", got " + onBranch );

0 commit comments

Comments
 (0)