Skip to content

CLJS-3374: Bump Closure Compiler to latest version #176

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{:paths ["src/main/clojure" "src/main/cljs" "resources"]
:deps
{com.google.javascript/closure-compiler-unshaded {:mvn/version "v20210808"}
{com.google.javascript/closure-compiler-unshaded {:mvn/version "v20220502"}
com.cognitect/transit-clj {:mvn/version "1.0.329"}
org.clojure/clojure {:mvn/version "1.10.0"}
org.clojure/core.specs.alpha {:mvn/version "0.1.24"}
Expand Down Expand Up @@ -28,4 +28,3 @@
:uberjar {:extra-deps {com.github.seancorfield/depstar {:mvn/version "2.0.193"}}
:exec-fn hf.depstar/uberjar
:exec-args {:aot true}}}}

2 changes: 1 addition & 1 deletion pom.template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<dependency>
<groupId>com.google.javascript</groupId>
<artifactId>closure-compiler-unshaded</artifactId>
<version>v20210808</version>
<version>v20220502</version>
</dependency>
<dependency>
<groupId>org.clojure</groupId>
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
[org.clojure/test.check "1.1.1" :scope "test"]
[com.cognitect/transit-clj "1.0.329"]
[org.clojure/google-closure-library "0.0-20211011-0726fdeb"]
[com.google.javascript/closure-compiler-unshaded "v20210808"]]
[com.google.javascript/closure-compiler-unshaded "v20220502"]]
:profiles {:1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}
:uberjar {:aot :all :main cljs.main}
:closure-snapshot {:dependencies [[com.google.javascript/closure-compiler-unshaded "1.0-SNAPSHOT"]]}}
Expand Down
2 changes: 1 addition & 1 deletion script/bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -e
CLOJURE_RELEASE="1.9.0"
SPEC_ALPHA_RELEASE="0.1.143"
CORE_SPECS_ALPHA_RELEASE="0.1.24"
CLOSURE_RELEASE="20210808"
CLOSURE_RELEASE="20220502"
DJSON_RELEASE="2.4.0"
TRANSIT_RELEASE="1.0.329"
GCLOSURE_LIB_RELEASE="0.0-20211011-0726fdeb"
Expand Down
1 change: 0 additions & 1 deletion src/main/clojure/cljs/closure.clj
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,6 @@
:undefined-variables DiagnosticGroups/UNDEFINED_VARIABLES
:underscore DiagnosticGroups/UNDERSCORE
:unknown-defines DiagnosticGroups/UNKNOWN_DEFINES
:unnecessary-escape DiagnosticGroups/UNNECESSARY_ESCAPE
:unused-local-variable DiagnosticGroups/UNUSED_LOCAL_VARIABLE
:unused-private-property DiagnosticGroups/UNUSED_PRIVATE_PROPERTY
:violated-module-dep DiagnosticGroups/VIOLATED_MODULE_DEP
Expand Down