From 14cf5cc3849a1df797ffbf67b56d34c9d3c584f7 Mon Sep 17 00:00:00 2001 From: Valentin Palkovic Date: Tue, 10 Jan 2023 16:06:17 +0100 Subject: [PATCH] Fix missing declaration in exports statement of cli package.json --- code/lib/cli/package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/lib/cli/package.json b/code/lib/cli/package.json index 8835f238e306..0e7cdfe4ac05 100644 --- a/code/lib/cli/package.json +++ b/code/lib/cli/package.json @@ -29,7 +29,8 @@ "import": "./dist/index.mjs", "types": "./dist/index.d.ts" }, - "./package.json": "./package.json" + "./package.json": "./package.json", + "./bin/index": "./bin/index.js" }, "main": "dist/index.js", "module": "dist/index.mjs",