UNPKG

162 BJavaScriptView Raw
1const gulp = require('gulp');
2
3gulp.task('default', [
4 'watch',
5 'dev'
6]);
7
8gulp.task('lint', [
9 'eslint',
10 'htmlhint',
11]);
12
13gulp.task('doc', [
14 'jsdoc'
15]);