Shailesh
Shailesh

Reputation: 89

Meteor: How to bypass update/upgrade

Is there a way to bypass the auto update feature of Meteor? I'm stuck with

   Downloading [email protected]_3...        \

When I try to run existing project, or create a new one or simply run "meteor list",..It starts updating, downloads [email protected]_3... which completes 100% and then countdown vanishes & it remains like that with the spindle rotating.

I tried waiting like mentioned at this link However, nothing happens even after an hour.

Upvotes: 3

Views: 806

Answers (3)

Ankur Soni
Ankur Soni

Reputation: 6018

Considering latest Meteor 1.6 you can use below commands for your best needs

  1. meteor create . --release 1.5 --full to create a scaffolded app.

  2. meteor create . --release 1.5 --bare to create an empty app.

NOTE: Instead of --release 1.5 you could use your version which actually exists.

Upvotes: 0

saad
saad

Reputation: 1364

Go to project > .meteor > release

Change the meteor version to the current one that is installed on your system.

Consider my scenario:

1) System have the Meteor version 1.4.3.1 installed
2) Downloaded the todos(meteor project), developed on version 1.4.2.1
3) On running it gives similar problem
4) Changed the release version to 1.4.3.1
5) Run with command 'meteor'

Upvotes: 0

Hitesh Siddhapura
Hitesh Siddhapura

Reputation: 1392

I've same error. I resolve by following steps, please try

Now, you can create new Meteor app.

Upvotes: 0

Related Questions