File tree Expand file tree Collapse file tree 5 files changed +9
-4
lines changed Expand file tree Collapse file tree 5 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 30
30
<dependency >
31
31
<groupId >com.google.javascript</groupId >
32
32
<artifactId >closure-compiler-unshaded</artifactId >
33
- <version >v20161201 </version >
33
+ <version >v20170218 </version >
34
34
</dependency >
35
35
<dependency >
36
36
<groupId >org.clojure</groupId >
Original file line number Diff line number Diff line change 14
14
[org.clojure/test.check " 0.9.0" :scope " test" ]
15
15
[com.cognitect/transit-clj " 0.8.285" ]
16
16
[org.clojure/google-closure-library " 0.0-20160609-f42b4a24" ]
17
- [com.google.javascript/closure-compiler-unshaded " v20161201 " ]
17
+ [com.google.javascript/closure-compiler-unshaded " v20170218 " ]
18
18
[org.mozilla/rhino " 1.7R5" ]]
19
19
:profiles {:1.6 {:dependencies [[org.clojure/clojure " 1.6.0" ]]}
20
20
:uberjar {:aot :all :main clojure.main}}
Original file line number Diff line number Diff line change 3
3
set -e
4
4
5
5
CLOJURE_RELEASE=" 1.9.0-alpha14"
6
- CLOSURE_RELEASE=" 20161201 "
6
+ CLOSURE_RELEASE=" 20170218 "
7
7
DJSON_RELEASE=" 0.2.6"
8
8
TRANSIT_RELEASE=" 0.8.285"
9
9
GCLOSURE_LIB_RELEASE=" 0.0-20160609-f42b4a24"
Original file line number Diff line number Diff line change @@ -5,3 +5,5 @@ rm -rf compilation
5
5
rm -rf lib
6
6
rm -rf target
7
7
rm -rf builds
8
+ rm -rf clojure
9
+ rm -rf out
Original file line number Diff line number Diff line change 61
61
JSModule JSModuleGraph SourceMap ProcessCommonJSModules
62
62
AbstractCompiler TransformAMDToCJSModule
63
63
ProcessEs6Modules CompilerInput]
64
+ [com.google.javascript.jscomp.deps ModuleLoader$ResolutionMode]
64
65
[com.google.javascript.rhino Node]
65
66
[java.nio.file Path Paths Files StandardWatchEventKinds WatchKey
66
67
WatchEvent FileVisitor FileVisitResult]
199
200
(defn set-options
200
201
" TODO: Add any other options that we would like to support."
201
202
[opts ^CompilerOptions compiler-options]
203
+ (.setModuleResolutionMode compiler-options ModuleLoader$ResolutionMode/NODE)
204
+
202
205
(when (contains? opts :pretty-print )
203
- (set! ( .prettyPrint compiler-options) (:pretty-print opts)))
206
+ (.setPrettyPrint compiler-options (:pretty-print opts)))
204
207
205
208
(when (contains? opts :pseudo-names )
206
209
(set! (.generatePseudoNames compiler-options) (:pseudo-names opts)))
You can’t perform that action at this time.
0 commit comments