browserify / browserify/watchify
Different behavior of watchify and browserify
Open
- Dominant language
- JavaScript
- Stars
- 1.8k
- Forks
- 178
- PR merge metrics
- No merged PRs in 30d
Description
Is watchify not just a wrapper of browserify?
The two listed browserifyFunction don't handle the source the same. For example the "watchified"-function finds my imports and the non "watchified" not. Why these differences?
```
// Method one: Without watchify
browserifyFunction = browserify(browserifyOptions);
// Method two: With watchify
var options = assign(watchify.args, browserifyOptions);
browserifyFunction = watchify(browserify(options));
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.