@klitchevo/code-council 0.0.13 → 0.0.14

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/dist/index.js +5 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1579,7 +1579,11 @@ async function scanRepository(startPath, options = {}) {
1579
1579
  maxTotalSize: Math.min(
1580
1580
  options.maxTotalSize ?? DEFAULT_OPTIONS.maxTotalSize,
1581
1581
  HARD_LIMITS.MAX_TOTAL_SIZE
1582
- )
1582
+ ),
1583
+ // Ensure fileTypes is never undefined
1584
+ fileTypes: options.fileTypes ?? DEFAULT_OPTIONS.fileTypes,
1585
+ skipSensitive: options.skipSensitive ?? DEFAULT_OPTIONS.skipSensitive,
1586
+ detectSecrets: options.detectSecrets ?? DEFAULT_OPTIONS.detectSecrets
1583
1587
  };
1584
1588
  const repoRoot = findGitRoot(startPath);
1585
1589
  logger.info("Scanning repository", { repoRoot, options: opts });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@klitchevo/code-council",
3
- "version": "0.0.13",
3
+ "version": "0.0.14",
4
4
  "description": "Multi-model AI code review server using OpenRouter - get diverse perspectives from multiple LLMs in parallel",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",