From d37c5b7f2ba3b0a225012fab8ad5247a653ee78e Mon Sep 17 00:00:00 2001 From: Tom <25043847+Douile@users.noreply.github.com> Date: Tue, 28 Nov 2023 10:59:13 +0000 Subject: [PATCH] Fix cli with the new module layout (#420) --- bin/gamedig.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/gamedig.js b/bin/gamedig.js index cbc995b..874d4bf 100644 --- a/bin/gamedig.js +++ b/bin/gamedig.js @@ -3,7 +3,7 @@ import * as process from "node:process"; import Minimist from 'minimist' -import GameDig from './../lib/index.js' +import { GameDig } from './../lib/index.js' const argv = Minimist(process.argv.slice(2), { boolean: ['pretty', 'debug', 'givenPortOnly', 'requestRules'],