import packageManager from '@pnpm/cli-meta' import getConfig, { CliOptions } from '@pnpm/config' export default async function ( cliOptions: CliOptions, opts: { excludeReporter: boolean globalDirShouldAllowWrite?: boolean rcOptionsTypes: Record workspaceDir: string | undefined } ) { const { config, warnings } = await getConfig({ cliOptions, globalDirShouldAllowWrite: opts.globalDirShouldAllowWrite, packageManager, rcOptionsTypes: opts.rcOptionsTypes, workspaceDir: opts.workspaceDir, }) config.cliOptions = cliOptions if (opts.excludeReporter) { delete config.reporter // This is a silly workaround because supi expects a function as opts.reporter } if (warnings.length > 0) { console.log(warnings.join('\n')) } return config }