grunt-exorcise
Advanced tools
Comparing version 2.0.0 to 2.1.0
{ | ||
"name": "grunt-exorcise", | ||
"description": "Move Browserify source maps to a separate file using Exorcist and Grunt", | ||
"version": "2.0.0", | ||
"version": "2.1.0", | ||
"homepage": "https://github.com/mikefrey/grunt-exorcise", | ||
@@ -6,0 +6,0 @@ "author": { |
@@ -47,3 +47,3 @@ # grunt-exorcise | ||
#### options.url & options.root | ||
#### options.url & options.root & options.base | ||
Type: `String` | ||
@@ -50,0 +50,0 @@ |
@@ -27,2 +27,3 @@ /* | ||
root: null, | ||
base: null, | ||
strict: false | ||
@@ -58,3 +59,3 @@ }); | ||
// setup exorcist | ||
var ex = exorcist(dest, options.url, options.root) | ||
var ex = exorcist(dest, options.url, options.root, options.base) | ||
ex.on('missing-map', function(msg) { | ||
@@ -76,2 +77,1 @@ grunt.log.warn(msg); | ||
} | ||
14844
229