From 5d909440fd8a016599081898d53f423ebb78761f Mon Sep 17 00:00:00 2001 From: Katsute <58778985+Katsute@users.noreply.github.com> Date: Sun, 31 Mar 2024 16:06:55 -0400 Subject: [PATCH] include license --- build.js | 1 + 1 file changed, 1 insertion(+) diff --git a/build.js b/build.js index 59a23c1..c9a38f9 100644 --- a/build.js +++ b/build.js @@ -19,6 +19,7 @@ const ext = path.join(__dirname, "extension.zip"); } /* copy src to zip */ { + fs.copyFileSync("LICENSE", path.join(dist, "LICENSE.txt")); for(const file of fs.readdirSync(src)) fs.copyFileSync(path.join(src, file), path.join(dist, file)); }