Skip to content

Instantly share code, notes, and snippets.

@stompweb
Created October 31, 2015 18:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stompweb/0a3f80be8b1e5fe7c844 to your computer and use it in GitHub Desktop.
Save stompweb/0a3f80be8b1e5fe7c844 to your computer and use it in GitHub Desktop.
gulpfile
gulp.task('editor-style', function() {
return gulp
.src('css/editor-style.less')
.pipe(less())
.pipe(autoprefixer('last 2 version', "> 1%", "ie 8"))
.pipe(minify())
.pipe(gulp.dest('css'))
.pipe(notify({ message: 'Editor Style Compiled'}));
});
gulp.task('default', function() {
gulp.watch('./css/style-guide.less', ['editor-style']);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment