As part of the build process, the build script in example/package.json copies the Javascript files and WASM binaries from the top-level directory into the example/ folder.
However, these files are not ignored via .gitignore which leads to these build artifacts being committed back to the project, inflating the size on disk unnecessarily.
This PR removes the build artifacts from the project and adds the necessary VCS ignore patterns to prevent a re-occurrence.
As part of the build process, the build script in
example/package.json
copies the Javascript files and WASM binaries from the top-level directory into theexample/
folder.However, these files are not ignored via
.gitignore
which leads to these build artifacts being committed back to the project, inflating the size on disk unnecessarily.This PR removes the build artifacts from the project and adds the necessary VCS ignore patterns to prevent a re-occurrence.