Skip to content

Instantly share code, notes, and snippets.

@mfd
Forked from hooptie45/sourcemap-extract.rb
Created December 6, 2017 23:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mfd/6ff27f1f81b4ed06bcd3c57f2a8cfa7d to your computer and use it in GitHub Desktop.
Save mfd/6ff27f1f81b4ed06bcd3c57f2a8cfa7d to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
require 'open-uri'
require 'pathname'
require 'json'
def strip_hash(f)
ext = f.extname
if ext.include?("?")
f.sub_ext(ext.split("?").first)
else
f
end
end
sourcemap_url = ARGV[0] or "USAGE: sourcemap-extract.rb <source-map-url> [<destination>]"
destination = ARGV[1]
destination ||= "./tmp"
root = Pathname(destination || "./tmp").expand_path
sourcemap = open(sourcemap_url).read
files, contents = JSON(sourcemap).values_at(*%w(sources sourcesContent))
files = files.map { |f| f.sub("~", "./vendor") }
files = files.map { |f| root.join(f).expand_path }
files = files.map { |f| strip_hash(f) }
files.zip(contents).each_with_index do |(dest, source), index|
dest.dirname.mkpath
puts "[%4s] \t (%5s) \t WROTE %s" % [index, dest.write(source), dest.relative_path_from(Pathname(".").expand_path)]
end
puts "\nDESTINATION #{root}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment