Update node engine to allow deploy of meteor 1.4.xxx apps. #69
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
When deploying a meteor 1.4.1 apps on heroku I got this error because the node engine was in version 0.10.40:
2016-11-13T00:31:57.762231+00:00 app[web.1]: 2016-11-13T00:31:57.762575+00:00 app[web.1]: assert.js:93 2016-11-13T00:31:57.762883+00:00 app[web.1]: throw new assert.AssertionError({ 2016-11-13T00:31:57.762886+00:00 app[web.1]: ^ 2016-11-13T00:31:57.765202+00:00 app[web.1]: AssertionError: "undefined" === "function" 2016-11-13T00:31:57.765204+00:00 app[web.1]: at wrapPathFunction (/app/build/bundle/programs/server/mini-files.js:77:10) 2016-11-13T00:31:57.765205+00:00 app[web.1]: at Object.<anonymous> (/app/build/bundle/programs/server/mini-files.js:108:24) 2016-11-13T00:31:57.765205+00:00 app[web.1]: at Module._compile (module.js:456:26) 2016-11-13T00:31:57.765206+00:00 app[web.1]: at Object.Module._extensions..js (module.js:474:10) 2016-11-13T00:31:57.765206+00:00 app[web.1]: at Module.load (module.js:356:32) 2016-11-13T00:31:57.765207+00:00 app[web.1]: at Function.Module._load (module.js:312:12) 2016-11-13T00:31:57.765208+00:00 app[web.1]: at Module.require (module.js:364:17) 2016-11-13T00:31:57.765208+00:00 app[web.1]: at require (module.js:380:17) 2016-11-13T00:31:57.765209+00:00 app[web.1]: at Object.<anonymous> (/app/build/bundle/programs/server/boot.js:9:13) 2016-11-13T00:31:57.765209+00:00 app[web.1]: at Module._compile (module.js:456:26) 2016-11-13T00:31:57.882538+00:00 heroku[web.1]: Process exited with status 8
After update the version of Node engines to 4.5.0 it works perfectly now.