Create project with --vue skeleton gives errors

When I start with creating a new vue project with: meteor create projectName --vue the installer shows these errors and I’m not sure if this is serious because the skeleton app does work after the install is complete.

Using vue skeleton
=> Errors while creating your project         
                                              
While selecting package versions:
error: Conflict: Constraint webapp@1.13.1 is not satisfied by webapp 2.0.5.
Constraints on package "webapp":
* webapp@~2.0.5 <- top level
* webapp@2.0.0 <- meteor-base 1.5.2
* webapp@2.0.0 <- routepolicy 1.1.2 <- ddp-server 3.1.0 <- ddp 1.4.2 <- allow-deny 2.1.0 <- mongo 2.1.0
* webapp@2.0.0 <- routepolicy 1.1.2 <- ddp-server 3.1.0 <- ddp 1.4.2 <- meteor-base 1.5.2
* webapp@2.0.0 <- routepolicy 1.1.2 <- webapp 2.0.5 <- meteor-base 1.5.2
* webapp@2.0.4 <- ddp-server 3.1.0 <- ddp 1.4.2 <- allow-deny 2.1.0 <- mongo 2.1.0
* webapp@2.0.4 <- ddp-server 3.1.0 <- ddp 1.4.2 <- meteor-base 1.5.2
* webapp@2.0.0 <- autoupdate 2.0.0 <- hot-code-push 1.0.5 <- hot-module-replacement 0.5.4
* webapp@2.0.4 <- mongo 2.1.0
* webapp@1.13.1 <- vite:bundler 0.1.9

Conflict: Constraint caching-compiler@1.2.2 is not satisfied by caching-compiler 2.0.1.
Constraints on package "caching-compiler":
* caching-compiler@~2.0.1 <- top level
* caching-compiler@2.0.0 <- static-html 1.4.0
* caching-compiler@2.0.1 <- static-html-tools 1.0.0 <- static-html 1.4.0
* caching-compiler@1.2.2 <- vite:bundler 0.1.9

Something has happened while creating your app using git clone.
Will use cached version of skeletons.
Error message:  undefined

Which Meteor command are you using? Are you creating your app with Meteor 3 or 2?

We’ve reviewed this and improved the default Vue skeleton for Meteor 3 in version 3.1.2. Try running:
meteor create myvueapp --release 3.1.2

If the issue persists, reinstall Meteor globally:
rm -rf ~/.meteor and npx meteor

Let me know if that helps

1 Like

Thanks Nacho, using the --release works prefect.

Just to inform you: I’m using Meteor 3, and
running:

meteor create myvueapp --release 3.1.2

uses the react skeleton, and works fine.

Running:

meteor create myvueapp --vue --release 3.1.2

uses the vue skeleton and works without problems!!

But running:

meteor create myvueapp --vue

uses the vue skeleton but still generates the same errors.