Returns the tree for all style files @public @method treeForStyles @param {Tree} tree The tree to process, usually `app/styles/` in the addon. @return {Tree} The return tree has the same contents as the input tree, but is moved so that the `app/styles/` path is preserved.
(tree)
| 831 | @return {Tree} The return tree has the same contents as the input tree, but is moved so that the `app/styles/` path is preserved. |
| 832 | */ |
| 833 | treeForStyles(tree) { |
| 834 | if (!tree) { |
| 835 | return tree; |
| 836 | } |
| 837 | |
| 838 | return new Funnel(tree, { |
| 839 | destDir: 'app/styles', |
| 840 | annotation: `Addon#treeForStyles (${this.name})`, |
| 841 | }); |
| 842 | }, |
| 843 | |
| 844 | /** |
| 845 | Returns the tree for all vendor files |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…