Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ describe('logMigrationSummary', () => {

The automigrations try to migrate common patterns in your project, but might not contain everything needed to migrate to the latest version of Storybook.

Please check the changelog and migration guide for manual migrations and more information: https://storybook.js.org/docs/migration-guide?ref=upgrade?ref=upgrade
Please check the changelog and migration guide for manual migrations and more information: https://storybook.js.org/docs/releases/migration-guide?ref=upgrade
And reach out on Discord if you need help: https://discord.gg/storybook"
`);
});
Expand All @@ -132,7 +132,7 @@ describe('logMigrationSummary', () => {

The automigrations try to migrate common patterns in your project, but might not contain everything needed to migrate to the latest version of Storybook.

Please check the changelog and migration guide for manual migrations and more information: https://storybook.js.org/docs/migration-guide?ref=upgrade?ref=upgrade
Please check the changelog and migration guide for manual migrations and more information: https://storybook.js.org/docs/releases/migration-guide?ref=upgrade
And reach out on Discord if you need help: https://discord.gg/storybook"
`);
});
Expand All @@ -153,7 +153,7 @@ describe('logMigrationSummary', () => {

The automigrations try to migrate common patterns in your project, but might not contain everything needed to migrate to the latest version of Storybook.

Please check the changelog and migration guide for manual migrations and more information: https://storybook.js.org/docs/migration-guide?ref=upgrade?ref=upgrade
Please check the changelog and migration guide for manual migrations and more information: https://storybook.js.org/docs/releases/migration-guide?ref=upgrade
And reach out on Discord if you need help: https://discord.gg/storybook"
`);
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export function logMigrationSummary({
The automigrations try to migrate common patterns in your project, but might not contain everything needed to migrate to the latest version of Storybook.

Please check the changelog and migration guide for manual migrations and more information: ${picocolors.yellow(
'https://storybook.js.org/docs/migration-guide?ref=upgrade?ref=upgrade'
'https://storybook.js.org/docs/releases/migration-guide?ref=upgrade'
)}
And reach out on Discord if you need help: ${picocolors.yellow('https://discord.gg/storybook')}
`);
Expand Down
2 changes: 1 addition & 1 deletion code/lib/cli-storybook/src/upgrade.ts
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ function logUpgradeResults(
}

logger.log(
`For a full list of changes, please check our migration guide: ${CLI_COLORS.cta('https://storybook.js.org/docs/migration-guide?ref=upgrade?ref=upgrade')}`
`For a full list of changes, please check our migration guide: ${CLI_COLORS.cta('https://storybook.js.org/docs/releases/migration-guide?ref=upgrade')}`
);
}

Expand Down