i have lots of JavaScript files in different folders and want to add them to a master.js together. I have the following project structure:
/dist/js/master.js <-- Output file
/src/bootstrap-untouched/js <-- Bootstrap Plugins (alert.js, button.js etc.)
/src/js/plugins.js
/src/js/script.js
It would be good if I could activate and deactivate the individual bootstrap plugins. I do not want to use Grunt and Gulp. I use only the NPM. I think that would have to somehow work with browserify and uglifyjs.