bump 0.13.0 + separated cli build into separate file

This commit is contained in:
dswbx
2025-05-27 16:53:49 +02:00
parent 5a693c0370
commit af6cb0c8f0
6 changed files with 36 additions and 8 deletions

View File

@@ -20,7 +20,6 @@ export class JoinBuilder {
// @todo: returns multiple on manytomany (edit: so?)
static getJoinedEntityNames(em: EntityManager<any>, entity: Entity, joins: string[]): string[] {
console.log("join", joins);
return joins.flatMap((join) => {
const relation = em.relationOf(entity.name, join);
if (!relation) {