()
| 27 | } |
| 28 | |
| 29 | async initConfig() { |
| 30 | const config = await this._getConfig(this._buildConfigPath, this._oldBuildConfigPath); |
| 31 | this.development = config.development || this._devWorker; |
| 32 | this.production = config.production || this._prodWorker; |
| 33 | this.watchOptions = config.watchOptions; |
| 34 | } |
| 35 | |
| 36 | initWorker() { |
| 37 | if (this._fs.existsSync(this._buildConfigPath)) { |
no test coverage detected