When I checked "How to contribute" page on storybook.js.org, a link
titled "Continue reading our contributor covenant" pointed to GitHub's
404 page. The last item of the URL path was "CODE_OF_CONDUCT.mdx", which
is not common filename people uses, therefore I suspected this is not
the only broken link in the docs.
And I was right. I ran the below command (rg = RipGrep) then found
several 404 links.
```
$ cd docs
$ rg "https?:[\S)]+mdx\)" --sort path
```
Git blame told me that some of ".md" to ".mdx" migration works
accidentally changed non-docs URLs ending with ".md" too.
StackBlitz URL in docs/api/main-config/main-config-indexers.mdx is not
actually a dead link, as the service redirects to the `README.md`.
However, the redirection takes loooong so I replaced that as well.
There are still two links that match to the above regexp:
* <https://github.com/storybookjs/storybook/blob/next/docs/get-started/setup.mdx>
at docs/contribute/documentation/new-snippets.mdx L42
* <https://marketplace.visualstudio.com/items?itemName=unifiedjs.vscode-mdx>
at docs/writing-docs/mdx.mdx
but those two are both valid (alive) URLs.
* next: (31 commits)
add playwright eslint plugin, fix tests by rules
fix tags e2e test
fix urls in addon-test package.json
use auto-retrying assertions in e2e tests
renamed vitest addon import file name to 'test'
Bump version from "8.3.0-beta.1" to "8.3.0-beta.2" [skip ci]
Write changelog for 8.3.0-beta.2 [skip ci]
fix package order in versions
fix import
fix
add tests
CLI: Handle Yarn PnP wrapper scenario when adding an addon
cleanup
Add type declaration for storybookTest in plugin module
dont' use parameters for default backgrounds, as they are not overridable
Fix type export for @storybook/experimental-nextjs-vite/vite-plugin
don't use parameters for default viewports, as they are not overridable
Nextjs-Vite: Re-export vite-plugin-storybook-nextjs
refactor vite plugin export paths
Bump version from "8.3.0-beta.0" to "8.3.0-beta.1" [skip ci]
...
* next:
Address feedback
add link to docs for how to set feature flags.
improve migration notes for globals project
Fix typo
ConfigFile: Fix `as const satisfies` modifiers
Bump version from "8.3.0-alpha.11" to "8.3.0-beta.0" [skip ci]
Update docs/versions/next.json
Add description to empty 8.3.0-beta.0 release
Write changelog for 8.3.0-beta.0 [skip ci]
Bump version from "8.3.0-alpha.10" to "8.3.0-alpha.11" [skip ci]
Write changelog for 8.3.0-alpha.11 [skip ci]
Re-order sidebar
Rename interaction test -> component test
* next: (80 commits)
add link to docs for how to set feature flags.
improve migration notes for globals project
Fix typo
ConfigFile: Fix `as const satisfies` modifiers
Bump version from "8.3.0-alpha.11" to "8.3.0-beta.0" [skip ci]
Update docs/versions/next.json
Add description to empty 8.3.0-beta.0 release
Write changelog for 8.3.0-beta.0 [skip ci]
Bump version from "8.3.0-alpha.10" to "8.3.0-alpha.11" [skip ci]
Write changelog for 8.3.0-alpha.11 [skip ci]
fix lint
Clarify requirements of Next.js with Vite
Next.js-Vite: Update next and vite-plugin-storybook-nextjs dependencies
Addon Vitest: Fix tests potentially not existing in non-isolate mode
CLI: Update spawn options in proxy.ts to support Windows
Builder-Vite: Fix 'condition node never be used' warning
Bump version from "8.3.0-alpha.9" to "8.3.0-alpha.10" [skip ci]
Write changelog for 8.3.0-alpha.10 [skip ci]
make prettier a normal dependency of core again. restore formatter code
Use relative path from workspace to vite.config in extends path
...