Reputation: 3360
Latest meteor version 1.4.0.1. All of a sudden it got stuck on Processing files with ecmascript (for...
step. Killing and restarting didn't work, neither did rebooting.
What I tried: meteor reset
, rebooting, deleting build and cache folders in project's .meteor folder, deleting and reinstalling npm packages. Removing .meteor in my home folder and reinstalling meteor from scratch. Removing packages, both meteor and npm, that I no longer use.
This is something in my project because creating a new meteor project and running it works fine. The project uses React and has a number of components.
Any ideas on how to fix this?
Upvotes: 1
Views: 756
Reputation: 1
I ran into a similar (but different) problem. I am trying to use plotly.js with meteor. I downloaded the plotly.js file and put it into my client/lib directory. Now, when I try to run meteor, I get the same error being described above. I thought plotly.js worked with meteor? If I remove plotly.js (or rename it to a non js file), meteor works fine...so the issue is clearly with plotly.js
Upvotes: 0
Reputation: 3360
I solved my issue by process of elimination. I saved a .js file in my client/js/lib folder while working on a feature. At some point later I accidentally saved my meteor application's home page in the same folder! Guess I was too tired. Found the folder and then saw the html and a subfolder with meteor-generated scripts. Removed them and everything clicked. My exact steps:
package.json
and.meteor/packages
files run meteor npm install and then run theps
command, kill
-9 [PID] where PID is the process id with the high CPU time.) and then restarted meteor againI removed them and everything works now. Good luck!
Upvotes: 1
Reputation: 318
You can try running meteor reset command and then running the project again.
Upvotes: 0