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) {