@famgia/omnify-cli 2.0.13 → 2.0.15

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.
package/dist/index.cjs CHANGED
@@ -378,7 +378,8 @@ async function resolveConfig(userConfig, configPath) {
378
378
  lockFilePath: userConfig.lockFilePath ?? ".omnify.lock",
379
379
  discovery,
380
380
  ...userConfig.locale && { locale: userConfig.locale },
381
- ...allSchemaPaths.length > 0 && { additionalSchemaPaths: allSchemaPaths }
381
+ ...allSchemaPaths.length > 0 && { additionalSchemaPaths: allSchemaPaths },
382
+ ...userConfig.aiGuides && { aiGuides: userConfig.aiGuides }
382
383
  };
383
384
  return result;
384
385
  }