My question is as follows, I have a .js file in my code that contains a bunch of variables that only change their value.
Example:
var teste = "http://desenvolvimento.com.br";
var teste = "http://producao.com.br";
After running the gulp I would like to pass some parameters.
Example:
gulp producao
//var teste = "http://desenvolvimento.com.br";
var teste = "http://producao.com.br";
Basically when running the gulp production parameter or gulp development it automatically commented on the variables that have the different production notes.