fix(core): add missing supported CI providers to NxCloud type (#29008)

This commit is contained in:
Tine Kondo 2024-11-21 00:23:15 +01:00 committed by GitHub
parent 79855a5471
commit 60a9f81dac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,7 +2,14 @@ import { CLIOutput } from '../output';
import { getMessageFactory } from './messages';
import * as ora from 'ora';
export type NxCloud = 'yes' | 'github' | 'circleci' | 'skip';
export type NxCloud =
| 'yes'
| 'github'
| 'gitlab'
| 'azure'
| 'bitbucket-pipelines'
| 'circleci'
| 'skip';
export function readNxCloudToken(directory: string) {
const nxCloudSpinner = ora(`Checking Nx Cloud setup`).start();