From: Steinar H. Gunderson Date: Sat, 30 Dec 2023 10:59:23 +0000 (+0100) Subject: Update the Closure compiler (no big changes). X-Git-Url: https://git.sesse.net/?p=remoteglot;a=commitdiff_plain;h=8189ee4740066938b9f640bf0847aa707bcbfc96 Update the Closure compiler (no big changes). --- diff --git a/build.sh b/build.sh index c970b13..75141e4 100755 --- a/build.sh +++ b/build.sh @@ -1,12 +1,12 @@ #! /bin/sh -# Download http://dl.google.com/closure-compiler/compiler-latest.zip -# and unzip it in closure/ before running this script. +# Download the latest .jar from +# https://mvnrepository.com/artifact/com.google.javascript/closure-compiler/v20231112 +# (adjust the URL for the version you want) before running this script. umask 022 -java -jar closure-compiler-v20221004.jar \ - --language_in ECMASCRIPT_2018 \ +java -jar closure-compiler-v20231112.jar \ --compilation_level SIMPLE \ --js_output_file=www/js/remoteglot.min.js \ www/js/chessboard-0.3.0.js \