gen-jhipster
Version:
Spring Boot + Angular/React/Vue in one handy generator
13 lines (12 loc) • 491 B
JavaScript
/**
* Removes server files that where generated in previous JHipster versions and therefore
* need to be removed.
*/
export default function cleanupTask({ application }) {
if (this.isJhipsterVersionLessThan('7.8.1')) {
this.removeFile(`${application.javaPackageSrcDir}AbstractNeo4jIT.java`);
}
if (this.isJhipsterVersionLessThan('7.10.0')) {
this.removeFile(`${application.javaPackageTestDir}config/TestContainersSpringContextCustomizerFactory.java`);
}
}