File tree Expand file tree Collapse file tree 12 files changed +7
-17
lines changed Expand file tree Collapse file tree 12 files changed +7
-17
lines changed Original file line number Diff line number Diff line change 4
4
com.cognitect/transit-java {:mvn/version " 1.0.362" }
5
5
org.clojure/clojure {:mvn/version " 1.10.0" }
6
6
org.clojure/core.specs.alpha {:mvn/version " 0.1.24" }
7
- org.clojure/google-closure-library {:mvn/version " 0.0-20211011-0726fdeb " }
7
+ org.clojure/google-closure-library {:mvn/version " 0.0-20230227-c7c0a541 " }
8
8
org.clojure/spec.alpha {:mvn/version " 0.1.143" }
9
9
org.clojure/tools.reader {:mvn/version " 1.3.6" }
10
10
org.clojure/test.check {:mvn/version " 1.1.1" }}
Original file line number Diff line number Diff line change 35
35
<dependency >
36
36
<groupId >org.clojure</groupId >
37
37
<artifactId >google-closure-library</artifactId >
38
- <version >0.0-20211011-0726fdeb </version >
38
+ <version >0.0-20230227-c7c0a541 </version >
39
39
</dependency >
40
40
<dependency >
41
41
<groupId >org.clojure</groupId >
Original file line number Diff line number Diff line change 14
14
[org.clojure/tools.reader " 1.3.6" ]
15
15
[org.clojure/test.check " 1.1.1" :scope " test" ]
16
16
[com.cognitect/transit-java " 1.0.362" ]
17
- [org.clojure/google-closure-library " 0.0-20211011-0726fdeb " ]
17
+ [org.clojure/google-closure-library " 0.0-20230227-c7c0a541 " ]
18
18
[com.google.javascript/closure-compiler-unshaded " v20220502" ]]
19
19
:profiles {:1.6 {:dependencies [[org.clojure/clojure " 1.6.0" ]]}
20
20
:uberjar {:aot :all :main cljs.main}
Original file line number Diff line number Diff line change 1
1
{:optimizations :none
2
2
:main self-parity.test
3
- :language-in :es6
4
3
:language-out :es6
5
4
:verbose true
6
5
:output-to " builds/out-self-parity/main.js"
Original file line number Diff line number Diff line change 9
9
:npm-deps {:lodash " 4.17.4" }
10
10
:closure-warnings {:non-standard-jsdoc :off :global-this :off }
11
11
:install-deps true
12
- :language-in :es6
13
12
:language-out :es5
14
13
:foreign-libs
15
14
[{:file " src/test/cljs/calculator_global.js"
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ CLOJURE_RELEASE="1.9.0"
6
6
SPEC_ALPHA_RELEASE=" 0.1.143"
7
7
CORE_SPECS_ALPHA_RELEASE=" 0.1.24"
8
8
CLOSURE_RELEASE=" 20220502"
9
- GCLOSURE_LIB_RELEASE=" 0.0-20211011-0726fdeb "
9
+ GCLOSURE_LIB_RELEASE=" 0.0-20230227-c7c0a541 "
10
10
TREADER_RELEASE=" 1.3.6"
11
11
TEST_CHECK_RELEASE=" 1.1.1"
12
12
Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ if ! bin/cljsc src/test/cljs "{:optimizations :advanced
22
22
:npm-deps {:lodash \" 4.17.4\" }
23
23
:closure-warnings {:non-standard-jsdoc :off :global-this :off}
24
24
:install-deps true
25
- :language-in :es6
26
25
:language-out :es5
27
26
:foreign-libs [{:file \" src/test/cljs/calculator_global.js\"
28
27
:provides [\" calculator\" ]
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ mkdir -p builds/out-self-parity/clojure/test
15
15
mv clojure/template.clj builds/out-self-parity/clojure
16
16
mv clojure/test builds/out-self-parity/clojure
17
17
18
- if ! bin/cljsc src/test/self/self_parity " {:optimizations :simple :language-in :es6 :language- out :es5 :output-to \" builds/out-self-parity/main.js\" :output-dir \" builds/out-self-parity\" :main self-parity.test :target :nodejs}" ; then
18
+ if ! bin/cljsc src/test/self/self_parity " {:optimizations :simple :language-out :es5 :output-to \" builds/out-self-parity/main.js\" :output-dir \" builds/out-self-parity\" :main self-parity.test :target :nodejs}" ; then
19
19
>&2 echo ClojureScript compilation failed
20
20
exit 1
21
21
fi ;
Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ if ! bin/cljsc src/test/cljs "{:optimizations :simple
22
22
:npm-deps {:lodash \" 4.17.4\" }
23
23
:closure-warnings {:non-standard-jsdoc :off :global-this :off}
24
24
:install-deps true
25
- :language-in :es6
26
25
:language-out :es5
27
26
:foreign-libs [{:file \" src/test/cljs/calculator_global.js\"
28
27
:provides [\" calculator\" ]
Original file line number Diff line number Diff line change 2598
2598
(ensure-module-opts )
2599
2599
2600
2600
(nil? (:language-in opts))
2601
- (assoc :language-in :es6 )
2601
+ (assoc :language-in :ecmascript-next )
2602
2602
2603
2603
(:stable-names opts)
2604
2604
(as-> opts
3512
3512
(ana/write-analysis-cache 'cljs.core cache src)
3513
3513
(ana/write-analysis-cache 'cljs.core tcache src))
3514
3514
(create-client-js-file
3515
- {:language-in :es6
3515
+ {:language-in :ecmascript-next
3516
3516
:optimizations :simple
3517
3517
:output-dir " aot_out" }
3518
3518
(io/file " resources" " brepl_client.js" ))
Original file line number Diff line number Diff line change 126
126
[" common" " app" ])
127
127
opts {:optimizations :simple
128
128
:output-dir out
129
- :language-in :es6
130
129
:modules {:common {:entries #{" hello.foo.bar" }
131
130
:output-to (.getAbsolutePath common-tmp)}
132
131
:app {:entries #{" hello.core" }
191
190
:opts
192
191
{:output-dir output-dir
193
192
:optimizations :none
194
- :language-in :es6
195
193
:verbose true
196
194
:foreign-libs [{:file " src/test/cljs_build/loader_test/foreignA.js"
197
195
:provides [" foreign.a" ]}
681
679
(let [out (io/file (test/tmp-dir ) " cljs-2903-out" )
682
680
opts {:output-to (.getPath (io/file out " main.js" ))
683
681
:output-dir (.getPath out)
684
- :language-in :es6
685
682
:fingerprint true
686
683
:stable-names true
687
684
:optimizations :advanced }]
715
712
out-file (io/file out " main.js" )
716
713
{:keys [inputs opts]} {:inputs (str (io/file " src" " test" " cljs_build" ))
717
714
:opts {:main 'trivial.core
718
- :language-in :es6
719
715
:output-dir out
720
716
:output-to (.getPath out-file)
721
717
:optimizations :advanced }}
730
726
opts {:main 'trivial.core
731
727
:output-to (.getPath out-file)
732
728
:output-dir out
733
- :language-in :es6
734
729
:optimizations :none }
735
730
cenv (env/default-compiler-env )]
736
731
(test/delete-out-files out)
Original file line number Diff line number Diff line change 45
45
:output-dir output-dir
46
46
:optimizations :advanced
47
47
:verbose true
48
- :language-in :es6
49
48
:modules
50
49
{:cljs-base
51
50
{:output-to (str (io/file output-dir " module-main.js" ))}
You can’t perform that action at this time.
0 commit comments