We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e1f0758 + b9dfc87 commit f752681Copy full SHA for f752681
index.js
@@ -275,7 +275,9 @@ module.exports = {
275
},
276
277
cacheKeyForTree(treeType) {
278
- if (treeType === 'addon') {
+ if (treeType === 'vendor') {
279
+ return cacheKeyForTree('vendor', this, [this._shouldIncludePolyfill()]);
280
+ } else if (treeType === 'addon') {
281
let isRootBabel = this.parent === this.project;
282
let shouldIncludeHelpers = isRootBabel && _shouldIncludeHelpers(this._getAppOptions(), this);
283
0 commit comments