@zodic/shared 0.0.144 → 0.0.145
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -235,8 +235,7 @@ export class ConceptService {
|
|
|
235
235
|
);
|
|
236
236
|
}
|
|
237
237
|
|
|
238
|
-
|
|
239
|
-
if (!override && conceptEN.content && conceptPT.content) {
|
|
238
|
+
if (!override && conceptEN.content?.length > 0 && conceptPT.content?.length > 0) {
|
|
240
239
|
console.log(`⚡ Content already exists for ${conceptSlug}, skipping.`);
|
|
241
240
|
return; // ✅ Skip regeneration
|
|
242
241
|
}
|