(tree)
| 622 | * @param {BroccoliTree} tree |
| 623 | */ |
| 624 | packageVendor(tree) { |
| 625 | if (this._cachedVendor === null) { |
| 626 | this._cachedVendor = new Funnel(tree, { |
| 627 | destDir: DEFAULT_VENDOR_PATH, |
| 628 | annotation: 'Packaged Vendor', |
| 629 | }); |
| 630 | } |
| 631 | |
| 632 | return this._cachedVendor; |
| 633 | } |
| 634 | |
| 635 | /* |
| 636 | * Given an input tree, returns a properly assembled Broccoli tree with tests |
no outgoing calls
no test coverage detected