Class: Sprockets::BabelProcessor
Relationships & Source Files | |
Inherits: | Object |
Defined in: | lib/sprockets/babel_processor.rb |
Constant Summary
-
VERSION =
# File 'lib/sprockets/babel_processor.rb', line 9'1'
Class Method Summary
Instance Attribute Summary
- #cache_key readonly
Instance Method Summary
Constructor Details
.new(options = {}) ⇒ BabelProcessor
# File 'lib/sprockets/babel_processor.rb', line 25
def initialize( = {}) @options = .merge({ 'blacklist' => ( ['blacklist'] || []) + ['useStrict'], 'sourceMap' => true }).freeze @cache_key = [ self.class.name, Autoload::Babel::Transpiler::VERSION, Autoload::Babel::Source::VERSION, VERSION, @options ].freeze end
Class Method Details
.cache_key
[ GitHub ]# File 'lib/sprockets/babel_processor.rb', line 19
def self.cache_key instance.cache_key end
.call(input)
[ GitHub ]# File 'lib/sprockets/babel_processor.rb', line 15
def self.call(input) instance.call(input) end
.instance
[ GitHub ]# File 'lib/sprockets/babel_processor.rb', line 11
def self.instance @instance ||= new end
Instance Attribute Details
#cache_key (readonly)
[ GitHub ]# File 'lib/sprockets/babel_processor.rb', line 23
attr_reader :cache_key
Instance Method Details
#call(input)
[ GitHub ]# File 'lib/sprockets/babel_processor.rb', line 40
def call(input) data = input[:data] result = input[:cache].fetch(@cache_key + [input[:filename]] + [data]) do opts = { 'moduleRoot' => nil, 'filename' => input[:filename], 'filenameRelative' => PathUtils.split_subpath(input[:load_path], input[:filename]), 'sourceFileName' => File.basename(input[:filename]), 'sourceMapTarget' => input[:filename] }.merge(@options) if opts['moduleIds'] && opts['moduleRoot'] opts['moduleId'] ||= File.join(opts['moduleRoot'], input[:name]) elsif opts['moduleIds'] opts['moduleId'] ||= input[:name] end Autoload::Babel::Transpiler.transform(data, opts) end map = SourceMapUtils.format_source_map(result["map"], input) map = SourceMapUtils.combine_source_maps(input[: ][:map], map) { data: result['code'], map: map } end