-
Notifications
You must be signed in to change notification settings - Fork 371
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Should I not .gitignore the node_modules directory? #93
Comments
That is unfortunately the expected behavior with the current version of meteord. It's because This has been discussed recently and I personally think we should be adding If you want what the changes described above, feel free to use my repo ( Or you can just use the image I built from that by adding this to your Dockerfile... FROM jshimko/meteord:onbuild ( And to answer your original question... no, you definitely don't want to commit |
Great! Thanks for the reply! I'll definitely be using your image for my project. Is it backwards compatible with meteor version pre-1.3? |
Well, it depends. The only functionality change is the Now that you mention it, I could've made that conditional so it only runs when a package.json is present. Give me a few and I'll update it. |
All set. Now it'll only run |
Thanks for the quick replies! This is great! |
I just started using meteor 1.3 and I built an app here https://github.com/krishamoud/asteroidbelt which is gitignoreing
node_modules
and thesettings.json
file. When I run meteord locally with thenode_modules
already installed then everything is fine and it builds the same as it always has. When I do a remote build it fails and tells me that there are unresolved imports. Specificallyreact
.Is this expected behavior?
The text was updated successfully, but these errors were encountered: