* Get the path of the project's source directory. This might not be POSIX-style on some platforms. * Projects with multiple source paths will throw an error. For example Modules. * * @public * @returns {string} Absolute path to the source directory of the project * @throws {Error} In case
()
| 84 | * @throws {Error} In case a project has multiple source directories |
| 85 | */ |
| 86 | getSourcePath() { |
| 87 | throw new Error(`getSourcePath must be implemented by subclass ${this.constructor.name}`); |
| 88 | } |
| 89 | |
| 90 | /** |
| 91 | * Get the project's framework name configuration |
no outgoing calls
no test coverage detected