rulesync 7.26.0 → 7.27.1
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/README.md +1 -1
- package/dist/{chunk-MMC5VK27.js → chunk-CJXBVA4E.js} +1564 -969
- package/dist/cli/index.cjs +1862 -1267
- package/dist/cli/index.js +8 -8
- package/dist/index.cjs +1598 -1002
- package/dist/index.d.cts +24 -20
- package/dist/index.d.ts +24 -20
- package/dist/index.js +4 -3
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -71,7 +71,7 @@ import {
|
|
|
71
71
|
stringifyFrontmatter,
|
|
72
72
|
toPosixPath,
|
|
73
73
|
writeFileContent
|
|
74
|
-
} from "../chunk-
|
|
74
|
+
} from "../chunk-CJXBVA4E.js";
|
|
75
75
|
|
|
76
76
|
// src/cli/index.ts
|
|
77
77
|
import { Command } from "commander";
|
|
@@ -1244,7 +1244,7 @@ var GITIGNORE_ENTRY_REGISTRY = [
|
|
|
1244
1244
|
// Gemini CLI
|
|
1245
1245
|
{ target: "geminicli", feature: "rules", entry: "**/GEMINI.md" },
|
|
1246
1246
|
{ target: "geminicli", feature: "commands", entry: "**/.gemini/commands/" },
|
|
1247
|
-
{ target: "geminicli", feature: "subagents", entry: "**/.gemini/
|
|
1247
|
+
{ target: "geminicli", feature: "subagents", entry: "**/.gemini/agents/" },
|
|
1248
1248
|
{ target: "geminicli", feature: "skills", entry: "**/.gemini/skills/" },
|
|
1249
1249
|
{ target: "geminicli", feature: "ignore", entry: "**/.geminiignore" },
|
|
1250
1250
|
{ target: "geminicli", feature: "general", entry: "**/.gemini/memories/" },
|
|
@@ -1280,11 +1280,11 @@ var GITIGNORE_ENTRY_REGISTRY = [
|
|
|
1280
1280
|
{ target: "junie", feature: "skills", entry: "**/.junie/skills/" },
|
|
1281
1281
|
{ target: "junie", feature: "subagents", entry: "**/.junie/agents/" },
|
|
1282
1282
|
// Kilo Code
|
|
1283
|
-
{ target: "kilo", feature: "rules", entry: "**/.
|
|
1284
|
-
{ target: "kilo", feature: "skills", entry: "**/.
|
|
1285
|
-
{ target: "kilo", feature: "commands", entry: "**/.
|
|
1286
|
-
{ target: "kilo", feature: "mcp", entry: "**/.
|
|
1287
|
-
{ target: "kilo", feature: "ignore", entry: "**/.
|
|
1283
|
+
{ target: "kilo", feature: "rules", entry: "**/.kilo/rules/" },
|
|
1284
|
+
{ target: "kilo", feature: "skills", entry: "**/.kilo/skills/" },
|
|
1285
|
+
{ target: "kilo", feature: "commands", entry: "**/.kilo/workflows/" },
|
|
1286
|
+
{ target: "kilo", feature: "mcp", entry: "**/.kilo/mcp.json" },
|
|
1287
|
+
{ target: "kilo", feature: "ignore", entry: "**/.kiloignore" },
|
|
1288
1288
|
// Kiro
|
|
1289
1289
|
{ target: "kiro", feature: "rules", entry: "**/.kiro/steering/" },
|
|
1290
1290
|
{ target: "kiro", feature: "commands", entry: "**/.kiro/prompts/" },
|
|
@@ -4460,7 +4460,7 @@ function wrapCommand({
|
|
|
4460
4460
|
}
|
|
4461
4461
|
|
|
4462
4462
|
// src/cli/index.ts
|
|
4463
|
-
var getVersion = () => "7.
|
|
4463
|
+
var getVersion = () => "7.27.1";
|
|
4464
4464
|
function wrapCommand2(name, errorCode, handler) {
|
|
4465
4465
|
return wrapCommand({ name, errorCode, handler, getVersion });
|
|
4466
4466
|
}
|