A helper to add tasks to gulp.
Install with:
npm install @owstack/ows-buildand use and require in your gulp file:
var gulp = require('gulp');
var owsTasks = require('@owstack/ows-build');
owsTasks('ows', 'submodule');
gulp.task('default', ['lint', 'test', 'browser', 'coverage']);- There's no default task to allow for each submodule to set up their own configuration
- If the module is node-only, avoid adding the browser tasks with:
var owsTasks = require('@owstack/ows-build');
owsTasks('ows', 'submodule', {skipBrowsers: true});Code released under the MIT license.
Copyright 2017 Open Wallet Stack.