()
| 1021 | * @return {BroccoliTree} |
| 1022 | */ |
| 1023 | getPublic() { |
| 1024 | let addonPublicTrees = this.addonTreesFor('public'); |
| 1025 | addonPublicTrees = addonPublicTrees.concat(this.trees.public); |
| 1026 | |
| 1027 | let mergedPublicTrees = mergeTrees(addonPublicTrees, { |
| 1028 | annotation: 'Public', |
| 1029 | overwrite: true, |
| 1030 | }); |
| 1031 | |
| 1032 | return new Funnel(mergedPublicTrees, { |
| 1033 | destDir: 'public', |
| 1034 | }); |
| 1035 | } |
| 1036 | |
| 1037 | /** |
| 1038 | Runs the `app`, `tests` and `templates` trees through the chain of addons that produces lint trees. |
no test coverage detected