0.9.0 • Published 4 years ago

neobitcoin-build v0.9.0

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

neobitcoin-build

A helper to add tasks to gulp.

Getting started

Install with:

npm install neobitcoin-build

and use and require in your gulp file:

var gulp = require('gulp');
var neobitcoinTasks = require('neobitcoin-build');

neobitcoinTasks('submodule');
gulp.task('default', ['lint', 'test', 'browser', 'coverage']);

Notes

  • 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 neobitcoinTasks = require('neobitcoin-build');
neobitcoinTasks('submodule', {skipBrowsers: true});