(packageName)
| 12 | } |
| 13 | |
| 14 | const findImportSpecifiers = (packageName) => |
| 15 | root |
| 16 | .find(jscodeshift.ImportDeclaration, { |
| 17 | source: { |
| 18 | value: packageName, |
| 19 | }, |
| 20 | }) |
| 21 | .find(jscodeshift.ImportSpecifier, {}) |
| 22 | |
| 23 | const locateImports = ( |
| 24 | identifiers, |
no test coverage detected
searching dependent graphs…