kodevu 0.1.33 → 0.1.34

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/config.js +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kodevu",
3
- "version": "0.1.33",
3
+ "version": "0.1.34",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "description": "Poll SVN revisions or Git commits, send each change diff to a reviewer CLI, and write configurable review reports.",
package/src/config.js CHANGED
@@ -214,6 +214,7 @@ export async function resolveConfig(cliArgs = {}) {
214
214
  config.target = process.cwd();
215
215
  }
216
216
 
217
+ config.baseDir = process.cwd();
217
218
  config.debug = Boolean(cliArgs.debug);
218
219
  config.reviewer = String(config.reviewer || "auto").toLowerCase();
219
220
  config.lang = String(config.lang || "auto").toLowerCase();