rulesync 8.5.0 → 8.7.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/dist/{chunk-Q5FDY7NL.js → chunk-QGQQJNZD.js} +932 -728
- package/dist/cli/index.cjs +2890 -1072
- package/dist/cli/index.js +1831 -211
- package/dist/index.cjs +822 -619
- package/dist/index.js +1 -1
- package/package.json +3 -2
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rulesync",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.7.0",
|
|
4
4
|
"description": "Unified AI rules management CLI tool that generates configuration files for various AI development tools",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -110,9 +110,10 @@
|
|
|
110
110
|
"scripts": {
|
|
111
111
|
"build": "tsup src/cli/index.ts src/index.ts --format cjs,esm --dts --clean",
|
|
112
112
|
"check": "pnpm run fmt:check && pnpm run oxlint && pnpm run eslint && pnpm run typecheck",
|
|
113
|
+
"check:sync-skill-docs": "tsx scripts/check-skill-docs-sync.ts",
|
|
113
114
|
"cicheck": "pnpm run cicheck:code && pnpm run cicheck:content",
|
|
114
115
|
"cicheck:code": "pnpm run check && pnpm run test",
|
|
115
|
-
"cicheck:content": "pnpm run cspell && pnpm run secretlint",
|
|
116
|
+
"cicheck:content": "pnpm run check:sync-skill-docs && pnpm run cspell && pnpm run secretlint",
|
|
116
117
|
"cspell": "cspell --no-progress --gitignore .",
|
|
117
118
|
"dev": "tsx src/cli/index.ts",
|
|
118
119
|
"docs:build": "vitepress build docs",
|