( tree: Tree, workspace: WorkspaceDefinition, path?: string, )
| 102 | * will be used. |
| 103 | */ |
| 104 | export async function writeWorkspace( |
| 105 | tree: Tree, |
| 106 | workspace: WorkspaceDefinition, |
| 107 | path?: string, |
| 108 | ): Promise<void> { |
| 109 | const host = new TreeWorkspaceHost(tree); |
| 110 | |
| 111 | return workspaces.writeWorkspace(workspace, host, path); |
| 112 | } |
| 113 | |
| 114 | /** |
| 115 | * Build a default project path for generating. |
no outgoing calls
no test coverage detected