Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release: Prerelease 8.5.0-beta.9 #30214

Merged
merged 46 commits into from
Jan 13, 2025
Merged
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
4fdafc1
rename packageDir
JReinhold Dec 18, 2024
5110c71
don't enforce pre on the vitest plugin
JReinhold Dec 18, 2024
a079a28
selectively optimize modules to not let vite optimize everything (it …
JReinhold Dec 18, 2024
8bc928b
add plugins from viteFinal
JReinhold Dec 18, 2024
89036fe
don't exclude stories.svelte files from svelte sandboxes
JReinhold Dec 18, 2024
2259584
support undefined plugins array
JReinhold Dec 19, 2024
4bce136
remove vite plugins unnecessary for testing
JReinhold Dec 19, 2024
20f5254
also ignore @joshwooding/vite-plugin-react-docgen-typescript
JReinhold Dec 19, 2024
c38eed3
don't add plugins during postinstall
JReinhold Dec 19, 2024
470c04c
don't tell users to add framework plugins in docs
JReinhold Dec 19, 2024
21873f1
add migration note about removing duplicate vite configurations
JReinhold Dec 19, 2024
4512a5a
remove docs on manual Framework plugins
JReinhold Dec 19, 2024
a045f4e
don't add framework plugins to sandboxes
JReinhold Dec 19, 2024
5bb9a7f
fix react-vite and nextjs-vite viteFinals discarding configs from pre…
JReinhold Dec 20, 2024
e1cd01a
cleanup viteFinals
JReinhold Dec 20, 2024
2e1ad63
Merge branch 'next' into jeppe/support-svelte-csf-in-vitest
JReinhold Dec 20, 2024
5591ef4
Merge branch 'next' into jeppe/support-svelte-csf-in-vitest
JReinhold Dec 23, 2024
19f82a0
Addon Test: Add prerequisite check for MSW
yannbf Jan 6, 2025
c826b86
CLI: Fix add command not respecting --yes flag when addon is already …
yannbf Jan 6, 2025
987d698
improve message
yannbf Jan 6, 2025
125bdd3
Merge pull request #30193 from storybookjs/yann/addon-test-postinstal…
JReinhold Jan 8, 2025
7c95fe0
Merge branch 'next' of github.com:storybookjs/storybook into jeppe/su…
JReinhold Jan 8, 2025
3c0886b
merge rnw preset changes
JReinhold Jan 8, 2025
1a6816f
Merge branch 'next-release' into next
storybook-bot Jan 8, 2025
a260929
Merge branch 'next' into jeppe/support-svelte-csf-in-vitest
JReinhold Jan 8, 2025
6b58265
Scripts: Only output esm for nodeEntries on request
valentinpalkovic Jan 8, 2025
7b3da9e
Fix bug for esm output
valentinpalkovic Jan 8, 2025
236fac1
Fix knip
valentinpalkovic Jan 8, 2025
e1d63dd
Exclude dummy files from package distribution
valentinpalkovic Jan 8, 2025
6acf3f8
Addon Test: Improve support for mono-repos
valentinpalkovic Jan 8, 2025
fd79fd6
Adjust some more docs for mono-repo adjustments
valentinpalkovic Jan 8, 2025
08ce74c
Build: Fix infinite reloading of internal storybook
yannbf Jan 8, 2025
5affbc2
Adjust sandbox parts to setup addon test the same way as its postinst…
valentinpalkovic Jan 8, 2025
39c08e9
Refactor extension handling for workspace file
valentinpalkovic Jan 8, 2025
e890a40
Merge pull request #30217 from storybookjs/yann/fix-internal-storybook
yannbf Jan 9, 2025
e3b6c66
Merge pull request #30216 from storybookjs/valentin/improve-monorepo-…
valentinpalkovic Jan 9, 2025
8a92a7d
Merge branch 'next' into valentin/optimize-node-entries-output
valentinpalkovic Jan 10, 2025
0d4f800
Fix issues in esm environments
valentinpalkovic Jan 10, 2025
f7285f0
Merge branch 'next' of github.com:storybookjs/storybook into jeppe/su…
JReinhold Jan 10, 2025
778095c
don't save bench comparison results to disk
JReinhold Jan 10, 2025
14c8fcf
Merge branch 'next' into jeppe/fix-bench-base-with-slash
JReinhold Jan 10, 2025
f53509d
remove "How do I apply custom Vite configuration?" docs section
JReinhold Jan 10, 2025
1389976
Merge pull request #30213 from storybookjs/valentin/optimize-node-ent…
valentinpalkovic Jan 10, 2025
f43a567
Merge pull request #30232 from storybookjs/jeppe/fix-bench-base-with-…
JReinhold Jan 10, 2025
2759c5b
Merge pull request #30105 from storybookjs/jeppe/support-svelte-csf-i…
JReinhold Jan 13, 2025
0851568
Write changelog for 8.5.0-beta.9 [skip ci]
storybook-bot Jan 13, 2025
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
Prev Previous commit
Next Next commit
don't enforce pre on the vitest plugin
JReinhold committed Dec 18, 2024
commit 5110c71ce64dfee466d089b536b51dd0291df082
1 change: 0 additions & 1 deletion code/addons/test/src/vitest-plugin/index.ts
Original file line number Diff line number Diff line change
@@ -116,7 +116,6 @@ export const storybookTest = async (options?: UserOptions): Promise<Plugin> => {

return {
name: 'vite-plugin-storybook-test',
enforce: 'pre',
async transformIndexHtml(html) {
const [headHtmlSnippet, bodyHtmlSnippet] = await Promise.all([
presets.apply('previewHead'),