When following the development instructions, you will run into the following issues:
- Using
pnpm build will cause 2 errors:
-- rm is not a valid command on Windows, causing it not to delete .woff2 files.
-- MediaWiki files will not create due to them having a : in their name, which files on Windows do not support. Swapping the : out in vite.config.ts will resolve this.
- Using
pnpm lint will cause an error:
-- lint is not a valid command. Adding "lint": "eslint ." in the scripts JSON will resolve this.
When following the development instructions, you will run into the following issues:
pnpm buildwill cause 2 errors:--
rmis not a valid command on Windows, causing it not to delete.woff2files.-- MediaWiki files will not create due to them having a
:in their name, which files on Windows do not support. Swapping the:out invite.config.tswill resolve this.pnpm lintwill cause an error:--
lintis not a valid command. Adding"lint": "eslint ."in thescriptsJSON will resolve this.