(scopeTeam: string)
| 65 | * @internal |
| 66 | */ |
| 67 | export function validateScopeTeam(scopeTeam: string): void { |
| 68 | const result = v.safeParse(ScopeTeamSchema, scopeTeam) |
| 69 | if (!result.success) { |
| 70 | throw new Error(`Invalid scope:team format: ${scopeTeam}. Expected @scope:team`) |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | export interface NpmExecResult { |
| 75 | stdout: string |
no outgoing calls
no test coverage detected