obourgain
obourgain

Reputation: 9336

How to uninstall generator-jhipster

I've installed jhipster-generator version 5.1.0 using yarn.

Today, I need to uninstall this version, in order to downgrade from version 5.1.0 to version 5.0.1.

When trying:

yarn global remove jhispter

I receive an error message:

yarn global v1.7.0
[1/2] 🗑  Removing module [email protected]...
error This module isn't specified in a manifest.
info Visit https://yarnpkg.com/en/docs/cli/global for documentation about this command.

What is the correct way to uninstall generator-jhipster?

Upvotes: 6

Views: 13576

Answers (3)

user1419261
user1419261

Reputation: 944

To uninstall jhipster use as below. It worked for me.

npm remove generator-jhipster

Upvotes: 0

panser
panser

Reputation: 2129

npm remove -g generator-jhipster

Upvotes: 8

Gaël Marziou
Gaël Marziou

Reputation: 16294

You used wrong name, it's generator-jhipster not jhipster

yarn global remove generator-jhipster

Upvotes: 7

Related Questions