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)
()
| 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. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…