My Meteor 1.5 builds are getting stuck on exactly the same point on both Windows and Linux (ubuntu and amazon linux). To reproduce this I’ve created a new meteor project and issued the following steps:
Init project called ‘src’
meteor create src
export MONGO_URL and ROOT_URL
URL is valid and mongo url is a working mongo database.
Running the build
cd src
npm install --production
# Put into parent folder
meteor build .. --directory
cd ../bundle/programs/server && npm install
Running the app
cd ../../ && node main.js
The unbuild version of the src app is working as expected with the MONGO_URL. But running the above command gives me nothing. This is what I see on both Windows and Linux:
I’ve kept it running for over 2 hours to be sure. Can anyone tell me if i’m either doing something wrong, or that its a bug and it needs to be reported?