UNPKG

510 BMarkdownView Raw
1Modifying `js-builder` and testing it locally with another package (before `npm publish`)
2can be a little "tricky" when that other package also uses `gulp` for building. `npm link`ing
3the `js-builder` package into the other package is not going to be enough.
4
5For that reason, I (Tom Fennelly) have a local `npm link`ed copy of `gulp`. Then, I `npm link gulp`
6in both `js-builder` and the package I'm using to test.
7
8(__Note__: this assumes you already have `gulp` installed globally i.e. npm install -g gulp)