@famgia/omnify-laravel 0.0.119 → 0.0.121

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
@@ -4327,6 +4327,13 @@ function generateAIGuides(rootDir, options = {}) {
4327
4327
  result.claudeGuides = files.length;
4328
4328
  result.files.push(...files);
4329
4329
  }
4330
+ const reactSrcDir = (0, import_node_path.join)(stubsDir, "react");
4331
+ const reactDestDir = (0, import_node_path.resolve)(rootDir, ".claude/omnify/guides/react");
4332
+ if ((0, import_node_fs.existsSync)(reactSrcDir)) {
4333
+ const files = copyStubs(reactSrcDir, reactDestDir);
4334
+ result.claudeGuides += files.length;
4335
+ result.files.push(...files);
4336
+ }
4330
4337
  const claudeRulesSrcDir = (0, import_node_path.join)(stubsDir, "claude-rules");
4331
4338
  const claudeRulesDestDir = (0, import_node_path.resolve)(rootDir, ".claude/rules/omnify");
4332
4339
  if ((0, import_node_fs.existsSync)(claudeRulesSrcDir)) {