Skip to content

Commit c488bfe

Browse files
anmonteirodnolen
authored andcommitted
CLJS-2017: Upgrade Closure Compiler to latest April 2017 release
1 parent aa5f001 commit c488bfe

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

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>v20170409</version>
33+
<version>v20170423</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
@@ -14,7 +14,7 @@
1414
[org.clojure/test.check "0.9.0" :scope "test"]
1515
[com.cognitect/transit-clj "0.8.285"]
1616
[org.clojure/google-closure-library "0.0-20160609-f42b4a24"]
17-
[com.google.javascript/closure-compiler-unshaded "v20170409"]
17+
[com.google.javascript/closure-compiler-unshaded "v20170423"]
1818
[org.mozilla/rhino "1.7R5"]]
1919
:profiles {:1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}
2020
:uberjar {:aot :all :main clojure.main}}

script/bootstrap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -e
44

55
CLOJURE_RELEASE="1.9.0-alpha14"
6-
CLOSURE_RELEASE="20170409"
6+
CLOSURE_RELEASE="20170423"
77
DJSON_RELEASE="0.2.6"
88
TRANSIT_RELEASE="0.8.285"
99
GCLOSURE_LIB_RELEASE="0.0-20160609-f42b4a24"

src/main/clojure/cljs/closure.clj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2003,6 +2003,9 @@
20032003
(nil? (find (:closure-warnings opts) :check-types))
20042004
(assoc-in [:closure-warnings :check-types] :off)
20052005

2006+
(nil? (find (:closure-warnings opts) :check-variables))
2007+
(assoc-in [:closure-warnings :check-variables] :off)
2008+
20062009
(nil? (:closure-module-roots opts))
20072010
(assoc :closure-module-roots []))))
20082011

0 commit comments

Comments
 (0)