@@ -119,39 +119,24 @@ describe(`beachball configs`, () => {
119119 expect . arrayContaining ( [
120120 ...excludedPackagesFromReleaseProcess ,
121121 'packages/eslint-plugin' ,
122- 'scripts/api-extractor' ,
123- 'scripts/babel' ,
124- 'scripts/beachball' ,
125- 'scripts/cypress' ,
126- 'scripts/dangerjs' ,
127- 'scripts/executors' ,
128- 'scripts/fluentui-publish' ,
129- 'scripts/generators' ,
130- 'scripts/github' ,
131- 'scripts/gulp' ,
132- 'scripts/jest' ,
133- 'scripts/lint-staged' ,
134- 'scripts/monorepo' ,
135- 'scripts/package-manager' ,
136- 'scripts/perf-test-flamegrill' ,
137- 'scripts/prettier' ,
138- 'scripts/projects-test' ,
139- 'scripts/puppeteer' ,
140- 'scripts/storybook' ,
141- 'scripts/tasks' ,
142- 'scripts/test-ssr' ,
143- 'scripts/triage-bot' ,
144- 'scripts/ts-node' ,
145- 'scripts/update-release-notes' ,
146- 'scripts/utils' ,
147- 'scripts/webpack' ,
148- 'tools/eslint-rules' ,
149- 'tools/workspace-plugin' ,
122+ 'packages/react-components/babel-preset-storybook-full-source' ,
123+ 'packages/react-components/eslint-plugin-react-components' ,
124+ 'packages/react-components/react-conformance-griffel' ,
125+ 'packages/react-components/react-storybook-addon' ,
126+ 'packages/react-components/react-storybook-addon-export-to-sandbox' ,
127+ 'packages/react-conformance' ,
150128 ] ) ,
151129 ) ;
152130
153- // Ensure that no v8/vNext packages are included in the tools release
154- expect ( toolsConfig . scope . some ( scope => scope . startsWith ( 'packages/react' ) ) ) . toBe ( false ) ;
131+ // Ensure that no v8/vNext UI packages are included in the tools release
132+ const nonToolsScopes = [
133+ 'packages/react-components/react-components' ,
134+ 'packages/react-components/react-text' ,
135+ 'packages/react-components/react-card' ,
136+ 'packages/react' ,
137+ ] ;
138+ const hasToolsTag = toolsConfig . scope . some ( scope => nonToolsScopes . includes ( scope ) ) ;
139+ expect ( hasToolsTag ) . toBe ( false ) ;
155140
156141 expect ( toolsConfig . changelog ) . toEqual ( sharedConfig . changelog ) ;
157142 } ) ;
0 commit comments