Reputation: 6871
When deploying meteor app to my server, I first meteor build
it, then untar the bundle on the server.
Next I do
cd server && npm install
But the npm packages included by meteorhacks:npm are not built? How can we rebuild them?
Upvotes: 2
Views: 579
Reputation: 64342
I just tried this from a clean checkout of a project that uses npm:
tar.gz
file in another directory.tar.gz
file you should have a directory called bundle
.bundle/programs/server/npm/npm-container/node_modules/
cd bundle/programs/server/ && npm install
Upvotes: 3