rulesync 7.5.0 → 7.6.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/README.md +24 -23
- package/dist/{chunk-WZ7IUX6M.js → chunk-M7XFNAZA.js} +415 -178
- package/dist/cli/index.cjs +687 -445
- package/dist/cli/index.js +8 -3
- package/dist/index.cjs +422 -185
- package/dist/index.d.cts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -60,7 +60,7 @@ import {
|
|
|
60
60
|
removeTempDirectory,
|
|
61
61
|
stringifyFrontmatter,
|
|
62
62
|
writeFileContent
|
|
63
|
-
} from "../chunk-
|
|
63
|
+
} from "../chunk-M7XFNAZA.js";
|
|
64
64
|
|
|
65
65
|
// src/cli/index.ts
|
|
66
66
|
import { Command } from "commander";
|
|
@@ -1171,7 +1171,8 @@ var RULESYNC_IGNORE_ENTRIES = [
|
|
|
1171
1171
|
"**/.codexignore",
|
|
1172
1172
|
"**/.codex/memories/",
|
|
1173
1173
|
"**/.codex/skills/",
|
|
1174
|
-
"**/.codex/
|
|
1174
|
+
"**/.codex/agents/",
|
|
1175
|
+
"**/.codex/config.toml",
|
|
1175
1176
|
// Cursor
|
|
1176
1177
|
"**/.cursor/",
|
|
1177
1178
|
"**/.cursorignore",
|
|
@@ -1189,6 +1190,10 @@ var RULESYNC_IGNORE_ENTRIES = [
|
|
|
1189
1190
|
"**/.gemini/subagents/",
|
|
1190
1191
|
"**/.gemini/skills/",
|
|
1191
1192
|
"**/.geminiignore",
|
|
1193
|
+
// Goose
|
|
1194
|
+
"**/.goosehints",
|
|
1195
|
+
"**/.goose/",
|
|
1196
|
+
"**/.gooseignore",
|
|
1192
1197
|
// GitHub Copilot
|
|
1193
1198
|
"**/.github/copilot-instructions.md",
|
|
1194
1199
|
"**/.github/instructions/",
|
|
@@ -3790,7 +3795,7 @@ async function updateCommand(currentVersion, options) {
|
|
|
3790
3795
|
}
|
|
3791
3796
|
|
|
3792
3797
|
// src/cli/index.ts
|
|
3793
|
-
var getVersion = () => "7.
|
|
3798
|
+
var getVersion = () => "7.6.0";
|
|
3794
3799
|
var main = async () => {
|
|
3795
3800
|
const program = new Command();
|
|
3796
3801
|
const version = getVersion();
|