From 378a22adb56d9f80135a4fdb73aead50e103ba23 Mon Sep 17 00:00:00 2001 From: Joram van den Boezem Date: Thu, 12 May 2022 12:53:39 +0200 Subject: [PATCH 1/2] fix: missing yargs.mjs Due to the `yargs.mjs` file not being published, the fix merged with #2151 is not effective yet. This change should fix that. ``` Cannot find module './node_modules/yargs/yargs.mjs' imported from ./cli.js ``` --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 562230282..d20f7f092 100644 --- a/package.json +++ b/package.json @@ -43,6 +43,7 @@ "helpers/*", "index.mjs", "yargs", + "yargs.mjs", "build", "locales", "LICENSE", From e02d4ca6013d1a74e391b9f14e016e56a44677c1 Mon Sep 17 00:00:00 2001 From: Joram van den Boezem Date: Thu, 12 May 2022 13:34:43 +0200 Subject: [PATCH 2/2] fix: add browser.d.ts to package.json `files` --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index d20f7f092..4f4a70bc3 100644 --- a/package.json +++ b/package.json @@ -38,6 +38,7 @@ ], "files": [ "browser.mjs", + "browser.d.ts", "index.cjs", "helpers/*.js", "helpers/*",