summaryrefslogtreecommitdiff
path: root/src/commands/check.ts
diff options
context:
space:
mode:
authorLeo Goetz <dev@leogtz.de>2026-05-24 06:46:20 +0200
committerLeo Goetz <dev@leogtz.de>2026-05-24 06:46:20 +0200
commitd05bfaf95fb666fea02c8aceae3ce02c9e315d3d (patch)
tree936a69762c0c8275dc458e98a7c224c6049282b8 /src/commands/check.ts
parentfdc2bc6d47c751377d42ea2581bf249186a5b2e6 (diff)
feat: added types and renamed outputSummary file
Diffstat (limited to 'src/commands/check.ts')
-rw-r--r--src/commands/check.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/check.ts b/src/commands/check.ts
index f39b0f8..7f92d7f 100644
--- a/src/commands/check.ts
+++ b/src/commands/check.ts
@@ -1,6 +1,6 @@
import type { Command } from "commander";
import { checkDependencies } from "../actions/checkDependencies.js";
-import { outputSummary } from "../actions/outputSummary.js";
+import { outputSummary } from "../actions/output.js";
import { sendAuditEmail } from "../actions/sendEmail.js";
export const check = (program: Command) => {