(pkg)
| 44 | ]); |
| 45 | |
| 46 | function isSkipped(pkg) { |
| 47 | return ( |
| 48 | (pkg.name.includes('@react-aria') && pkg.dependencies?.['react-aria']) || |
| 49 | (pkg.name.includes('@react-stately') && pkg.dependencies?.['react-stately']) || |
| 50 | (pkg.name.includes('@react-types') && !pkg.name.includes('@react-types/shared')) || |
| 51 | (pkg.name.includes('@react-spectrum') && pkg.dependencies?.['@adobe/react-spectrum']) |
| 52 | ); |
| 53 | } |
| 54 | |
| 55 | // Should be able to replace a lot of this file with yarns versioning plugin |
| 56 | // it should ensure version bumps for dependencies |
no outgoing calls
no test coverage detected