diff options
author | Juan J. Martinez <jjm@usebox.net> | 2023-12-29 09:52:03 +0000 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2023-12-29 09:52:03 +0000 |
commit | 49d733c84dc142ca34aa4bec3a6f66203018d822 (patch) | |
tree | 77f8425209f2da4e905d6a4d4fb2e9c305e107e4 | |
parent | cc69545497a0c4f0cc64e298f2b206dae083fc17 (diff) | |
download | js-canvas-2023-49d733c84dc142ca34aa4bec3a6f66203018d822.tar.gz js-canvas-2023-49d733c84dc142ca34aa4bec3a6f66203018d822.zip |
Put back optimisations, prevent closure compiler from breaking code
-rw-r--r-- | js/game.js | 6 | ||||
-rwxr-xr-x | min | 2 |
2 files changed, 4 insertions, 4 deletions
@@ -80,9 +80,9 @@ class Game { resize() { const scale = Math.floor(window.innerHeight / this.canvas.height); - this.canvas.style.imageRendering = "pixelated"; - this.canvas.style.transformOrigin = "top"; - this.canvas.style.transform = `scale(${scale})`; + this.canvas.style["imageRendering"] = "pixelated"; + this.canvas.style["transformOrigin"] = "top"; + this.canvas.style["transform"] = `scale(${scale})`; } loop(now) { @@ -1,4 +1,4 @@ #!/bin/bash mkdir -p out -java -jar ./tools/closure-compiler-v20231112.jar --js js/**.js --language_out ECMASCRIPT_2016 --js_output_file out/game.min.js +java -jar ./tools/closure-compiler-v20231112.jar --compilation_level ADVANCED_OPTIMIZATIONS --js js/**.js --language_out ECMASCRIPT_2016 --js_output_file out/game.min.js |