UNPKG

packrat-ui

Version:

realtime bin-packing layout library

22 lines (18 loc) 471 B
var gulp = require('./gulp')([ 'lint', 'browserify', 'stylus', 'copy', 'serve' ]); var livereload = require('gulp-livereload'); gulp.task('watch', function() { livereload.listen({ quiet: true }); gulp.watch('src/js/**/*', ['lint', 'browserify', 'copy']); gulp.watch('src/css/**', ['stylus']); gulp.watch('src/**/*', ['copy']); }); gulp.task('build', ['lint', 'browserify', 'stylus', 'copy']); gulp.task('default', ['build', 'watch', 'serve']);