From 74f3aac15b2623bd9fd23cc2a0378eaf63ea41fd Mon Sep 17 00:00:00 2001 From: David Snelling Date: Tue, 22 Jul 2025 11:06:18 -0700 Subject: [PATCH] **refactor(cli): remove unnecessary `@ts-expect-error` for omelette import** - **Changes**: - Eliminated the redundant `@ts-expect-error` comment for the `omelette` import in `cli.ts`. - **Purpose**: - Simplifies the code by removing an outdated comment that is no longer needed, ensuring cleaner and more readable source files. --- cli-package/src/cli.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/cli-package/src/cli.ts b/cli-package/src/cli.ts index 89dda178..8d3adc63 100644 --- a/cli-package/src/cli.ts +++ b/cli-package/src/cli.ts @@ -27,7 +27,6 @@ import { fileURLToPath } from 'url' import { dirname, join } from 'path' import fs from 'fs' import { Command } from 'commander' -// @ts-expect-error - Missing type declarations for omelette import omelette from 'omelette' // Get the directory of the current module