Modify sourcemap paths of imported files relative to file.base instead of relative to file, if a different base is specified.

This commit is contained in:
Martin O'Connor 2015-07-30 12:33:15 -04:00
parent 7604019895
commit 9cb5f1cb5c
2 changed files with 16 additions and 3 deletions

View file

@ -57,6 +57,7 @@ var gulpSass = function gulpSass(options, sync) {
if (file.sourceMap) {
opts.sourceMap = file.path;
opts.omitSourceMapUrl = true;
opts.sourceMapContents = true;
}
//////////////////////////////
@ -65,7 +66,9 @@ var gulpSass = function gulpSass(options, sync) {
filePush = function filePush(sassObj) {
var sassMap,
sassMapFile,
sassFileSrc;
sassFileSrc,
sassFileSrcPath,
sourceFileIndex;
// Build Source Maps!
if (sassObj.map) {
@ -75,6 +78,16 @@ var gulpSass = function gulpSass(options, sync) {
sassMapFile = sassMap.file.replace('stdout', 'stdin');
// Grab the base file name that's being worked on
sassFileSrc = file.relative;
// Grab the path portion of the file that's being worked on
sassFileSrcPath = sassFileSrc.substring(0, sassFileSrc.lastIndexOf('/'));
if (sassFileSrcPath) {
//Prepend the path to all files in the sources array except the file that's being worked on
for (sourceFileIndex = 0; sourceFileIndex < sassMap.sources.length; sourceFileIndex++) {
if (sourceFileIndex !== sassMap.sources.indexOf(sassMapFile)) {
sassMap.sources[sourceFileIndex] = sassFileSrcPath + '/' + sassMap.sources[sourceFileIndex];
}
}
}
// Replace the stdin with the original file name
sassMap.sources[sassMap.sources.indexOf(sassMapFile)] = sassFileSrc;
// Replace the map file with the original file name (but new extension)

View file

@ -438,8 +438,8 @@ describe('gulp-sass -- sync compile', function() {
it('should work with gulp-sourcemaps and autoprefixer with different file.base', function(done) {
var expectedSources = [
'includes/_cats.scss',
'includes/_dogs.sass',
'scss/includes/_cats.scss',
'scss/includes/_dogs.sass',
'scss/inheritance.scss'
];