Nuxt.js: Can't install older version of nuxt (v2.3.1)

Created on 28 Aug 2020  路  2Comments  路  Source: nuxt/nuxt.js

whats done:

deleted node_modules folder, package-lock

put inside package.json

"dependencies": {
"nuxt": "2.3.1"
},

after npm install, i run npm run dev

terminal says Nuxt v2.14.4

and also inside node_modues/@nuxt/builder is getting installed with version 2.14.4

bug-report

All 2 comments

Looks like a consequence of the way the dependencies were specified in that version. (They are no longer specified in that way.) See https://unpkg.com/browse/[email protected]/package.json

That can't be changed as the package is immutable but you could specify your own version of each of the packages depended on by the Nuxt parent package, and that should prevent a newer version from being installed.

Looks like a consequence of the way the dependencies were specified in that version. (They are no longer specified in that way.) See https://unpkg.com/browse/[email protected]/package.json

That can't be changed as the package is immutable but you could specify your own version of each of the packages depended on by the Nuxt parent package, and that should prevent a newer version from being installed.

Thank you for reply, that helped to figure out my problem.

_Holy moly i'm lucky with this one_ 馃槖

Was this page helpful?
0 / 5 - 0 ratings

Related issues

uptownhr picture uptownhr  路  3Comments

bimohxh picture bimohxh  路  3Comments

vadimsg picture vadimsg  路  3Comments

surmon-china picture surmon-china  路  3Comments

maicong picture maicong  路  3Comments