@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.
package/dist/index.cjs CHANGED
@@ -4048,6 +4048,16 @@ function generateAIGuides(rootDir, options = {}) {
4048
4048
  cursorRules: 0,
4049
4049
  files: []
4050
4050
  };
4051
+ const readmeSrcPath = (0, import_node_path.join)(stubsDir, "README.md.stub");
4052
+ if ((0, import_node_fs.existsSync)(readmeSrcPath)) {
4053
+ const readmeDestDir = (0, import_node_path.resolve)(rootDir, ".claude/omnify");
4054
+ if (!(0, import_node_fs.existsSync)(readmeDestDir)) {
4055
+ (0, import_node_fs.mkdirSync)(readmeDestDir, { recursive: true });
4056
+ }
4057
+ const content = (0, import_node_fs.readFileSync)(readmeSrcPath, "utf-8");
4058
+ (0, import_node_fs.writeFileSync)((0, import_node_path.resolve)(readmeDestDir, "README.md"), content);
4059
+ result.files.push((0, import_node_path.resolve)(readmeDestDir, "README.md"));
4060
+ }
4051
4061
  const claudeSrcDir = (0, import_node_path.join)(stubsDir, "laravel");
4052
4062
  const claudeDestDir = (0, import_node_path.resolve)(rootDir, ".claude/omnify/guides/laravel");
4053
4063
  if ((0, import_node_fs.existsSync)(claudeSrcDir)) {