build(broccoli): add a tree-differ workaround to browser trees
This commit is contained in:
parent
8ea03d0380
commit
2827ca1559
|
@ -117,5 +117,10 @@ module.exports = function makeBrowserTree(options, destinationPath) {
|
||||||
|
|
||||||
var mergedTree = mergeTrees([stew.mv(es6Tree, '/es6'), stew.mv(es5Tree, '/es5')]);
|
var mergedTree = mergeTrees([stew.mv(es6Tree, '/es6'), stew.mv(es5Tree, '/es5')]);
|
||||||
|
|
||||||
|
// TODO(iminar): tree differ seems to have issues with trees created by mergeTrees, investigate!
|
||||||
|
// ENOENT error is thrown while doing fs.readdirSync on inputRoot
|
||||||
|
// in the meantime, we just do noop mv to create a new tree
|
||||||
|
mergedTree = stew.mv(mergedTree, '');
|
||||||
|
|
||||||
return destCopy(mergedTree, destinationPath);
|
return destCopy(mergedTree, destinationPath);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue