Use minified Cesium in Node.js unless NODE_ENV=development #7514
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.
We know that removing debug code in Cesium can provide a substantial speed improvement, but previously the Node.js version would always use separate modules. This change allows Node.js to load the combined/minified version by default, for improved performance, and only loads the old
separate modules if NODE_ENV=development (which is the standard mechanism for enabling extra debugging checks in most node packages.
@shunter I was fumbling around with getting the minified version to load at all in node, my changes in
Source/main.js
were needed to get it to happen. As far as I can tell, this has no impact on browser-based usage; but can you take a look and let me know if there's a better approach here.Partially stems from discussion in #7508, but this is something we've tried in the past and I finally bit the bullet to figure it out.
CC @shehzan10