UNPKG

singletons

Version:

Helps create and manage families of singletons based on customizable conditions

14 lines (10 loc) 276 B
import gulp from 'gulp'; import {allSrcGlob, allBuildGlob} from './globs'; import {build} from './build'; import {test} from './test'; export const watch = done => { gulp.watch(allSrcGlob, build); gulp.watch(allBuildGlob, test); done(); }; gulp.task('watch', watch);