Skip to content

Commit 695afb8

Browse files
CLJS-3374: Bump Closure Compiler to latest version (#176)
* fix #3374 bump closure compiler to latest version, svg.js was not included in the default externs previously * remove missing diagnostic group Co-authored-by: Timothy Pratley <[email protected]>
1 parent 1dd1910 commit 695afb8

File tree

5 files changed

+4
-6
lines changed

5 files changed

+4
-6
lines changed

deps.edn

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{:paths ["src/main/clojure" "src/main/cljs" "resources"]
22
:deps
3-
{com.google.javascript/closure-compiler-unshaded {:mvn/version "v20210808"}
3+
{com.google.javascript/closure-compiler-unshaded {:mvn/version "v20220502"}
44
com.cognitect/transit-clj {:mvn/version "1.0.329"}
55
org.clojure/clojure {:mvn/version "1.10.0"}
66
org.clojure/core.specs.alpha {:mvn/version "0.1.24"}
@@ -28,4 +28,3 @@
2828
:uberjar {:extra-deps {com.github.seancorfield/depstar {:mvn/version "2.0.193"}}
2929
:exec-fn hf.depstar/uberjar
3030
:exec-args {:aot true}}}}
31-

pom.template.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<dependency>
3131
<groupId>com.google.javascript</groupId>
3232
<artifactId>closure-compiler-unshaded</artifactId>
33-
<version>v20210808</version>
33+
<version>v20220502</version>
3434
</dependency>
3535
<dependency>
3636
<groupId>org.clojure</groupId>

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
[org.clojure/test.check "1.1.1" :scope "test"]
1717
[com.cognitect/transit-clj "1.0.329"]
1818
[org.clojure/google-closure-library "0.0-20211011-0726fdeb"]
19-
[com.google.javascript/closure-compiler-unshaded "v20210808"]]
19+
[com.google.javascript/closure-compiler-unshaded "v20220502"]]
2020
:profiles {:1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}
2121
:uberjar {:aot :all :main cljs.main}
2222
:closure-snapshot {:dependencies [[com.google.javascript/closure-compiler-unshaded "1.0-SNAPSHOT"]]}}

script/bootstrap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -e
55
CLOJURE_RELEASE="1.9.0"
66
SPEC_ALPHA_RELEASE="0.1.143"
77
CORE_SPECS_ALPHA_RELEASE="0.1.24"
8-
CLOSURE_RELEASE="20210808"
8+
CLOSURE_RELEASE="20220502"
99
DJSON_RELEASE="2.4.0"
1010
TRANSIT_RELEASE="1.0.329"
1111
GCLOSURE_LIB_RELEASE="0.0-20211011-0726fdeb"

src/main/clojure/cljs/closure.clj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,6 @@
193193
:undefined-variables DiagnosticGroups/UNDEFINED_VARIABLES
194194
:underscore DiagnosticGroups/UNDERSCORE
195195
:unknown-defines DiagnosticGroups/UNKNOWN_DEFINES
196-
:unnecessary-escape DiagnosticGroups/UNNECESSARY_ESCAPE
197196
:unused-local-variable DiagnosticGroups/UNUSED_LOCAL_VARIABLE
198197
:unused-private-property DiagnosticGroups/UNUSED_PRIVATE_PROPERTY
199198
:violated-module-dep DiagnosticGroups/VIOLATED_MODULE_DEP

0 commit comments

Comments
 (0)