Skip to content

Commit b705fca

Browse files
committed
Fixed incorrect minified CSS output path
1 parent 5e725b2 commit b705fca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gulpfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ gulp.task( 'styles', function() {
3535
.pipe( gulp.dest( './dist/css' ) )
3636
.pipe( filter( '**/*.css' ) )
3737
.pipe( rename( { suffix: '.min' } ) )
38-
.pipe( minifycss( { maxLineLen: 10 } ) )
38+
.pipe( minifycss() )
3939
.pipe( lineec() )
40-
.pipe( gulp.dest( './dist' ) )
40+
.pipe( gulp.dest( './dist/css' ) )
4141
.pipe( notify({ message: 'TASK: "styles" completed', onLast: true }) );
4242
});
4343

0 commit comments

Comments
 (0)