Merge pull request #15989 from storybookjs/fix/repro-link-yarn3

CLI: Fix sb link to yarn3 repos
This commit is contained in:
Michael Shilman 2021-09-07 17:11:48 +08:00 committed by GitHub
commit 8a56e94dc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,8 +38,8 @@ export const link = async ({ target, local }: LinkOptions) => {
stdio: 'pipe',
}).stdout.toString();
if (!version.startsWith('2.')) {
logger.warn(`🚨 Expected yarn 2 in ${reproDir}!`);
if (!/^[23]\./.test(version)) {
logger.warn(`🚨 Expected yarn 2 or 3 in ${reproDir}!`);
logger.warn('');
logger.warn('Please set it up with `yarn set version berry`,');
logger.warn(`then link '${reproDir}' with the '--local' flag.`);