Use an earlier version of jHipster

I have different projects using jHipster (which is an absolutely awesome project !!!). My problem is that I have already made important changes to some projects created with an earlier version, and I do not want to upgrade to the latest version.

Is there any way to install the version when using the generator?

I am looking for something like this:

yo jhispter:entity foo -v 1.2.0 

when I want to use version 1.2.0 to create an object.

Is there something similar? If not, how to manage different versions of the generator?

+4
source share
1 answer

After further research on this, it looks like you need to install an older version to switch the version.

npm install -g generator-jhipster@1.2.0
+9
source

All Articles