(
name: string,
options: WorksetPathOptions = {}
)
| 72 | } |
| 73 | |
| 74 | export function getWorksetCodeWorkspacePath( |
| 75 | name: string, |
| 76 | options: WorksetPathOptions = {} |
| 77 | ): string { |
| 78 | return FileSystemUtils.joinPath( |
| 79 | getWorksetsDir(options), |
| 80 | `${name}${CODE_WORKSPACE_EXTENSION}` |
| 81 | ); |
| 82 | } |
| 83 | |
| 84 | export function validateWorksetName(name: string): string { |
| 85 | if (!isKebabId(name)) { |
no test coverage detected