undertaker-common-tasks

Proof-of-concept custom registry that pre-defines tasks.
Example
var gulp = require('gulp');
var CommonTasks = require('undertaker-common-tasks');
gulp.registry(new CommonTasks({ port: 1337, buildDir: './dist' }));
gulp.task('default', gulp.series('clean', 'serve'));
API
CommonTasksRegistry([options])
Constructor for the registry. Pass an instance of this registry to gulp.registry.
options
port - the port to start a static webserver on.
buildDir - the output directory (clean deletes this directory).
License
MIT