Arslan Ali
Arslan Ali

Reputation: 448

I want to downgrade the serverless version from 2.41.2 to 2.35.0

By mistake I had installed the higher version of serverless on my pc. Now I want to downgrade my serverless framework version from v2.41.2 to v2.35.0 due to some project requirements.

What I had tried to do:

I uninstalled the current serverless framework with npm uninstall -g serverless.

Then ran this command npm install -g [email protected]

But when I ran this command serverless --version it is still showing the version 2.41.2 on my pc.

Upvotes: 2

Views: 12954

Answers (1)

Aaron Stuyvenberg
Aaron Stuyvenberg

Reputation: 3777

In addition to being installed globally via NPM, serverless can also be a project dependency. If you're working in a node project, ensure that serverless isn't listed in the package.json file or in the package-lock.json file.

If so, run npm uninstall serverless and then npm install -d [email protected], to install the framework in the project at the correct version.

Upvotes: 7

Related Questions