Skip to content

Commit 01ac538

Browse files
author
Jordalgo
committed
update theme gulpfile
Change-Id: I37bf2afafe84b4cc9089517e03d28638020fadfe
1 parent a8f86a8 commit 01ac538

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

wp-content/themes/default/gulpfile.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ gulp.task('less', function() {
2020
paths: [ path.join(__dirname, 'less', 'includes') ]
2121
}))
2222
.on('error', onError)
23-
.pipe(gulp.dest('library/build/css/'))
23+
.pipe(gulp.dest('library/build/'))
2424
;
2525
});
2626

2727
gulp.task('minify-css', ['less'], function() {
2828
return gulp.src(['library/build/style.css', 'library/build/style-base.css'])
2929
.pipe(plugins.minifyCss({ processImport: false }))
30-
.pipe(gulp.dest('library/build/css/'))
30+
.pipe(gulp.dest('library/build/'))
3131
;
3232
});
3333

0 commit comments

Comments
 (0)