Try this
/public/build/*
Hi to all, with elixir i compile javascript and less and after that, i use versioning:
mix.version([
"public/css/core.css",
"public/js/core.js"
]);
This file go in /public/build/ folder and sure i would like to ignore it, so in .gitignore i have added
/public/build
But, every time i run gulp watch those files will be modified (compiled) and when i commit, this file "come in there", but i have excluded them in .gitignore.
Its like after gulp watch, file in /public/build are no longer ignored.
Please or to participate in this conversation.