Creating a new App on previous Meteor version

My global Meteor version is 1.4.1.1
Is there any way i can create a new meteor app using METEOR@1.3.5.1 ?

I tried creating a new app and doing meteor upgrade --version 1.3.5.1, but it’s throwing a ton of errors like

While selecting package versions:
error: No version of mongo satisfies all
constraints: @1.1.12, @=1.1.9_1
Constraints on package “mongo”: …etc…etc

Try:

meteor create --release 1.3.5.1 your-app-name
1 Like

Damn it, i tried something similar before and it didn’t work, but now it did.

@hwillson as always, thank you!!