1
0
mirror of https://github.com/kognise/water.css.git synced 2025-08-10 15:14:34 +02:00

Moved sourcemaps to external file to keep size low

This commit is contained in:
Kyle Pollard
2019-04-07 17:53:32 -07:00
parent b500878f5a
commit c302231819
5 changed files with 5 additions and 3 deletions

View File

@@ -23,7 +23,7 @@ function style() {
.pipe(sass())
.on("error", sass.logError)
.pipe(postcss([autoprefixer(), cssnano()]))
.pipe(sourcemaps.write())
.pipe(sourcemaps.write('.'))
.pipe(gulp.dest(paths.styles.dest))
.pipe(browserSync.stream())
);