diff options
author | Juan J. Martinez <jjm@usebox.net> | 2023-12-29 09:42:14 +0000 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2023-12-29 09:42:14 +0000 |
commit | cc69545497a0c4f0cc64e298f2b206dae083fc17 (patch) | |
tree | 1b136cf61f06d122ded95a7eeff0bd8b2386b340 | |
parent | 71e1111a4574fc751238b97690ec1b928025da05 (diff) | |
download | js-canvas-2023-cc69545497a0c4f0cc64e298f2b206dae083fc17.tar.gz js-canvas-2023-cc69545497a0c4f0cc64e298f2b206dae083fc17.zip |
Prevent the closure compiler from breaking the code
-rwxr-xr-x | min | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,4 +1,4 @@ #!/bin/bash mkdir -p out -java -jar ./tools/closure-compiler-v20231112.jar --js js/**.js --compilation_level ADVANCED --language_out ECMASCRIPT_2016 --js_output_file out/game.min.js +java -jar ./tools/closure-compiler-v20231112.jar --js js/**.js --language_out ECMASCRIPT_2016 --js_output_file out/game.min.js |