Skip to content

Commit

Permalink
fix(core): add missing supported CI providers to NxCloud type (#29008)
Browse files Browse the repository at this point in the history
  • Loading branch information
tinesoft authored Nov 20, 2024
1 parent 79855a5 commit 60a9f81
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion packages/create-nx-workspace/src/utils/nx/nx-cloud.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 60a9f81

Please sign in to comment.