diff --git a/src/yarn.ts b/src/yarn.ts index 9256ec5f..85c39ca1 100644 --- a/src/yarn.ts +++ b/src/yarn.ts @@ -53,6 +53,9 @@ export default class Yarn { `--preferred-cache-folder=${cacheDir}`, '--check-files', ] + if (opts.verbose) { + args.push('--verbose') + } if (this.config.npmRegistry) { args.push(`--registry=${this.config.npmRegistry}`) }