Mikeumus
Mikeumus

Reputation: 3878

Meteor/ReactionCommerce - Error: Cannot find module './browsers'

After a rc pull and then a rc up, meteor run gives:

Error: Cannot find module './browsers'

I'm running in a Google Compute Engine Ubuntu 16:

meteor list-platforms shows:

browser                                       
server

I thought to maybe remove and add the browser platform back but meteor remove-platform browser gives:

While removing platforms:
error: browser: cannot remove platform in this version of Meteor

Upvotes: 1

Views: 222

Answers (1)

Walter G.
Walter G.

Reputation: 155

It looks like the error comes from the latest version of meteor. I went a little further ahead and asked on the Reaction forum and was able to get it solved:

Happened on osx as well as debian, after update to meteor 1.4.2

Looks that you have to downgrade the meteor version:

meteor update --release [email protected]
reaction reset

Answer 'Yes' on the delete node_modules.

Package version are identical for both versions.

This is the link to the post on the reaction site.

Upvotes: 2

Related Questions