Will
Will
## Summary Noticed this error + stack trace while playing a practice game locally: ``` Uncaught TypeError: WebGLRenderingContext.bindBuffer: Argument 2 is not an object. postStep vendor.js:52124 postStep vendor.js:51396 update BaseParticleSystem.js:1337...
## Summary Creating a Firebase Realtime Database in EU (Belgium) or AP (Singapore) results in a Firebase URL which does not end in `firebaseio.com`, which is required by our current...
Several unit tests have been disabled until we have time to go back and update them. search for `Test disabled` in the repo to find them: ``` % git grep...
We have several files with overrides set in `.eslintrc.json`: ``` { "files": ["app/**/*.js"], "rules": {"camelcase": ["warn"]} }, { "files": ["test/**/*.js"], "rules": {"no-unused-expressions": ["off"]} } ``` We should remove these overrides...
Once #52 and #54 are resolved, running `yarn snyk` will succeed, allowing us to enable it in CI (via `yarn snyk`). We'll need to add a token to Github Actions...
There is a minor vulnerability in our version of `moment`: https://security.snyk.io/vuln/SNYK-JS-MOMENT-2440688) Upgrading to v2.29.2 will resolve this, but we have several date strings which don't satisfy RFC2822 or ISO formats...
## Summary We have `"engines": {"yarn": ">= 1.0.0"}`` set in `package.json`, but I just realized Yarn 3.2.4 is available. Let's see if we can upgrade without any breakage.
## Summary We currently use Electron v2. The latest version is v21. Support for `arm64` Macs was added in v11. Upgrading directly to v11 cause the app to fail to...
Running Terraform in CI would solve a few things: - Avoiding version mismatch issues on local machines - Allowing anyone to work on the infra without distributing AWS access keys...
As of #47, we are running integration tests in Github Actions. However, we are only running a subset of the available tests. We should repair the following tests and enable...