rulesync 3.3.0 → 3.3.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/README.md +13 -2
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -314,7 +314,7 @@ Currently, supports rules and commands generation for Claude Code. Import for gl
|
|
|
314
314
|
npx rulesync generate
|
|
315
315
|
```
|
|
316
316
|
|
|
317
|
-
> [!
|
|
317
|
+
> [!NOTE]
|
|
318
318
|
> Currently, when in the directory enabled global mode:
|
|
319
319
|
> * `rulesync.jsonc` only supports `global`, `features`, `delete` and `verbose`. `Features` can be set `"rules"` and `"commands"`. Other parameters are ignored.
|
|
320
320
|
> * `rules/*.md` only supports single file has `root: true`, and frontmatter parameters without `root` are ignored.
|
|
@@ -351,4 +351,15 @@ MIT License
|
|
|
351
351
|
|
|
352
352
|
Issues and Pull Requests are welcome!
|
|
353
353
|
|
|
354
|
-
For development setup
|
|
354
|
+
For development setup:
|
|
355
|
+
|
|
356
|
+
```bash
|
|
357
|
+
git clone https://github.com/dyoshikawa/rulesync # Should be your fork repository url actually
|
|
358
|
+
cd rulesync
|
|
359
|
+
pnpm i
|
|
360
|
+
pnpm cicheck # Run code style check, type check, and tests
|
|
361
|
+
|
|
362
|
+
# Manual test using current code
|
|
363
|
+
pnpm dev generate -t claudecode -f "*"
|
|
364
|
+
pnpm dev import -t claudecode -f "*"
|
|
365
|
+
```
|
package/dist/index.cjs
CHANGED
|
@@ -6978,7 +6978,7 @@ globs: ["**/*"]
|
|
|
6978
6978
|
}
|
|
6979
6979
|
|
|
6980
6980
|
// src/cli/index.ts
|
|
6981
|
-
var getVersion = () => "3.3.
|
|
6981
|
+
var getVersion = () => "3.3.1";
|
|
6982
6982
|
var main = async () => {
|
|
6983
6983
|
const program = new import_commander.Command();
|
|
6984
6984
|
const version = getVersion();
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rulesync",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.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",
|
|
@@ -46,37 +46,37 @@
|
|
|
46
46
|
"js-yaml": "4.1.0",
|
|
47
47
|
"micromatch": "4.0.8",
|
|
48
48
|
"smol-toml": "1.4.2",
|
|
49
|
-
"zod": "4.1.
|
|
49
|
+
"zod": "4.1.12"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@anthropic-ai/claude-agent-sdk": "0.1.
|
|
52
|
+
"@anthropic-ai/claude-agent-sdk": "0.1.9",
|
|
53
53
|
"@biomejs/biome": "2.2.5",
|
|
54
54
|
"@eslint/js": "9.37.0",
|
|
55
55
|
"@secretlint/secretlint-rule-preset-recommend": "11.2.4",
|
|
56
56
|
"@tsconfig/node24": "24.0.1",
|
|
57
57
|
"@types/js-yaml": "4.0.9",
|
|
58
58
|
"@types/micromatch": "4.0.9",
|
|
59
|
-
"@types/node": "24.
|
|
60
|
-
"@typescript/native-preview": "7.0.0-dev.
|
|
59
|
+
"@types/node": "24.7.0",
|
|
60
|
+
"@typescript/native-preview": "7.0.0-dev.20251006.1",
|
|
61
61
|
"@vitest/coverage-v8": "3.2.4",
|
|
62
62
|
"cspell": "9.2.1",
|
|
63
63
|
"eslint": "9.37.0",
|
|
64
64
|
"eslint-plugin-import": "2.32.0",
|
|
65
65
|
"eslint-plugin-no-type-assertion": "1.3.0",
|
|
66
|
-
"eslint-plugin-oxlint": "1.
|
|
66
|
+
"eslint-plugin-oxlint": "1.20.0",
|
|
67
67
|
"eslint-plugin-strict-dependencies": "1.3.26",
|
|
68
68
|
"eslint-plugin-zod-import": "0.3.0",
|
|
69
|
-
"knip": "5.64.
|
|
69
|
+
"knip": "5.64.2",
|
|
70
70
|
"lint-staged": "16.2.3",
|
|
71
71
|
"o3-search-mcp": "0.0.9",
|
|
72
|
-
"oxlint": "1.
|
|
72
|
+
"oxlint": "1.20.0",
|
|
73
73
|
"secretlint": "11.2.4",
|
|
74
74
|
"simple-git-hooks": "2.13.1",
|
|
75
75
|
"sort-package-json": "3.4.0",
|
|
76
76
|
"tsup": "8.5.0",
|
|
77
77
|
"tsx": "4.20.6",
|
|
78
78
|
"typescript": "5.9.3",
|
|
79
|
-
"typescript-eslint": "8.
|
|
79
|
+
"typescript-eslint": "8.46.0",
|
|
80
80
|
"vitest": "3.2.4"
|
|
81
81
|
},
|
|
82
82
|
"engines": {
|