(entityName)
| 299 | }, |
| 300 | |
| 301 | normalizeEntityName(entityName) { |
| 302 | entityName = normalizeEntityName(entityName); |
| 303 | |
| 304 | if (this.project.isEmberCLIProject() && !this.project.isEmberCLIAddon()) { |
| 305 | throw new SilentError('Generating an addon in an existing ember-cli project is not supported.'); |
| 306 | } |
| 307 | |
| 308 | return entityName; |
| 309 | }, |
| 310 | |
| 311 | srcPath(file) { |
| 312 | let path = `${this.path}/files/${file}`; |
nothing calls this directly
no test coverage detected
searching dependent graphs…