CLI: Fix sb link to yarn3 repos

This commit is contained in:
Michael Shilman 2021-09-07 16:58:05 +08:00
parent 5d8a1e2f0c
commit 0065c80baf

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.`);