rulesync 0.72.0 → 0.74.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 +0 -6
- package/dist/index.cjs +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,12 +4,6 @@
|
|
|
4
4
|
[](https://www.npmjs.com/package/rulesync)
|
|
5
5
|
[](https://www.npmjs.com/package/rulesync)
|
|
6
6
|
|
|
7
|
-
> [!IMPORTANT]
|
|
8
|
-
> Starting from v0.68.0, we have implemented a major refactoring by the maintainers. If the behavior is unstable, please specify and run v0.67.0.
|
|
9
|
-
> Additionally, as a result, we have deprecated some features, support, and backward compatibility. If you wish to see any of these features restored, please create an Issue.
|
|
10
|
-
> As background, this tool has been built using Vibe Coding up until now, but the codebase had become extremely complex, making future extensions difficult, so we had to discard the existing codebase. We plan to continue active development going forward.
|
|
11
|
-
> Thank you for your continued support of rulesync.
|
|
12
|
-
|
|
13
7
|
A Node.js CLI tool that automatically generates configuration files for various AI development tools from unified AI rule files. Features selective generation, comprehensive import/export capabilities, and supports 19+ AI development tools with rules, commands, MCP, ignore files, and subagents. Uses the recommended `.rulesync/rules/*.md` structure, with full backward compatibility for legacy `.rulesync/*.md` layouts.
|
|
14
8
|
|
|
15
9
|
## Installation
|
package/dist/index.cjs
CHANGED
|
@@ -29,7 +29,7 @@ var import_node_url = require("url");
|
|
|
29
29
|
var import_commander = require("commander");
|
|
30
30
|
|
|
31
31
|
// src/constants/announcements.ts
|
|
32
|
-
var ANNOUNCEMENT = "
|
|
32
|
+
var ANNOUNCEMENT = "".trim();
|
|
33
33
|
|
|
34
34
|
// src/types/config-options.ts
|
|
35
35
|
var import_mini2 = require("zod/mini");
|
|
@@ -5829,7 +5829,7 @@ var getVersion = async () => {
|
|
|
5829
5829
|
const packageJson = await readJsonFile(packageJsonPath);
|
|
5830
5830
|
return packageJson.version;
|
|
5831
5831
|
} catch {
|
|
5832
|
-
return "0.
|
|
5832
|
+
return "0.74.0";
|
|
5833
5833
|
}
|
|
5834
5834
|
};
|
|
5835
5835
|
var main = async () => {
|
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import { fileURLToPath } from "url";
|
|
|
6
6
|
import { Command } from "commander";
|
|
7
7
|
|
|
8
8
|
// src/constants/announcements.ts
|
|
9
|
-
var ANNOUNCEMENT = "
|
|
9
|
+
var ANNOUNCEMENT = "".trim();
|
|
10
10
|
|
|
11
11
|
// src/types/config-options.ts
|
|
12
12
|
import { z as z2 } from "zod/mini";
|
|
@@ -5805,7 +5805,7 @@ var getVersion = async () => {
|
|
|
5805
5805
|
const packageJson = await readJsonFile(packageJsonPath);
|
|
5806
5806
|
return packageJson.version;
|
|
5807
5807
|
} catch {
|
|
5808
|
-
return "0.
|
|
5808
|
+
return "0.74.0";
|
|
5809
5809
|
}
|
|
5810
5810
|
};
|
|
5811
5811
|
var main = async () => {
|