* @private * @method setupBroccoliBuilder
()
| 59 | * @method setupBroccoliBuilder |
| 60 | */ |
| 61 | async setupBroccoliBuilder() { |
| 62 | this.environment = this.environment || 'development'; |
| 63 | process.env.EMBER_ENV = process.env.EMBER_ENV || this.environment; |
| 64 | |
| 65 | this.tree = await this.readBuildFile(this.project.root); |
| 66 | |
| 67 | const broccoli = require('broccoli'); |
| 68 | |
| 69 | this.builder = new broccoli.Builder(this.tree); |
| 70 | } |
| 71 | |
| 72 | /** |
| 73 | Determine whether the output path is safe to delete. If the outputPath |
no test coverage detected