UNPKG

242 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]);
16
17gulp.task('demo-data', [
18 'demo-data-standardization',
19 'demo-data-list'
20]);