wemake-vue-template icon indicating copy to clipboard operation
wemake-vue-template copied to clipboard

does not work with node v14 ?

Open vesper8 opened this issue 4 years ago • 1 comments

I am getting an error trying to do anything such as yarn dev because I'm using node v14 and this line in the package.json

  "engines": {
    "node": "12.14",
  },

Basically forces you to use node v12 ?

I get this error

The engine "node" is incompatible with this module. Expected version "12.14". Got "14.4.0"

Tried removing that line but then I get a bunch more errors

vesper8 avatar Jun 18 '20 08:06 vesper8

It should work! You need to update engines in package.json and FROM in Dockerfile. And probably reinstall everything in node_modules with rm -rf node_modules && npm i

Please, post tracebacks if this does not work for you.

sobolevn avatar Jun 18 '20 09:06 sobolevn