UNPKG

gen-jhipster

Version:

Spring Boot + Angular/React/Vue in one handy generator

13 lines (12 loc) 394 B
/** * Removes server files that where generated in previous JHipster versions and therefore * need to be removed. */ export default function cleanupOldServerFilesTask() { if (this.isJhipsterVersionLessThan('5.0.0')) { this.removeFile('gradle/mapstruct.gradle'); } if (this.isJhipsterVersionLessThan('5.2.2')) { this.removeFile('gradle/liquibase.gradle'); } }