Reputation: 41
I am trying to build a Meteor project by calling meteor
in my terminal in the project directory. It keeps getting stuck on
=> Started proxy.
=> Started MongoDB.
Loading plugin `compileLessBatch` fro... /
I've built and ran the same project before, this never happened. I also just installed Ionic and its packages and dependencies, could it be the culprit?
Upvotes: 4
Views: 821
Reputation: 523
I upgraded my app from 1.2 to 1.3. mquandelle:bower stopped working for that version. I didn't know that and installed it anyway and downloaded pdfMake from bower. When I realized bower was deprecated for 1.3, I remove the package and deleted the folder for pdfMake in .meteor.
As I needed pdfMake I copied the build directory from that app in my project's root. When I run my meteor app, this problem started showing.
There were four files from pdfMake. When I deleted two of them, this specific problem disappeared. They were big js files that were not needed because there existed the "min.js" version of those files.
Upvotes: 0
Reputation: 391
Delete mobile folders (for example 'android') and run 'meteor' again
Upvotes: 2
Reputation: 4692
I've already confronted such issues and asked a question here. Therefore noone can explicitly know what's happening on your side. But my suggestions:
Try to remove some packages as follows from your versions file:
- [email protected]
- [email protected]
If it doesnt work try to comment out below line from your packages file:
#ecmascript # Enable ECMAScript2015+ syntax in app code
Don't forget these files are included in your .meteor
directory.
Upvotes: 0