Add support for 'normal' sourceComments

This commit is contained in:
Tomas 2014-02-18 17:46:40 -03:00
parent 7748e84eb8
commit cb279fb9e2

View file

@ -20,7 +20,7 @@ module.exports = function (options) {
return cb();
}
if (opts.sourceComments === 'map') {
if (opts.sourceComments === 'map' || opts.sourceComments === 'normal') {
opts.file = file.path;
} else {
opts.data = file.contents.toString();
@ -84,4 +84,4 @@ function getSourcesContent (sources) {
}
return sourcesContent;
}
}