Tuesday 24 November 2015

How to use Gulp with Browserify to build JavaScript bundles?

I want to use Gulp to build bundles of JavaScript files.For example I have the following JS files in my project (numbers indicate dependency priority)// A npm module// A npm module// A npm moduleI want gulp to process this source file and create a final distribution file (bundle) ensuring that all dependencies (includes) are merged together in the right order in a single file so I can include it my HTML and all dependencies will be available to it.How do I specify dependencies in my source bundle files? How do I build distribution?

Submitted November 24, 2015 at 04:41PM by AmirStar90

No comments:

Post a Comment