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