Skip to content

Instantly share code, notes, and snippets.

@JetLua
Created June 15, 2017 04:14
Show Gist options
  • Save JetLua/23fc3b15649f5634be7cd74a39bf495f to your computer and use it in GitHub Desktop.
Save JetLua/23fc3b15649f5634be7cd74a39bf495f to your computer and use it in GitHub Desktop.
编译`bootstrap`用的。
const
gulp = require('gulp'),
autoprefixer = require('gulp-autoprefixer'),
sass = require('gulp-sass'),
minify = require('gulp-minify-css')
gulp.task('default', function() {
gulp.src('bootstrap.scss')
.pipe(sass())
.pipe(autoprefixer())
.pipe(minify())
.pipe(gulp.dest('dist/css'))
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment