UNPKG

generator-begcode

Version:

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

50 lines (49 loc) 2.11 kB
import { readdir } from 'fs/promises'; import { basename, join } from 'path'; import { loadFile } from 'mem-fs'; import { Minimatch } from 'minimatch'; import { transform } from 'p-transform'; import { GENERATOR_JHIPSTER } from '../../generator-constants.js'; export const updateApplicationEntitiesTransform = ({ destinationPath, throwOnMissingConfig = true, }) => { let yoRcFileInMemory; const entities = []; const yoRcFilePath = join(destinationPath, '.yo-rc.json'); const entitiesMatcher = new Minimatch(`${destinationPath}/.jhipster/*.json`); return transform(file => { if (file.path === yoRcFilePath) { yoRcFileInMemory = file; return undefined; } if (entitiesMatcher.match(file.path)) { entities.push(basename(file.path).replace('.json', '')); } return file; }, async function () { try { entities.push(...(await readdir(join(destinationPath, '.jhipster'))).map(file => file.replace('.json', ''))); } catch { } if (entities.length > 0) { const yoRcFile = loadFile(yoRcFilePath); const yoRcFileContents = yoRcFileInMemory?.contents ?? yoRcFile.contents; if (yoRcFileContents) { const contents = JSON.parse(yoRcFileContents.toString()); if (contents[GENERATOR_JHIPSTER]) { contents[GENERATOR_JHIPSTER].entities = [...new Set([...(contents[GENERATOR_JHIPSTER].entities ?? []), ...entities])]; yoRcFile.contents = Buffer.from(JSON.stringify(contents, null, 2)); yoRcFileInMemory = yoRcFile; } else if (throwOnMissingConfig) { throw new Error(`File ${yoRcFile.path} is not a valid JHipster configuration file`); } } else if (throwOnMissingConfig) { throw new Error(`File ${yoRcFile.path} has no contents`); } } if (yoRcFileInMemory) { this.push(yoRcFileInMemory); } }); };