From 19c14ef3fca0e2725133b65753f2818867feb8ff Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Wed, 8 May 2024 00:39:34 +0000 Subject: [PATCH] fix(cli): :bug: Remove file extension from oclif entrypoint config Allows both .ts and .js to be used (in dev and when bundled) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1344374f..da43fcf2 100644 --- a/package.json +++ b/package.json @@ -56,7 +56,7 @@ "dirname": "cli", "commands": { "strategy": "explicit", - "target": "./cli/index.ts", + "target": "./cli/index", "identifier": "commands" }, "additionalHelpFlags": ["-h"],