rename runtime option to externalHelpers

This commit is contained in:
Sebastian McKenzie 2015-02-15 19:53:59 +11:00
parent 1d34d03ac8
commit 02046c5448

View File

@ -85,7 +85,7 @@ File.validOptions = [
"playground",
"experimental",
"resolveModuleSource",
"runtime",
"externalHelpers",
"auxilaryComment",
// these are used by plugins
@ -107,6 +107,7 @@ File.prototype.normalizeOptions = function (opts) {
defaults(opts, {
keepModuleIdExtensions: false,
resolveModuleSource: null,
externalHelpers: false,
auxilaryComment: "",
experimental: false,
reactCompat: false,
@ -120,7 +121,6 @@ File.prototype.normalizeOptions = function (opts) {
comments: true,
filename: "unknown",
modules: "common",
runtime: false,
loose: [],
code: true,
ast: true
@ -164,7 +164,7 @@ File.prototype.normalizeOptions = function (opts) {
opts.experimental = true;
}
if (opts.runtime) {
if (opts.externalHelpers) {
this.set("runtimeIdentifier", t.identifier("babelHelpers"));
}