(tree)
| 1018 | * @return {BroccoliTree} |
| 1019 | */ |
| 1020 | packagePublic(tree) { |
| 1021 | if (this._cachedPublic === null) { |
| 1022 | this._cachedPublic = new Funnel(tree, { |
| 1023 | srcDir: 'public', |
| 1024 | destDir: '.', |
| 1025 | }); |
| 1026 | } |
| 1027 | |
| 1028 | return this._cachedPublic; |
| 1029 | } |
| 1030 | |
| 1031 | /* |
| 1032 | * Given an input tree, returns a properly assembled Broccoli tree with |
no outgoing calls
no test coverage detected