Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorBenjamin Neff <benjamin@coding4coffee.ch>2021-08-16 01:24:47 +0300
committerBenjamin Neff <benjamin@coding4coffee.ch>2021-08-16 01:24:47 +0300
commite2b96c81f24958bdeb089579e18d7727eb8153c1 (patch)
tree74adcba32c7d5282c19d063902168f1612bdbff9 /lib
parentd02848c216f4e8068476ead14d5d0a622315a4ce (diff)
parent8691e650dc726fb929df33409475594111b231da (diff)
Merge branch 'next-minor' into develop
Diffstat (limited to 'lib')
-rw-r--r--lib/bookmarklet_renderer.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bookmarklet_renderer.rb b/lib/bookmarklet_renderer.rb
index 75b2b51f1..a8e998a73 100644
--- a/lib/bookmarklet_renderer.rb
+++ b/lib/bookmarklet_renderer.rb
@@ -30,7 +30,7 @@ class BookmarkletRenderer
def compile
src = File.read(source)
- @body = Uglifier.compile(src)
+ @body = Terser.compile(src)
FileUtils.mkdir_p cached_path.dirname
File.open(cached_path, "w") {|f| f.write(@body) }
end