rulesync 0.38.0 → 0.39.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/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +3 -1
package/dist/index.cjs
CHANGED
|
@@ -2535,7 +2535,7 @@ async function watchCommand() {
|
|
|
2535
2535
|
|
|
2536
2536
|
// src/cli/index.ts
|
|
2537
2537
|
var program = new import_commander.Command();
|
|
2538
|
-
program.name("rulesync").description("Unified AI rules management CLI tool").version("0.
|
|
2538
|
+
program.name("rulesync").description("Unified AI rules management CLI tool").version("0.39.1");
|
|
2539
2539
|
program.command("init").description("Initialize rulesync in current directory").action(initCommand);
|
|
2540
2540
|
program.command("add <filename>").description("Add a new rule file").action(addCommand);
|
|
2541
2541
|
program.command("gitignore").description("Add generated files to .gitignore").action(gitignoreCommand);
|
package/dist/index.js
CHANGED
|
@@ -2181,7 +2181,7 @@ async function watchCommand() {
|
|
|
2181
2181
|
|
|
2182
2182
|
// src/cli/index.ts
|
|
2183
2183
|
var program = new Command();
|
|
2184
|
-
program.name("rulesync").description("Unified AI rules management CLI tool").version("0.
|
|
2184
|
+
program.name("rulesync").description("Unified AI rules management CLI tool").version("0.39.1");
|
|
2185
2185
|
program.command("init").description("Initialize rulesync in current directory").action(initCommand);
|
|
2186
2186
|
program.command("add <filename>").description("Add a new rule file").action(addCommand);
|
|
2187
2187
|
program.command("gitignore").description("Add generated files to .gitignore").action(gitignoreCommand);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rulesync",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.39.1",
|
|
4
4
|
"description": "Unified AI rules management CLI tool that generates configuration files for various AI development tools",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -53,6 +53,7 @@
|
|
|
53
53
|
"@types/node": "24.0.3",
|
|
54
54
|
"@typescript/native-preview": "7.0.0-dev.20250623.1",
|
|
55
55
|
"@vitest/coverage-v8": "3.2.4",
|
|
56
|
+
"cspell": "9.1.2",
|
|
56
57
|
"lint-staged": "16.1.2",
|
|
57
58
|
"o3-search-mcp": "0.0.3",
|
|
58
59
|
"oxlint": "1.4.0",
|
|
@@ -75,6 +76,7 @@
|
|
|
75
76
|
"bcheck:fix": "biome check --write src/",
|
|
76
77
|
"build": "tsup src/cli/index.ts --format cjs,esm --dts --clean",
|
|
77
78
|
"check": "pnpm run bcheck && pnpm run lint && pnpm run typecheck",
|
|
79
|
+
"cspell": "cspell \"**/*\"",
|
|
78
80
|
"dev": "tsx src/cli/index.ts",
|
|
79
81
|
"fix": "pnpm run bcheck:fix && pnpm run lint:fix",
|
|
80
82
|
"generate": "pnpm run dev generate",
|