rulesync 0.70.0 → 0.71.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 +36 -4
- package/dist/index.cjs +1625 -469
- package/dist/index.js +1620 -464
- package/package.json +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rulesync",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.71.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",
|
|
@@ -90,6 +90,7 @@
|
|
|
90
90
|
"bcheck:fix": "biome check --write .",
|
|
91
91
|
"build": "tsup src/cli/index.ts --format cjs,esm --dts --clean",
|
|
92
92
|
"check": "pnpm run bcheck && pnpm run oxlint && pnpm run eslint && pnpm run typecheck",
|
|
93
|
+
"cicheck": "pnpm run check && pnpm run test && pnpm run cspell && pnpm run secretlint",
|
|
93
94
|
"cspell": "cspell \"**/*\"",
|
|
94
95
|
"dev": "tsx src/cli/index.ts",
|
|
95
96
|
"eslint": "eslint . --max-warnings 0 --cache",
|
|
@@ -101,6 +102,7 @@
|
|
|
101
102
|
"oxlint:fix": "oxlint . --fix --max-warnings 0",
|
|
102
103
|
"secretlint": "secretlint --secretlintignore .gitignore \"**/*\"",
|
|
103
104
|
"sort": "sort-package-json",
|
|
105
|
+
"task": "tsx scripts/run-tasks.ts",
|
|
104
106
|
"test": "vitest run --silent=true",
|
|
105
107
|
"test:coverage": "vitest run --coverage --silent=true",
|
|
106
108
|
"test:watch": "vitest --silent=true",
|