rulesync 7.15.1 → 7.15.2
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/{chunk-L5AQUWUM.js → chunk-WY325EI7.js} +4 -1
- package/dist/cli/index.cjs +5 -2
- package/dist/cli/index.js +2 -2
- package/dist/index.cjs +4 -1
- package/dist/index.js +1 -1
- package/package.json +11 -11
|
@@ -5803,7 +5803,10 @@ var RulesyncMcp = class _RulesyncMcp extends RulesyncFile {
|
|
|
5803
5803
|
stripMcpServerFields(fields) {
|
|
5804
5804
|
if (fields.length === 0) return this;
|
|
5805
5805
|
const filteredServers = Object.fromEntries(
|
|
5806
|
-
Object.entries(this.json.mcpServers).map(([name, config]) => [
|
|
5806
|
+
Object.entries(this.json.mcpServers).map(([name, config]) => [
|
|
5807
|
+
name,
|
|
5808
|
+
Object.fromEntries(Object.entries(config).filter(([key]) => !fields.includes(key)))
|
|
5809
|
+
])
|
|
5807
5810
|
);
|
|
5808
5811
|
return new _RulesyncMcp({
|
|
5809
5812
|
baseDir: this.baseDir,
|
package/dist/cli/index.cjs
CHANGED
|
@@ -5516,7 +5516,10 @@ var RulesyncMcp = class _RulesyncMcp extends RulesyncFile {
|
|
|
5516
5516
|
stripMcpServerFields(fields) {
|
|
5517
5517
|
if (fields.length === 0) return this;
|
|
5518
5518
|
const filteredServers = Object.fromEntries(
|
|
5519
|
-
Object.entries(this.json.mcpServers).map(([name, config]) => [
|
|
5519
|
+
Object.entries(this.json.mcpServers).map(([name, config]) => [
|
|
5520
|
+
name,
|
|
5521
|
+
Object.fromEntries(Object.entries(config).filter(([key]) => !fields.includes(key)))
|
|
5522
|
+
])
|
|
5520
5523
|
);
|
|
5521
5524
|
return new _RulesyncMcp({
|
|
5522
5525
|
baseDir: this.baseDir,
|
|
@@ -20943,7 +20946,7 @@ async function updateCommand(currentVersion, options) {
|
|
|
20943
20946
|
}
|
|
20944
20947
|
|
|
20945
20948
|
// src/cli/index.ts
|
|
20946
|
-
var getVersion = () => "7.15.
|
|
20949
|
+
var getVersion = () => "7.15.2";
|
|
20947
20950
|
var main = async () => {
|
|
20948
20951
|
const program = new import_commander.Command();
|
|
20949
20952
|
const version = getVersion();
|
package/dist/cli/index.js
CHANGED
|
@@ -62,7 +62,7 @@ import {
|
|
|
62
62
|
removeTempDirectory,
|
|
63
63
|
stringifyFrontmatter,
|
|
64
64
|
writeFileContent
|
|
65
|
-
} from "../chunk-
|
|
65
|
+
} from "../chunk-WY325EI7.js";
|
|
66
66
|
|
|
67
67
|
// src/cli/index.ts
|
|
68
68
|
import { Command } from "commander";
|
|
@@ -4110,7 +4110,7 @@ async function updateCommand(currentVersion, options) {
|
|
|
4110
4110
|
}
|
|
4111
4111
|
|
|
4112
4112
|
// src/cli/index.ts
|
|
4113
|
-
var getVersion = () => "7.15.
|
|
4113
|
+
var getVersion = () => "7.15.2";
|
|
4114
4114
|
var main = async () => {
|
|
4115
4115
|
const program = new Command();
|
|
4116
4116
|
const version = getVersion();
|
package/dist/index.cjs
CHANGED
|
@@ -5813,7 +5813,10 @@ var RulesyncMcp = class _RulesyncMcp extends RulesyncFile {
|
|
|
5813
5813
|
stripMcpServerFields(fields) {
|
|
5814
5814
|
if (fields.length === 0) return this;
|
|
5815
5815
|
const filteredServers = Object.fromEntries(
|
|
5816
|
-
Object.entries(this.json.mcpServers).map(([name, config]) => [
|
|
5816
|
+
Object.entries(this.json.mcpServers).map(([name, config]) => [
|
|
5817
|
+
name,
|
|
5818
|
+
Object.fromEntries(Object.entries(config).filter(([key]) => !fields.includes(key)))
|
|
5819
|
+
])
|
|
5817
5820
|
);
|
|
5818
5821
|
return new _RulesyncMcp({
|
|
5819
5822
|
baseDir: this.baseDir,
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rulesync",
|
|
3
|
-
"version": "7.15.
|
|
3
|
+
"version": "7.15.2",
|
|
4
4
|
"description": "Unified AI rules management CLI tool that generates configuration files for various AI development tools",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"commander": "14.0.3",
|
|
57
57
|
"consola": "3.4.2",
|
|
58
58
|
"effect": "3.19.19",
|
|
59
|
-
"es-toolkit": "1.
|
|
59
|
+
"es-toolkit": "1.45.1",
|
|
60
60
|
"fastmcp": "3.33.0",
|
|
61
61
|
"globby": "16.1.1",
|
|
62
62
|
"gray-matter": "4.0.3",
|
|
@@ -67,28 +67,28 @@
|
|
|
67
67
|
"zod": "4.3.6"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"@anthropic-ai/claude-agent-sdk": "0.2.
|
|
70
|
+
"@anthropic-ai/claude-agent-sdk": "0.2.69",
|
|
71
71
|
"@eslint/js": "9.39.2",
|
|
72
72
|
"@openrouter/sdk": "0.9.11",
|
|
73
73
|
"@secretlint/secretlint-rule-preset-recommend": "11.3.1",
|
|
74
74
|
"@tsconfig/node24": "24.0.4",
|
|
75
75
|
"@types/js-yaml": "4.0.9",
|
|
76
|
-
"@types/node": "25.3.
|
|
77
|
-
"@typescript/native-preview": "7.0.0-dev.
|
|
76
|
+
"@types/node": "25.3.3",
|
|
77
|
+
"@typescript/native-preview": "7.0.0-dev.20260304.1",
|
|
78
78
|
"@vitest/coverage-v8": "4.0.18",
|
|
79
79
|
"cspell": "9.7.0",
|
|
80
80
|
"eslint": "9.39.2",
|
|
81
81
|
"eslint-plugin-import": "2.32.0",
|
|
82
82
|
"eslint-plugin-no-type-assertion": "1.3.0",
|
|
83
|
-
"eslint-plugin-oxlint": "1.
|
|
83
|
+
"eslint-plugin-oxlint": "1.51.0",
|
|
84
84
|
"eslint-plugin-strict-dependencies": "1.3.31",
|
|
85
85
|
"eslint-plugin-zod-import": "0.3.0",
|
|
86
86
|
"knip": "5.85.0",
|
|
87
|
-
"lint-staged": "16.2
|
|
88
|
-
"oxfmt": "0.
|
|
89
|
-
"oxlint": "1.
|
|
90
|
-
"repomix": "1.
|
|
91
|
-
"resend": "6.9.
|
|
87
|
+
"lint-staged": "16.3.2",
|
|
88
|
+
"oxfmt": "0.36.0",
|
|
89
|
+
"oxlint": "1.51.0",
|
|
90
|
+
"repomix": "1.12.0",
|
|
91
|
+
"resend": "6.9.3",
|
|
92
92
|
"secretlint": "11.3.1",
|
|
93
93
|
"simple-git-hooks": "2.13.1",
|
|
94
94
|
"sort-package-json": "3.6.1",
|