| 11 | import { requiresDelegatedAuth } from "./publishPackages"; |
| 12 | |
| 13 | interface PublishOptions { |
| 14 | cwd: string; |
| 15 | publishDir: string; |
| 16 | access: AccessType; |
| 17 | tag: string; |
| 18 | } |
| 19 | |
| 20 | const NPM_REQUEST_CONCURRENCY_LIMIT = 40; |
| 21 | const NPM_PUBLISH_CONCURRENCY_LIMIT = 10; |
nothing calls this directly
no outgoing calls
no test coverage detected