This commit is contained in:
2022-06-08 10:38:30 -05:00
parent ac80b81129
commit 6b0b604008
6 changed files with 9 additions and 6 deletions

View File

@@ -44,7 +44,7 @@ async function compileProject(
},
})
} catch (e) {
console.error(name, e)
console.error(name, e) //TODO better error log
error = (e as BuildFailure).message
}
@@ -97,4 +97,6 @@ readdirSync(DistBase).forEach(file => unlinkSync(`${DistBase}/${file}`))
}
updateReadmeFile(scriptMeta)
console.log('\nFinished Compiling\n')
})()