(key: string)
| 115 | publishableVersions: ReadonlyMap<string, string>, |
| 116 | ): Promise<() => Promise<void>> => { |
| 117 | const isInternalScope = (key: string): boolean => key.startsWith(`${PACKAGE_SCOPE}/`); |
| 118 | |
| 119 | const renameDepBlock = (block: DependencyBlock | undefined): DependencyBlock | undefined => { |
| 120 | if (!block) return block; |
no outgoing calls
no test coverage detected