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

Function blueprintsPath

lib/models/addon.js:1288–1294  ·  view source on GitHub ↗

Returns the path for addon blueprints. @public @method blueprintsPath @return {String} The path for blueprints @example - [ember-cli-coffeescript](https://github.com/kimroen/ember-cli-coffeescript/blob/v1.13.2/index.js#L26)

()

Source from the content-addressed store, hash-verified

1286 - [ember-cli-coffeescript](https://github.com/kimroen/ember-cli-coffeescript/blob/v1.13.2/index.js#L26)
1287 */
1288 blueprintsPath() {
1289 let blueprintPath = path.join(this.root, 'blueprints');
1290
1291 if (fs.existsSync(blueprintPath)) {
1292 return blueprintPath;
1293 }
1294 },
1295
1296 /**
1297 Augments the application's configuration settings.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…