gulp-extract-sourcemap
Advanced tools
Comparing version 0.0.3 to 0.0.4
@@ -16,5 +16,5 @@ var through = require('through2'); | ||
return through.obj(function (file, enc, cb) { | ||
var sMap = ''; | ||
if (!file.isNull()) { | ||
var src = file.contents.toString('utf8'); | ||
var sMap = ''; | ||
var sMapFileName = opts.sourceMappingFileName || ( path.basename(file.path) + '.map' ); | ||
@@ -80,2 +80,3 @@ | ||
this.push(file); | ||
this.emit('postextract', sMap); | ||
cb(); | ||
@@ -82,0 +83,0 @@ }); |
{ | ||
"name": "gulp-extract-sourcemap", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"description": "Gulp Task to strips an inline source into its own file and updates the original file to reference the new external source map", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6511
67