I’m just generally concerned about the size of the app I release, which also implies the code which is only lying around on the server.
When running meteor build
on a project I just created using meteor create
, I end up with a node-js project with a size of 118mb - quite impressive for something clean.
The biggest of those folders is programs/server/npm/node_modules/meteor/babel-compiler
. I guess these are the npm packages needed for the meteor package babel-compiler
. Are those packages really needed here? Don’t we already compile everything before bundling it up?
Since the last version, typescript has become a dependency of this package, which I think really isn’t needed in this because all TS files are already compiled, aren’t they?