I want to lock the files that are being compiled with gulp.
So basically if i have app.js, which is generated from a compilation of different .js files, how do i prevent people from writing code inside app.js ?
my simple gulp config is something like this :
elixir(function (mix) {
mix.less('app.less');
mix.scripts([
"main.js",
"utilities.js",
"searchbox.js",
"cart.js",
"merchant-login.js",
"customer-login.js",
"subscribe.js",
"validators.js"
], "public/js/app.js");
});
p.s: Im using elixir.