Let's say I have core1.js, core2.js and wrapper.js.
How do I config NPM to generate two targets:
- core.js which includes core1 and core2
- all.js which includes everything
The scenario is that I need publish all.js for the public; and core.js internally for another team and another project. Thanks!