grunt-exorcise
Advanced tools
Comparing version 1.0.0 to 1.0.1
{ | ||
"name": "grunt-exorcise", | ||
"description": "Move Browserify source maps to a separate file using Exorcist and Grunt", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"homepage": "https://github.com/mikefrey/grunt-exorcise", | ||
@@ -6,0 +6,0 @@ "author": { |
@@ -58,3 +58,7 @@ /* | ||
var ex = exorcist(dest, options.url, options.root) | ||
ex.on('missing-map', function(msg) { grunt.log.warn(msg); done(!options.strict) }) | ||
ex.on('missing-map', function(msg) { | ||
grunt.log.warn(msg); | ||
if (options.strict) | ||
done(false) | ||
}) | ||
@@ -61,0 +65,0 @@ stream.pipe(ex).pipe(write) |
14778
220