CLI: Fix prerelease upgrade

This commit is contained in:
Michael Shilman 2021-04-09 12:47:35 +08:00
parent 0aa48cebc1
commit d2737577ff

View File

@ -99,7 +99,8 @@ export const upgrade = async ({ prerelease, skipCheck, useNpm, dryRun }: Options
const flags = [];
if (!dryRun) flags.push('--upgrade');
if (prerelease) flags.push('--newest');
flags.push('--target');
flags.push(prerelease ? 'greatest' : 'latest');
const check = spawnSync('npx', ['npm-check-updates', '/storybook/', ...flags], {
stdio: 'pipe',
}).output.toString();