browser tests now also loads sourcemaps from disk

This commit is contained in:
Wesley Wigham 2016-06-20 16:07:15 -07:00
parent 9619e3a840
commit 9d10f7c3fb
No known key found for this signature in database
GPG Key ID: D59F87F60C5400C9

View File

@ -783,7 +783,7 @@ gulp.task("browserify", "Runs browserify on run.js to produce a file suitable fo
next(undefined, file);
});
}))
.pipe(sourcemaps.write("."))
.pipe(sourcemaps.write(".", {includeContent: false, sourceRoot: "../../"}))
.pipe(gulp.dest("."));
});