Skip to content

Instantly share code, notes, and snippets.

@takuan-osho
Created July 27, 2015 14:51
Show Gist options
  • Save takuan-osho/82a5ef67537ffccd0079 to your computer and use it in GitHub Desktop.
Save takuan-osho/82a5ef67537ffccd0079 to your computer and use it in GitHub Desktop.
slimのビルドをgulpのslim pluginでやった場合のgulpfile
var gulp = require("gulp");
var slim = require("gulp-slim");
gulp.task('slim', function(){
gulp.src("./*.slim")
.pipe(slim({
pretty: true
}))
.pipe(gulp.dest("./output/"));
});
gulp.task('watch', function() {
gulp.watch('./*.slim', ['slim']);
});
gulp.task('default', ['watch']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment