0
My question is the following, I have a file . js in my code that contains a lot of variables that only changes 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 parameter.
Example:
gulp producao
//var teste = "http://desenvolvimento.com.br";
var teste = "http://producao.com.br";
Basically when running the parameter Gulp production or Gulp development he automatically commented on the variables that have the different production notes.