DEV: Drop uglifyJS V2 support

This commit is contained in:
romanrizzi 2019-12-04 15:52:50 -03:00
parent 875f0d8fd8
commit b13f427450
1 changed files with 2 additions and 8 deletions

View File

@ -78,15 +78,9 @@ def compress_node(from, to)
source_map_root = assets + ((d = File.dirname(from)) == "." ? "" : "/#{d}")
source_map_url = cdn_path "/assets/#{to}.map"
cmd = if `uglifyjs -V`.match?(/2(.\d*){2}/)
<<~EOS
uglifyjs '#{assets_path}/#{from}' -p relative -m -c -o '#{to_path}' --source-map-root '#{source_map_root}' --source-map '#{assets_path}/#{to}.map' --source-map-url '#{source_map_url}'
EOS
else
<<~EOS
cmd = <<~EOS
uglifyjs '#{assets_path}/#{from}' -m -c -o '#{to_path}' --source-map "root='#{source_map_root}',url='#{source_map_url}'" --output '#{to_path}'
EOS
end
EOS
STDERR.puts cmd
result = `#{cmd} 2>&1`