UNPKG

pip-webui

Version:

HTML5 UI for LOB applications

17 lines (14 loc) 512 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']); gulp.task('cordova', ['cordova-build']); // Set default task gulp.task('default', ['build']);