bitcore-build-zcash/README.md

42 lines
975 B
Markdown
Raw Permalink Normal View History

2016-08-27 04:11:02 -07:00
# bitcore-build-zcash
2015-01-16 06:32:15 -08:00
A helper to add tasks to gulp.
## Getting started
Install with:
```sh
2016-08-27 04:11:02 -07:00
npm install bitcore-build-zcash
2015-01-16 06:32:15 -08:00
```
and use and require in your gulp file:
```javascript
var gulp = require('gulp');
2016-08-27 04:11:02 -07:00
var bitcoreTasks = require('bitcore-build-zcash');
2015-01-16 06:32:15 -08:00
bitcoreTasks('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:
```javascript
2016-08-27 04:11:02 -07:00
var bitcoreTasks = require('bitcore-build-zcash');
2015-01-16 07:30:22 -08:00
bitcoreTasks('submodule', {skipBrowsers: true});
2015-01-16 06:32:15 -08:00
```
## Contributing
See [CONTRIBUTING.md](https://github.com/bitpay/bitcore) on the main bitcore repo for information about how to contribute.
## License
Code released under [the MIT license](https://github.com/bitpay/bitcore/blob/master/LICENSE).
Copyright 2015 BitPay, Inc. Bitcore is a trademark maintained by BitPay, Inc.