rulesync 0.15.0 → 0.16.0
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 +9 -1
- package/dist/index.mjs +9 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -569,7 +569,15 @@ var gitignoreCommand = async () => {
|
|
|
569
569
|
".clinerules/",
|
|
570
570
|
"CLAUDE.md",
|
|
571
571
|
".claude/memories/",
|
|
572
|
-
".roo/rules/"
|
|
572
|
+
".roo/rules/",
|
|
573
|
+
"# Support for --base-dir option (any depth)",
|
|
574
|
+
"**/.github/copilot-instructions.md",
|
|
575
|
+
"**/.github/instructions/",
|
|
576
|
+
"**/.cursor/rules/",
|
|
577
|
+
"**/.clinerules/",
|
|
578
|
+
"**/CLAUDE.md",
|
|
579
|
+
"**/.claude/memories/",
|
|
580
|
+
"**/.roo/rules/"
|
|
573
581
|
];
|
|
574
582
|
let gitignoreContent = "";
|
|
575
583
|
if ((0, import_node_fs.existsSync)(gitignorePath)) {
|
package/dist/index.mjs
CHANGED
|
@@ -546,7 +546,15 @@ var gitignoreCommand = async () => {
|
|
|
546
546
|
".clinerules/",
|
|
547
547
|
"CLAUDE.md",
|
|
548
548
|
".claude/memories/",
|
|
549
|
-
".roo/rules/"
|
|
549
|
+
".roo/rules/",
|
|
550
|
+
"# Support for --base-dir option (any depth)",
|
|
551
|
+
"**/.github/copilot-instructions.md",
|
|
552
|
+
"**/.github/instructions/",
|
|
553
|
+
"**/.cursor/rules/",
|
|
554
|
+
"**/.clinerules/",
|
|
555
|
+
"**/CLAUDE.md",
|
|
556
|
+
"**/.claude/memories/",
|
|
557
|
+
"**/.roo/rules/"
|
|
550
558
|
];
|
|
551
559
|
let gitignoreContent = "";
|
|
552
560
|
if (existsSync(gitignorePath)) {
|
package/package.json
CHANGED