From 075865c364fcb056f743d5fc299ee43af30b8791 Mon Sep 17 00:00:00 2001 From: Marley Date: Sat, 17 Jun 2023 08:26:07 -0700 Subject: [PATCH] supernova: add gulp-sourcemaps, rename css --- supernova/gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supernova/gulpfile.js b/supernova/gulpfile.js index 7a9e3d9..a3ab085 100644 --- a/supernova/gulpfile.js +++ b/supernova/gulpfile.js @@ -64,10 +64,10 @@ function css() { const stream = src(cssFiles) .pipe(sourcemaps.init()) .pipe(require('gulp-postcss')(postcssPlugins)) - .pipe(sourcemaps.write()) .pipe(rename(path => { path.basename = 'style' })) + .pipe(sourcemaps.write()) .pipe(dest('supernova')) if (browserSync.active) {