In our environment we are using underscore. We found that the Winterfell version of lodash was overriding the global _ variable causing all kind of (not so) fun bugs.
To avoid that I added the .noConflict() method call to all places where lodash is included.
We tried using modular lodash, which we failed because Winterfell uses chaining. We also tried including it as an external dependency making it agnostic of both _ libraries which also failed because Winterfell uses methods that are not compatible with underscore.
In our environment we are using underscore. We found that the Winterfell version of lodash was overriding the global _ variable causing all kind of (not so) fun bugs. To avoid that I added the .noConflict() method call to all places where lodash is included.
We tried using modular lodash, which we failed because Winterfell uses chaining. We also tried including it as an external dependency making it agnostic of both _ libraries which also failed because Winterfell uses methods that are not compatible with underscore.