Recently, meteor added the support of .meteorignore files. I am trying to understand how these works.
I want to ignore a npm module to be considered by the meteor builder in a meteor package. So I have created a .meteorignore file on the package and written:
node_modules/eslint
But I can see eslint copied within the .meteor/local/isopacks folder of such package and available on the app to be imported. If I just write node_modules, it ignores all dependencies as expected. But, are we able to ignore specifically some folders or files?
