How to update the JHipster project after updating JHipster generator?

后端 未结 7 2084
栀梦
栀梦 2020-12-29 08:37

I updated my JHipster installation as per this page by running the command

npm update -g generator-jhipster

But to update my application I

相关标签:
7条回答
  • 2020-12-29 09:23

    Following [jhipster releases] (https://jhipster.github.io/2015/05/31/jhipster-release-2.14.2.html): How to upgrade

    Update your version of JHipster with:

    npm update -g generator-jhipster
    

    And then you can update your project when you run again

    yo jhipster
    

    You can also update your entities by running again the entity sub-generator, for example if your entity is named Foo

    yo jhipster:entity Foo 
    
    0 讨论(0)
提交回复
热议问题