gen-jhipster
Version:
Spring Boot + Angular/React/Vue in one handy generator
12 lines (11 loc) • 467 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.4.2')) {
this.removeFile(`${application.javaPackageTestDir}cucumber.properties`);
this.removeFile(`${application.srcTestJava}features/gitkeep`);
this.removeFile(`${application.srcTestJava}features/user/user.feature`);
}
}