I start use babel to transform and minify my .js files but i don't want that the generated files be tracked on git.
I tried add the following code on git ignore, but it is not working:
**/*es5.js
**/*es5.min.js
Can any one tell me what i'm doing wrong?