MCPcopy Create free account
hub / github.com/ember-cli/ember-cli / lookupBlueprint

Function lookupBlueprint

lib/models/blueprint.js:1397–1403  ·  view source on GitHub ↗

Used to retrieve a blueprint with the given name. @method lookupBlueprint @param {String} dasherizedName @return {Blueprint} @public

(dasherizedName)

Source from the content-addressed store, hash-verified

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
1406const builtInBlueprints = new Map([

Callers

nothing calls this directly

Calls 1

blueprintLookupPathsMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…