UNPKG

pip-webui

Version:

HTML5 UI for LOB applications

16 lines (13 loc) 470 B
var gulp = require('gulp'); // Add standard tasks require('pip-webui-tasks').all(); // Define build tasks gulp.task('build', ['build-dev', 'build-prod']); gulp.task('rebuild', ['build-dev']); gulp.task('clean', ['build-clean']); gulp.task('watch', ['build-watch']); gulp.task('jshint', ['test-jshint']); gulp.task('launch', ['samples-launch']); gulp.task('publish', ['samples-publish']); // Set default task gulp.task('default', ['build']);