compile ➡️ transpile

This commit is contained in:
Michelle Tilley
2016-10-29 21:58:09 -07:00
parent 07d13c1855
commit 8521e47e20

View File

@@ -120,7 +120,7 @@ Object.assign(PackageTranspilationRegistry.prototype, {
var transpiler = this.getTranspiler(spec)
if (transpiler) {
var result = transpiler.compile(sourceCode, filePath, spec.options || {})
var result = transpiler.transpile(sourceCode, filePath, spec.options || {})
if (result === undefined) {
return sourceCode
} else {