From d81d942d7f4b9774fe3dc14dc9e87ed10fca29e5 Mon Sep 17 00:00:00 2001 From: Thomas Kapocsi <84490604+Kapocsi@users.noreply.github.com> Date: Thu, 27 Apr 2023 17:26:14 -0600 Subject: [PATCH] Fix name of scripts in Hacking.md Fixed mismatch in the naming scheme of scripts. All the scripts listed under building an installer use the extension `.js` whereas the files themselves use `.mjs`. --- HACKING.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/HACKING.md b/HACKING.md index 2e45ec80..31230aeb 100644 --- a/HACKING.md +++ b/HACKING.md @@ -42,13 +42,13 @@ yarn start To build an installer, first complete a "normal" build as described above and then run: ``` -node scripts/prepackage-plugins.js +node scripts/prepackage-plugins.mjs -node scripts/build-windows.js +node scripts/build-windows.mjs # or -node scripts/build-linux.js +node scripts/build-linux.mjs # or -node scripts/build-macos.js +node scripts/build-macos.mjs ``` The artifacts will be produced in the `dist` folder.