Remove build files from repository
This PR removes the build artifacts from version control. These files are typically generated during the build process and are not necessary to track in Git.
Benefits:
- Reduces repository size and clutter.
- Avoids outdated or conflicting build artifacts in pull requests.
- Pull requests are cleaner and more focused on actual source changes.
- Reduces chances of merge conflicts
- Follows common best practices for modern JavaScript libraries.
The build artifacts can still be produced using npm run build
Originally the app had to be hosted in a web server (the support for the FileSystemAccess API was added just a year ago), so the bundled files were included for users that didn't have experience with node/npm.
I agree with the benefits of removing them now, but I'd need to check with our friend @JesusGod-Pope666-Info if he's ready to install Node and try bundling it himself :)
Why not build the distribution in a pipeline (Git workflow)? That way you can also exclude files which do not belong in there.