()
| 67 | } |
| 68 | |
| 69 | setupBroccoliChangeEvent() { |
| 70 | // This is to keep backwards compatibility with broccoli-sane-watcher. |
| 71 | // https://github.com/ember-cli/broccoli-sane-watcher/blob/48860/index.js#L158 |
| 72 | if (this.verbose) { |
| 73 | this.watcher.on('change', (event, filePath) => { |
| 74 | this.ui.writeLine(`file ${eventTypeNormalization[event]} ${filePath}`); |
| 75 | }); |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | async _setupBroccoliWatcherBuild() { |
| 80 | try { |
no test coverage detected