@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
- // Check if content already exists
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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zodic/shared",
3
- "version": "0.0.144",
3
+ "version": "0.0.145",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "publishConfig": {