chore(nx-dev): update scope nxdev to nx-dev (#14482)

This commit is contained in:
Benjamin Cabanes 2023-01-19 13:25:34 -05:00 committed by GitHub
parent 78ca7395a9
commit 11593761b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 26 deletions

View File

@ -305,7 +305,7 @@ The scope must be one of the following:
- node - anything Node specific - node - anything Node specific
- nx-cloud - anything NxCloud specific - nx-cloud - anything NxCloud specific
- nx-plugin - anything Nx Plugin specific - nx-plugin - anything Nx Plugin specific
- nxdev - anything related to docs infrastructure - nx-dev - anything related to docs infrastructure
- react - anything React specific - react - anything React specific
- react-native - anything React Native specific - react-native - anything React Native specific
- repo - anything related to managing the Nx repo itself - repo - anything related to managing the Nx repo itself

View File

@ -1,30 +1,30 @@
// prettier-ignore // prettier-ignore
const scopes = [ const scopes = [
{ value: 'angular', name: 'angular: anything Angular specific' }, { value: 'angular', name: 'angular: anything Angular specific' },
{ value: 'core', name: 'core: anything Nx core specific' }, { value: 'core', name: 'core: anything Nx core specific' },
{ value: 'bundling', name: 'bundling: anything bundling specific (e.g. rollup, webpack, etc.)' }, { value: 'bundling', name: 'bundling: anything bundling specific (e.g. rollup, webpack, etc.)' },
{ value: 'detox', name: 'detox: anything Detox specific' }, { value: 'detox', name: 'detox: anything Detox specific' },
{ value: 'devkit', name: 'devkit: devkit-related changes' }, { value: 'devkit', name: 'devkit: devkit-related changes' },
{ value: 'express', name: 'express: anything Express specific' }, { value: 'express', name: 'express: anything Express specific' },
{ value: 'graph', name: 'graph: anything graph app specific' }, { value: 'graph', name: 'graph: anything graph app specific' },
{ value: 'js', name: 'js: anything TS->JS specific' }, { value: 'js', name: 'js: anything TS->JS specific' },
{ value: 'linter', name: 'linter: anything Linter specific' }, { value: 'linter', name: 'linter: anything Linter specific' },
{ value: 'misc', name: 'misc: misc stuff' }, { value: 'misc', name: 'misc: misc stuff' },
{ value: 'nest', name: 'nest: anything Nest specific' }, { value: 'nest', name: 'nest: anything Nest specific' },
{ value: 'nextjs', name: 'nextjs: anything Next specific' }, { value: 'nextjs', name: 'nextjs: anything Next specific' },
{ value: 'node', name: 'node: anything Node specific' }, { value: 'node', name: 'node: anything Node specific' },
{ value: 'nx-cloud', name: 'nx-cloud: anything NxCloud specific' }, { value: 'nx-cloud', name: 'nx-cloud: anything NxCloud specific' },
{ value: 'nx-plugin', name: 'nx-plugin: anything Nx Plugin specific' }, { value: 'nx-plugin', name: 'nx-plugin: anything Nx Plugin specific' },
{ value: 'nxdev', name: 'nxdev: anything related to docs infrastructure' }, { value: 'nx-dev', name: 'nx-dev: anything related to docs infrastructure' },
{ value: 'react', name: 'react: anything React specific' }, { value: 'react', name: 'react: anything React specific' },
{ value: 'react-native', name: 'react-native: anything React Native specific' }, { value: 'react-native', name: 'react-native: anything React Native specific' },
{ value: 'expo', name: 'expo: anything Expo specific' }, { value: 'expo', name: 'expo: anything Expo specific' },
{ value: 'repo', name: 'repo: anything related to managing the repo itself' }, { value: 'repo', name: 'repo: anything related to managing the repo itself' },
{ value: 'storybook', name: 'storybook: anything Storybook specific' }, { value: 'storybook', name: 'storybook: anything Storybook specific' },
{ value: 'testing', name: 'testing: anything testing specific (e.g. jest or cypress)' }, { value: 'testing', name: 'testing: anything testing specific (e.g. jest or cypress)' },
{ value: 'vite', name: 'vite: anything Vite specific' }, { value: 'vite', name: 'vite: anything Vite specific' },
{ value: 'web', name: 'web: anything Web specific' }, { value: 'web', name: 'web: anything Web specific' },
{ value: 'webpack', name: 'webpack: anything Webpack specific' }, { value: 'webpack', name: 'webpack: anything Webpack specific' },
]; ];
// precomputed scope // precomputed scope