tina4-nodejs 3.13.99 → 3.13.101

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.
@@ -8,7 +8,6 @@ import { listRoutes } from "./commands/routes.js";
8
8
  import { runTests } from "./commands/test.js";
9
9
  import { generate, GENERATORS } from "./commands/generate.js";
10
10
  import { runSeeds } from "./commands/seed.js";
11
- import { runMetrics } from "./commands/metrics.js";
12
11
  import { queueCommand, QUEUE_SUBCOMMAND_NAMES } from "./commands/queue.js";
13
12
  import { buildImage } from "./commands/build.js";
14
13
  import { spawnSync } from "node:child_process";
@@ -364,11 +363,6 @@ export const COMMANDS: Record<string, CommandSpec> = {
364
363
  usage: "[file]",
365
364
  summary: "Run database seed files from src/seeds/",
366
365
  },
367
- metrics: {
368
- handler: (a) => { process.exit(runMetrics(a)); },
369
- usage: "[--top N] [--json] [--fail-on warn|error] [--path DIR]",
370
- summary: "Rank top code-quality offenders",
371
- },
372
366
  console: {
373
367
  handler: async () => { await openConsole(); },
374
368
  summary: "Open an interactive REPL with the framework loaded",