Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 3bd95db

Browse files
committed
chore(Rakefile): tune JVM for closure compiler
Using the client VM and forcing 32bit mode gives us huge perf boost. before: reali 0m8.173s user 0m39.984s sys 0m1.408s after: real 0m3.000s user 0m12.687s sys 0m0.852s
1 parent c959fa4 commit 3bd95db

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Rakefile

+4-1
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,10 @@ def closure_compile(filename)
290290

291291
min_path = path_to(filename.gsub(/\.js$/, '.min.js'))
292292

293-
%x(java -jar lib/closure-compiler/compiler.jar \
293+
%x(java \
294+
-client \
295+
-d32 \
296+
-jar lib/closure-compiler/compiler.jar \
294297
--compilation_level SIMPLE_OPTIMIZATIONS \
295298
--language_in ECMASCRIPT5_STRICT \
296299
--js #{path_to(filename)} \

0 commit comments

Comments
 (0)