We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81ebbe8 commit 6fb31d7Copy full SHA for 6fb31d7
packages/react-scripts/config/yarn-workspaces.js
@@ -252,11 +252,10 @@ const init = paths => {
252
253
buildDepsTable(babelSrcPaths);
254
255
- const applicableSrcPaths = filterSrcPaths(
+ const applicableSrcPaths = [...new Set(filterSrcPaths(
256
babelSrcPaths,
257
- appSettings.dependencies,
258
- paths.appPath
259
- );
+ appSettings.dependencies
+ ))];
260
261
console.log(
262
`Found ${babelSrcPaths.length} path(s) with "${
packages/react-scripts/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@react-workspaces/react-scripts",
3
- "version": "3.0.0-alpha-03",
+ "version": "3.0.0-alpha-04",
4
"description": "Configuration and scripts for Create React App.",
5
"repository": {
6
"type": "git",
0 commit comments