Prints warning for pod unsupported. @private @method _checkForPod
(verbose)
| 395 | @method _checkForPod |
| 396 | */ |
| 397 | _checkForPod(verbose) { |
| 398 | if (!this.hasPathToken && this.pod && verbose) { |
| 399 | this.ui.writeLine( |
| 400 | chalk.yellow( |
| 401 | 'You specified the pod flag, but this' + |
| 402 | ' blueprint does not support pod structure. It will be generated with' + |
| 403 | ' the default structure.' |
| 404 | ) |
| 405 | ); |
| 406 | } |
| 407 | }, |
| 408 | |
| 409 | /** |
| 410 | @private |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…