auto-cr-cmd 2.0.29 → 2.0.30

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 CHANGED
@@ -168,7 +168,7 @@ module.exports = { rules: [ruleA, ruleB] }
168
168
 
169
169
  ```bash
170
170
  cd examples
171
- npx auto-cr-cmd --language en --rule-dir ./examples/custom-rules -- ./src
171
+ npx auto-cr-cmd -l zh -r ./custom-rules/rules -- ./custom-rules/demo
172
172
  ```
173
173
 
174
174
  ## Project Layout
package/README.zh-CN.md CHANGED
@@ -168,7 +168,7 @@ module.exports = { rules: [ruleA, ruleB] }
168
168
 
169
169
  ```bash
170
170
  cd examples
171
- npx auto-cr-cmd --language en --rule-dir ./examples/custom-rules -- ./src
171
+ npx auto-cr-cmd -l en -r ./custom-rules/rules -- ./custom-rules/demo
172
172
  ```
173
173
 
174
174
  ## 项目结构
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "auto-cr-cmd",
3
- "version": "2.0.29",
3
+ "version": "2.0.30",
4
4
  "description": "Fast automated code review CLI powered by SWC-based static analysis",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/types/index.d.ts",
@@ -48,7 +48,7 @@
48
48
  "dependencies": {
49
49
  "@swc/core": "^1.13.20",
50
50
  "@swc/wasm": "^1.13.20",
51
- "auto-cr-rules": "^2.0.29",
51
+ "auto-cr-rules": "^2.0.30",
52
52
  "commander": "^14.0.0",
53
53
  "consola": "^3.4.2"
54
54
  },