From 8189ee4740066938b9f640bf0847aa707bcbfc96 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sat, 30 Dec 2023 11:59:23 +0100 Subject: [PATCH] Update the Closure compiler (no big changes). --- build.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 \ -- 2.39.2