@famgia/omnify-laravel 0.0.89 → 0.0.90

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.
@@ -3995,6 +3995,16 @@ function generateAIGuides(rootDir, options = {}) {
3995
3995
  cursorRules: 0,
3996
3996
  files: []
3997
3997
  };
3998
+ const readmeSrcPath = join(stubsDir, "README.md.stub");
3999
+ if (existsSync(readmeSrcPath)) {
4000
+ const readmeDestDir = resolve(rootDir, ".claude/omnify");
4001
+ if (!existsSync(readmeDestDir)) {
4002
+ mkdirSync(readmeDestDir, { recursive: true });
4003
+ }
4004
+ const content = readFileSync(readmeSrcPath, "utf-8");
4005
+ writeFileSync(resolve(readmeDestDir, "README.md"), content);
4006
+ result.files.push(resolve(readmeDestDir, "README.md"));
4007
+ }
3998
4008
  const claudeSrcDir = join(stubsDir, "laravel");
3999
4009
  const claudeDestDir = resolve(rootDir, ".claude/omnify/guides/laravel");
4000
4010
  if (existsSync(claudeSrcDir)) {
@@ -4546,4 +4556,4 @@ export {
4546
4556
  shouldGenerateAIGuides,
4547
4557
  laravelPlugin
4548
4558
  };
4549
- //# sourceMappingURL=chunk-V7LWJ6OM.js.map
4559
+ //# sourceMappingURL=chunk-2QSKZS63.js.map