(module: Module, newPath: string)
| 594 | } |
| 595 | |
| 596 | moveModule(module: Module, newPath: string) { |
| 597 | this.removeModule(module); |
| 598 | this.addModule({ ...module, path: newPath }); |
| 599 | } |
| 600 | |
| 601 | setEnvironmentVariables() { |
| 602 | if (this.transpiledModules['/.env'] && this.preset.hasDotEnv) { |
no test coverage detected