From cb62dd84505a346d54aed192621889676083c358 Mon Sep 17 00:00:00 2001 From: ddivad195 Date: Fri, 26 Jan 2024 21:31:48 +0000 Subject: [PATCH] remove console log of path --- src/index.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 58f6d45..02d4ca5 100644 --- a/src/index.ts +++ b/src/index.ts @@ -5,6 +5,5 @@ import { run } from './main' import minimist from 'minimist' const path = minimist(process.argv.slice(2)).path || '.' -console.log(path) // eslint-disable-next-line @typescript-eslint/no-floating-promises run(path)