This commit is contained in:
Alan Mosko
2023-01-11 23:58:29 -03:00
parent 5041be776e
commit 78f04d8714
18 changed files with 405 additions and 253 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.replaceAll('$', '.')}.${typeName}`
typeName = `${indentation.replace(/\$/g, '.')}.${typeName}`
}
// if(info.enumValues) {