feat(core): add bitbucket and gitlab to create-nx-workspace (#14400)

This commit is contained in:
Miroslav Jonaš 2023-01-16 17:46:31 +01:00 committed by GitHub
parent 55aba1365d
commit 2b69cd5b79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 3 deletions

View File

@ -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

View File

@ -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

View File

@ -1 +1,7 @@
export const ciList = ['github', 'circleci', 'azure'] as const;
export const ciList = [
'github',
'circleci',
'azure',
'bitbucket-pipelines',
'gitlab',
] as const;