Skip to content

Commit ead67db

Browse files
authored
Merge pull request #32196 from storybookjs/cli_fix_migration_link
CLI: Fix Docs migration link in migrations
2 parents 8c8bdc5 + 479765e commit ead67db

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

code/lib/cli-storybook/src/automigrate/helpers/logMigrationSummary.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ describe('logMigrationSummary', () => {
111111
112112
The automigrations try to migrate common patterns in your project, but might not contain everything needed to migrate to the latest version of Storybook.
113113
114-
Please check the changelog and migration guide for manual migrations and more information: https://storybook.js.org/docs/migration-guide
114+
Please check the changelog and migration guide for manual migrations and more information: https://storybook.js.org/docs/releases/migration-guide
115115
And reach out on Discord if you need help: https://discord.gg/storybook"
116116
`);
117117
});
@@ -132,7 +132,7 @@ describe('logMigrationSummary', () => {
132132
133133
The automigrations try to migrate common patterns in your project, but might not contain everything needed to migrate to the latest version of Storybook.
134134
135-
Please check the changelog and migration guide for manual migrations and more information: https://storybook.js.org/docs/migration-guide
135+
Please check the changelog and migration guide for manual migrations and more information: https://storybook.js.org/docs/releases/migration-guide
136136
And reach out on Discord if you need help: https://discord.gg/storybook"
137137
`);
138138
});
@@ -153,7 +153,7 @@ describe('logMigrationSummary', () => {
153153
154154
The automigrations try to migrate common patterns in your project, but might not contain everything needed to migrate to the latest version of Storybook.
155155
156-
Please check the changelog and migration guide for manual migrations and more information: https://storybook.js.org/docs/migration-guide
156+
Please check the changelog and migration guide for manual migrations and more information: https://storybook.js.org/docs/releases/migration-guide
157157
And reach out on Discord if you need help: https://discord.gg/storybook"
158158
`);
159159
});

code/lib/cli-storybook/src/automigrate/helpers/logMigrationSummary.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export function logMigrationSummary({
6363
The automigrations try to migrate common patterns in your project, but might not contain everything needed to migrate to the latest version of Storybook.
6464
6565
Please check the changelog and migration guide for manual migrations and more information: ${picocolors.yellow(
66-
'https://storybook.js.org/docs/migration-guide'
66+
'https://storybook.js.org/docs/releases/migration-guide'
6767
)}
6868
And reach out on Discord if you need help: ${picocolors.yellow('https://discord.gg/storybook')}
6969
`);

0 commit comments

Comments
 (0)