This commit is contained in:
Alan Mosko
2023-01-17 11:29:10 -03:00
parent c398aa3ca4
commit 05dd53e2ce
12 changed files with 217 additions and 106 deletions

View File

@@ -285,7 +285,7 @@ async function findAppModules() {
const indentation = moduleIndentationMap[info.type]?.indentation
let typeName = unnestName(info.type)
if(indentation !== parentName && indentation) {
typeName = `${indentation.replace(/\$/g, '.')}.${typeName}`
typeName = `${indentation.replaceAll('$', '.')}.${typeName}`
}
// if(info.enumValues) {