From 5de837e85583b7e505e2cb9effece9e723b10610 Mon Sep 17 00:00:00 2001 From: Guido Zuidhof Date: Thu, 20 Jun 2024 13:20:14 +0200 Subject: [PATCH] Fix LICENSE filename in prepublish script --- prepublish.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prepublish.mjs b/prepublish.mjs index 1463556..caa3a87 100644 --- a/prepublish.mjs +++ b/prepublish.mjs @@ -25,7 +25,7 @@ import filepath from "path"; const outFolder = "dist"; - for (const file of ["LICENSE.md", "README.md", "CHANGELOG.md"]) { + for (const file of ["LICENSE", "README.md", "CHANGELOG.md"]) { fs.copyFileSync(file, filepath.join(outFolder, file)); }