diff --git a/site/static/workers/compiler.js b/site/static/workers/compiler.js index fd185db843..9c79eebe44 100644 --- a/site/static/workers/compiler.js +++ b/site/static/workers/compiler.js @@ -36,10 +36,8 @@ function compile({ source, options, entry }) { Object.assign({}, commonCompilerOptions, options) ); - vars = vars || stats.vars; // TODO remove this post-launch - const props = entry - ? vars.map(v => v.export_name).filter(Boolean) + ? (vars || stats.vars).map(v => v.export_name).filter(Boolean) // TODO remove stats post-launch : null; return { js: js.code, css: css.code, props };