Returns a list of paths (including addon paths) where blueprints will be looked up. @private @method blueprintLookupPaths @return {Array} List of paths
()
| 522 | @return {Array} List of paths |
| 523 | */ |
| 524 | blueprintLookupPaths() { |
| 525 | if (this.isEmberCLIProject()) { |
| 526 | let lookupPaths = [this.localBlueprintLookupPath()]; |
| 527 | let addonLookupPaths = this.addonBlueprintLookupPaths(); |
| 528 | |
| 529 | return lookupPaths.concat(addonLookupPaths); |
| 530 | } else { |
| 531 | return this.addonBlueprintLookupPaths(); |
| 532 | } |
| 533 | } |
| 534 | |
| 535 | /** |
| 536 | Returns a list of addon paths where blueprints will be looked up. |
no test coverage detected