Skip to content
This repository has been archived by the owner on Oct 9, 2020. It is now read-only.

Commit

Permalink
esm plugins are now correctly transpiled (fixes systemjs/plugin-text#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamburgess committed Feb 23, 2016
1 parent 3e81fc2 commit 13ed8f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compilers/esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ exports.compile = function(load, opts, loader) {
lowResolutionSourceMap: opts.lowResSourceMaps
});

var tree = load.metadata.parseTree || compiler.parse(load.source, load.path);
var tree = load.metadata.parseTree || compiler.parse(source, load.path);

if (opts.normalize) {
var transformer = new TraceurImportNormalizeTransformer(function(dep) {
Expand Down

0 comments on commit 13ed8f8

Please sign in to comment.