1
0
mirror of https://github.com/Eugeny/tabby.git synced 2025-08-13 12:51:51 +00:00

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`.
This commit is contained in:
Thomas Kapocsi
2023-04-27 17:26:14 -06:00
committed by GitHub
parent da0a4569de
commit d81d942d7f

@@ -42,13 +42,13 @@ yarn start
To build an installer, first complete a "normal" build as described above and then run: 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 # or
node scripts/build-linux.js node scripts/build-linux.mjs
# or # or
node scripts/build-macos.js node scripts/build-macos.mjs
``` ```
The artifacts will be produced in the `dist` folder. The artifacts will be produced in the `dist` folder.