@famgia/omnify-laravel 0.0.119 → 0.0.120

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.js CHANGED
@@ -31,7 +31,7 @@ import {
31
31
  shouldGenerateAIGuides,
32
32
  toColumnName,
33
33
  toTableName
34
- } from "./chunk-7I6UNXOD.js";
34
+ } from "./chunk-NMX3TLZT.js";
35
35
  export {
36
36
  extractManyToManyRelations,
37
37
  extractMorphToManyRelations,
package/dist/plugin.cjs CHANGED
@@ -4118,6 +4118,13 @@ function generateAIGuides(rootDir, options = {}) {
4118
4118
  result.claudeGuides = files.length;
4119
4119
  result.files.push(...files);
4120
4120
  }
4121
+ const reactSrcDir = (0, import_node_path.join)(stubsDir, "react");
4122
+ const reactDestDir = (0, import_node_path.resolve)(rootDir, ".claude/omnify/guides/react");
4123
+ if ((0, import_node_fs.existsSync)(reactSrcDir)) {
4124
+ const files = copyStubs(reactSrcDir, reactDestDir);
4125
+ result.claudeGuides += files.length;
4126
+ result.files.push(...files);
4127
+ }
4121
4128
  const claudeRulesSrcDir = (0, import_node_path.join)(stubsDir, "claude-rules");
4122
4129
  const claudeRulesDestDir = (0, import_node_path.resolve)(rootDir, ".claude/rules/omnify");
4123
4130
  if ((0, import_node_fs.existsSync)(claudeRulesSrcDir)) {