Used to retrieve a blueprint with the given name. @method lookupBlueprint @param {String} dasherizedName @return {Blueprint} @public
(dasherizedName)
| 1395 | @public |
| 1396 | */ |
| 1397 | lookupBlueprint(dasherizedName) { |
| 1398 | let projectPaths = this.project ? this.project.blueprintLookupPaths() : []; |
| 1399 | |
| 1400 | return Blueprint.lookup(dasherizedName, { |
| 1401 | paths: projectPaths, |
| 1402 | }); |
| 1403 | }, |
| 1404 | }); |
| 1405 | |
| 1406 | const builtInBlueprints = new Map([ |
nothing calls this directly
no test coverage detected
searching dependent graphs…