-
Notifications
You must be signed in to change notification settings - Fork 59
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
Is this necessary with Meteor 1.4 anymore? #225
Comments
IMO it's totally up to the end user to decide if this is still needed. I think so because while it does look like it's only setting up the |
I see...I'm guessing that |
It looks like back in the original version it was actually doing a lot more work, like building the list of dependencies manually. |
We dropped it while waiting for 1.4 compatibility & taking a closer look at what it was doing relative to the overhead. It only took us a few hours to write a simple script which makes the same modifications to While I think there is still a place for a tool like this post-build, the way it's written at the moment (which probably dates back to when it was performing more complex tasks) doesn't justify the value it is providing. |
It looks like the code in Master is basically just calling
meteor build
and tweaking itspackage.json
a bit.I thought it was adding
package.json
entries for everything inprograms/server/npm
but it looks like that's not the case.meteor build
is sufficient for 1.4 projects right?The text was updated successfully, but these errors were encountered: