* Resolve the absolute path to the source code directory * @param paths - The workspace structure * @param srcSubPath - The subpath to the source code directory * @returns The absolute path to the source code directory
(paths: WorkspaceStructure, srcSubPath: string)
| 102 | * @returns The absolute path to the source code directory |
| 103 | */ |
| 104 | resolveAppSrc(paths: WorkspaceStructure, srcSubPath: string): string { |
| 105 | return path.join(paths.app, 'src', srcSubPath); |
| 106 | } |
| 107 | |
| 108 | /** |
| 109 | * Resolve component alias path to absolute filesystem path. |
no outgoing calls
no test coverage detected