rulesync 3.12.6 → 3.12.7
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 +4 -4
- package/dist/index.js +4 -4
- package/package.json +11 -11
package/dist/index.cjs
CHANGED
|
@@ -2559,7 +2559,7 @@ var IgnoreProcessor = class extends FeatureProcessor {
|
|
|
2559
2559
|
try {
|
|
2560
2560
|
return [await RulesyncIgnore.fromFile()];
|
|
2561
2561
|
} catch (error) {
|
|
2562
|
-
logger.error(`
|
|
2562
|
+
logger.error(`Failed to load rulesync files: ${formatError(error)}`);
|
|
2563
2563
|
return [];
|
|
2564
2564
|
}
|
|
2565
2565
|
}
|
|
@@ -2572,7 +2572,7 @@ var IgnoreProcessor = class extends FeatureProcessor {
|
|
|
2572
2572
|
const toolIgnores = await this.loadToolIgnores();
|
|
2573
2573
|
return toolIgnores;
|
|
2574
2574
|
} catch (error) {
|
|
2575
|
-
logger.error(`
|
|
2575
|
+
logger.error(`Failed to load tool files: ${formatError(error)}`);
|
|
2576
2576
|
return [];
|
|
2577
2577
|
}
|
|
2578
2578
|
}
|
|
@@ -6617,7 +6617,7 @@ var RulesProcessor = class extends FeatureProcessor {
|
|
|
6617
6617
|
throw new Error(`Unsupported tool target: ${this.toolTarget}`);
|
|
6618
6618
|
}
|
|
6619
6619
|
} catch (error) {
|
|
6620
|
-
logger.error(`
|
|
6620
|
+
logger.error(`Failed to load tool files: ${formatError(error)}`);
|
|
6621
6621
|
return [];
|
|
6622
6622
|
}
|
|
6623
6623
|
}
|
|
@@ -7693,7 +7693,7 @@ Attention, again, you are just the planner, so though you can read any files and
|
|
|
7693
7693
|
}
|
|
7694
7694
|
|
|
7695
7695
|
// src/cli/index.ts
|
|
7696
|
-
var getVersion = () => "3.12.
|
|
7696
|
+
var getVersion = () => "3.12.7";
|
|
7697
7697
|
var main = async () => {
|
|
7698
7698
|
const program = new import_commander.Command();
|
|
7699
7699
|
const version = getVersion();
|
package/dist/index.js
CHANGED
|
@@ -2536,7 +2536,7 @@ var IgnoreProcessor = class extends FeatureProcessor {
|
|
|
2536
2536
|
try {
|
|
2537
2537
|
return [await RulesyncIgnore.fromFile()];
|
|
2538
2538
|
} catch (error) {
|
|
2539
|
-
logger.error(`
|
|
2539
|
+
logger.error(`Failed to load rulesync files: ${formatError(error)}`);
|
|
2540
2540
|
return [];
|
|
2541
2541
|
}
|
|
2542
2542
|
}
|
|
@@ -2549,7 +2549,7 @@ var IgnoreProcessor = class extends FeatureProcessor {
|
|
|
2549
2549
|
const toolIgnores = await this.loadToolIgnores();
|
|
2550
2550
|
return toolIgnores;
|
|
2551
2551
|
} catch (error) {
|
|
2552
|
-
logger.error(`
|
|
2552
|
+
logger.error(`Failed to load tool files: ${formatError(error)}`);
|
|
2553
2553
|
return [];
|
|
2554
2554
|
}
|
|
2555
2555
|
}
|
|
@@ -6594,7 +6594,7 @@ var RulesProcessor = class extends FeatureProcessor {
|
|
|
6594
6594
|
throw new Error(`Unsupported tool target: ${this.toolTarget}`);
|
|
6595
6595
|
}
|
|
6596
6596
|
} catch (error) {
|
|
6597
|
-
logger.error(`
|
|
6597
|
+
logger.error(`Failed to load tool files: ${formatError(error)}`);
|
|
6598
6598
|
return [];
|
|
6599
6599
|
}
|
|
6600
6600
|
}
|
|
@@ -7670,7 +7670,7 @@ Attention, again, you are just the planner, so though you can read any files and
|
|
|
7670
7670
|
}
|
|
7671
7671
|
|
|
7672
7672
|
// src/cli/index.ts
|
|
7673
|
-
var getVersion = () => "3.12.
|
|
7673
|
+
var getVersion = () => "3.12.7";
|
|
7674
7674
|
var main = async () => {
|
|
7675
7675
|
const program = new Command();
|
|
7676
7676
|
const version = getVersion();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rulesync",
|
|
3
|
-
"version": "3.12.
|
|
3
|
+
"version": "3.12.7",
|
|
4
4
|
"description": "Unified AI rules management CLI tool that generates configuration files for various AI development tools",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"commander": "14.0.2",
|
|
43
43
|
"consola": "3.4.2",
|
|
44
44
|
"es-toolkit": "1.41.0",
|
|
45
|
-
"fast-xml-parser": "5.3.
|
|
45
|
+
"fast-xml-parser": "5.3.1",
|
|
46
46
|
"gray-matter": "4.0.3",
|
|
47
47
|
"js-yaml": "4.1.0",
|
|
48
48
|
"micromatch": "4.0.8",
|
|
@@ -51,23 +51,23 @@
|
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@anthropic-ai/claude-agent-sdk": "0.1.30",
|
|
54
|
-
"@biomejs/biome": "2.3.
|
|
55
|
-
"@eslint/js": "9.39.
|
|
54
|
+
"@biomejs/biome": "2.3.3",
|
|
55
|
+
"@eslint/js": "9.39.1",
|
|
56
56
|
"@secretlint/secretlint-rule-preset-recommend": "11.2.5",
|
|
57
57
|
"@tsconfig/node24": "24.0.1",
|
|
58
58
|
"@types/js-yaml": "4.0.9",
|
|
59
59
|
"@types/micromatch": "4.0.10",
|
|
60
|
-
"@types/node": "24.
|
|
61
|
-
"@typescript/native-preview": "7.0.0-dev.
|
|
62
|
-
"@vitest/coverage-v8": "4.0.
|
|
60
|
+
"@types/node": "24.10.0",
|
|
61
|
+
"@typescript/native-preview": "7.0.0-dev.20251104.1",
|
|
62
|
+
"@vitest/coverage-v8": "4.0.7",
|
|
63
63
|
"cspell": "9.2.2",
|
|
64
|
-
"eslint": "9.39.
|
|
64
|
+
"eslint": "9.39.1",
|
|
65
65
|
"eslint-plugin-import": "2.32.0",
|
|
66
66
|
"eslint-plugin-no-type-assertion": "1.3.0",
|
|
67
67
|
"eslint-plugin-oxlint": "1.25.0",
|
|
68
68
|
"eslint-plugin-strict-dependencies": "1.3.27",
|
|
69
69
|
"eslint-plugin-zod-import": "0.3.0",
|
|
70
|
-
"knip": "5.
|
|
70
|
+
"knip": "5.67.1",
|
|
71
71
|
"lint-staged": "16.2.6",
|
|
72
72
|
"o3-search-mcp": "0.0.9",
|
|
73
73
|
"oxlint": "1.25.0",
|
|
@@ -77,8 +77,8 @@
|
|
|
77
77
|
"tsup": "8.5.0",
|
|
78
78
|
"tsx": "4.20.6",
|
|
79
79
|
"typescript": "5.9.3",
|
|
80
|
-
"typescript-eslint": "8.46.
|
|
81
|
-
"vitest": "4.0.
|
|
80
|
+
"typescript-eslint": "8.46.3",
|
|
81
|
+
"vitest": "4.0.7"
|
|
82
82
|
},
|
|
83
83
|
"engines": {
|
|
84
84
|
"node": ">=20.0.0"
|