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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 10.2.10

- Core: Require token for websocket connections - [#33820](https://github.com/storybookjs/storybook/pull/33820), thanks @ghengeveld!

## 10.2.9

- Addon-Vitest: Improve config file detection in monorepos - [#33814](https://github.com/storybookjs/storybook/pull/33814), thanks @valentinpalkovic!
- Builder-Vite: Update dependencies react-vite framework - [#33810](https://github.com/storybookjs/storybook/pull/33810), thanks @valentinpalkovic!
- Builder-Vite: Use relative path for mocker entry in production builds - [#33792](https://github.com/storybookjs/storybook/pull/33792), thanks @DukeDeSouth!
- Next.js: Fix Link component override in appDirectory configuration - [#31251](https://github.com/storybookjs/storybook/pull/31251), thanks @yatishgoel!

## 10.2.8

- Telemetry: Add Expo metaframework - [#33783](https://github.com/storybookjs/storybook/pull/33783), thanks @copilot-swe-agent!
Expand Down
3 changes: 2 additions & 1 deletion code/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -220,5 +220,6 @@
"Dependency Upgrades"
]
]
}
},
"deferredNextVersion": "10.3.0-alpha.7"
}
4 changes: 2 additions & 2 deletions scripts/build/utils/generate-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export async function generateTypesFiles(cwd: string, data: BuildEntries) {
// ...this way we do not bog down the main process/esbuild and can run them in parallel
// we limit the number of concurrent processes to 3, because we don't want to overload the host machine
// by trial and error, 3 seems to be the sweet spot between perf and consistency
const limited = limit(10);
const limited = limit(5);
let processes: ReturnType<typeof spawn>[] = [];

await Promise.all(
Expand Down Expand Up @@ -83,7 +83,7 @@ export async function generateTypesFiles(cwd: string, data: BuildEntries) {
processes.forEach((p) => p.kill());
processes = [];
process.exit(dtsProcess.exitCode || 1);
} else if(!process.env.CI) {
} else if (!process.env.CI) {
console.log('✅ Generated types for', picocolors.cyan(join(DIR_REL, entryPoint)));
}
});
Expand Down
Loading