diff --git a/docs/generated/cli/create-nx-workspace.md b/docs/generated/cli/create-nx-workspace.md index 7aed9ea63c..4619195e94 100644 --- a/docs/generated/cli/create-nx-workspace.md +++ b/docs/generated/cli/create-nx-workspace.md @@ -35,7 +35,7 @@ The name of the application when a preset with pregenerated app is selected Type: `string` -Choices: [github, circleci, azure] +Choices: [github, circleci, azure, bitbucket-pipelines, gitlab] Generate a CI workflow file diff --git a/docs/generated/packages/nx/documents/create-nx-workspace.md b/docs/generated/packages/nx/documents/create-nx-workspace.md index 7aed9ea63c..4619195e94 100644 --- a/docs/generated/packages/nx/documents/create-nx-workspace.md +++ b/docs/generated/packages/nx/documents/create-nx-workspace.md @@ -35,7 +35,7 @@ The name of the application when a preset with pregenerated app is selected Type: `string` -Choices: [github, circleci, azure] +Choices: [github, circleci, azure, bitbucket-pipelines, gitlab] Generate a CI workflow file diff --git a/packages/create-nx-workspace/bin/ci.ts b/packages/create-nx-workspace/bin/ci.ts index a559af7aa0..8e7ad83fa9 100644 --- a/packages/create-nx-workspace/bin/ci.ts +++ b/packages/create-nx-workspace/bin/ci.ts @@ -1 +1,7 @@ -export const ciList = ['github', 'circleci', 'azure'] as const; +export const ciList = [ + 'github', + 'circleci', + 'azure', + 'bitbucket-pipelines', + 'gitlab', +] as const;