Created
September 17, 2017 00:48
-
-
Save bcardarella/501963371b32c24b363f1510d2e23925 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
➜ high-tide-app git:(master) ✗ ember build | |
⠸ Buildingbroccoli-babel-transpiler is opting out of caching due to a plugin that does not provide a caching strategy: `function () { | |
return { | |
visitor: { | |
VariableDeclaration: function VariableDeclaration(path, file) { | |
var node = path.node, | |
parent = path.parent, | |
scope = path.scope; | |
if (!isBlockScoped(node)) return; | |
convertBlockScopedToVar(path, null, parent, scope, true); | |
if (node._tdzThis) { | |
var nodes = [node]; | |
for (var i = 0; i < node.declarations.length; i++) { | |
var decl = node.declarations[i]; | |
if (decl.init) { | |
var assign = t.assignmentExpression("=", decl.id, decl.init); | |
assign._ignoreBlockScopingTDZ = true; | |
nodes.push(t.expressionStatement(assign)); | |
} | |
decl.init = file.addHelper("temporalUndefined"); | |
} | |
node._blockHoist = 2; | |
if (path.isCompletionRecord()) { | |
nodes.push(t.expressionStatement(scope.buildUndefinedNode())); | |
} | |
path.replaceWithMultiple(nodes); | |
} | |
}, | |
Loop: function Loop(path, file) { | |
var node = path.node, | |
parent = path.parent, | |
scope = path.scope; | |
t.ensureBlock(node); | |
var blockScoping = new BlockScoping(path, path.get("body"), parent, scope, file); | |
var replace = blockScoping.run(); | |
if (replace) path.replaceWith(replace); | |
}, | |
CatchClause: function CatchClause(path, file) { | |
var parent = path.parent, | |
scope = path.scope; | |
var blockScoping = new BlockScoping(null, path.get("body"), parent, scope, file); | |
blockScoping.run(); | |
}, | |
"BlockStatement|SwitchStatement|Program": function BlockStatementSwitchStatementProgram(path, file) { | |
if (!ignoreBlock(path)) { | |
var blockScoping = new BlockScoping(null, path, path.parent, path.scope, file); | |
blockScoping.run(); | |
} | |
} | |
} | |
}; | |
}`. | |
⠧ Buildingbroccoli-babel-transpiler is opting out of caching due to a plugin that does not provide a caching strategy: `function () { | |
return { | |
visitor: { | |
VariableDeclaration: function VariableDeclaration(path, file) { | |
var node = path.node, | |
parent = path.parent, | |
scope = path.scope; | |
if (!isBlockScoped(node)) return; | |
convertBlockScopedToVar(path, null, parent, scope, true); | |
if (node._tdzThis) { | |
var nodes = [node]; | |
for (var i = 0; i < node.declarations.length; i++) { | |
var decl = node.declarations[i]; | |
if (decl.init) { | |
var assign = t.assignmentExpression("=", decl.id, decl.init); | |
assign._ignoreBlockScopingTDZ = true; | |
nodes.push(t.expressionStatement(assign)); | |
} | |
decl.init = file.addHelper("temporalUndefined"); | |
} | |
node._blockHoist = 2; | |
if (path.isCompletionRecord()) { | |
nodes.push(t.expressionStatement(scope.buildUndefinedNode())); | |
} | |
path.replaceWithMultiple(nodes); | |
} | |
}, | |
Loop: function Loop(path, file) { | |
var node = path.node, | |
parent = path.parent, | |
scope = path.scope; | |
t.ensureBlock(node); | |
var blockScoping = new BlockScoping(path, path.get("body"), parent, scope, file); | |
var replace = blockScoping.run(); | |
if (replace) path.replaceWith(replace); | |
}, | |
CatchClause: function CatchClause(path, file) { | |
var parent = path.parent, | |
scope = path.scope; | |
var blockScoping = new BlockScoping(null, path.get("body"), parent, scope, file); | |
blockScoping.run(); | |
}, | |
"BlockStatement|SwitchStatement|Program": function BlockStatementSwitchStatementProgram(path, file) { | |
if (!ignoreBlock(path)) { | |
var blockScoping = new BlockScoping(null, path, path.parent, path.scope, file); | |
blockScoping.run(); | |
} | |
} | |
} | |
}; | |
}`. | |
⠇ Building'instrument' is imported from external module 'ember-data/-debug' but never used | |
⠦ BuildingNode#before is deprecated. Use Node#raws.before | |
Node#moveAfter was deprecated. Use Node#after. | |
cleaning up... | |
Built project successfully. Stored in "dist/". |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment