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] 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",