@getcodesentinel/codesentinel 1.9.2 → 1.9.3

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
@@ -245,6 +245,7 @@ pnpm dev -- ci . --baseline baseline.json --snapshot current.json --report repor
245
245
 
246
246
  `codesentinel report` produces deterministic engineering artifacts from existing analysis outputs.
247
247
 
248
+ - default format: `md`
248
249
  - formats: `text`, `md`, `json`
249
250
  - optional file output: `--output <path>`
250
251
  - optional snapshot export: `--snapshot <path>`
package/dist/index.js CHANGED
@@ -5367,7 +5367,7 @@ program.command("explain").argument("[path]", "path to the project to analyze").
5367
5367
  "log verbosity: silent, error, warn, info, debug (logs are written to stderr)"
5368
5368
  ).choices(["silent", "error", "warn", "info", "debug"]).default(parseLogLevel(process.env["CODESENTINEL_LOG_LEVEL"]))
5369
5369
  ).option("--file <path>", "explain a specific file target").option("--module <name>", "explain a specific module target").option("--top <count>", "number of top hotspots to explain when no target is selected", "5").addOption(
5370
- new Option("--format <mode>", "output format: text, json, md").choices(["text", "json", "md"]).default("text")
5370
+ new Option("--format <mode>", "output format: text, json, md").choices(["text", "json", "md"]).default("md")
5371
5371
  ).action(
5372
5372
  async (path, options) => {
5373
5373
  const logger = createStderrLogger(options.logLevel);