How to remove a Yeoman generator

后端 未结 4 1805
臣服心动
臣服心动 2021-02-03 17:48

I accidentally installed a generator that I don\'t want.
I can\'t find any method to remove it.
What should I do to accomplish this?

4条回答
  •  庸人自扰
    2021-02-03 18:38

    Generators are just normal npm modules, so you can remove it with

    npm uninstall -g generator-[nameOfGenerator]

提交回复
热议问题