js: Pass grunt-browserify errors on
This commit is contained in:
parent
7b71e64553
commit
0167986b98
@ -26,7 +26,7 @@ module.exports = function (grunt) {
|
||||
},
|
||||
options: {
|
||||
postBundleCB: function (err, src, next) {
|
||||
next(null, grunt.template.process("<%= meta.banner %>") + src);
|
||||
next(err, grunt.template.process("<%= meta.banner %>") + src);
|
||||
},
|
||||
standalone: "Mopidy"
|
||||
}
|
||||
@ -45,7 +45,7 @@ module.exports = function (grunt) {
|
||||
},
|
||||
options: {
|
||||
postBundleCB: function (err, src, next) {
|
||||
next(null, grunt.template.process("<%= meta.banner %>") + src);
|
||||
next(err, grunt.template.process("<%= meta.banner %>") + src);
|
||||
},
|
||||
standalone: "Mopidy"
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user