Skip to content
Merged
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
28 changes: 19 additions & 9 deletions agent_context/rspackv2-jul2026/design.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,15 @@ identical to v1.
Rspack 2 moved the persistent cache configuration from `experiments.cache`
to top-level `cache` (same shape) and **silently ignores** the legacy key.

- `getRspackCacheConfig` reads both locations, so `--reset-cache` works
against configs written for either major.
- `getRspackCacheConfigs` collects the cache configuration from **both**
locations, so `--reset-cache` clears every candidate directory regardless
of which major the config was written for (with both keys set, the wrong
cache would otherwise survive a reset under v2).
- Under Rspack 2 with `experiments.cache` set, `warnLegacyRspackCacheConfig`
emits a one-time warning pointing at the top-level option. The config is
left untouched — migration is the user's action.
emits a one-time warning pointing at the top-level option — unless the
same config already sets a top-level persistent cache (then the leftover
legacy key is inert and no warning fires). The config is left untouched —
migration is the user's action.

## React Refresh

Expand All @@ -76,8 +80,10 @@ to top-level `cache` (same shape) and **silently ignores** the legacy key.
vendored at `packages/repack/vendor/react-refresh/` (adapted from
upstream plugin v2.0.2, MIT, with a LICENSE/provenance file). The
`vendor/` directory ships as-is via `package.json#files` and is excluded
from linting and the babel build. There is no dependency on
`@rspack/plugin-react-refresh@1`.
from linting and the babel build. The refresh loader rule excludes the
vendored runtime files themselves (mirroring the official plugin's
self-exclusion) so they are never re-processed in symlinked-workspace
layouts. There is no dependency on `@rspack/plugin-react-refresh@1`.

## Tracing / profiling

Expand All @@ -87,9 +93,13 @@ Published Rspack 2 binaries do not include the perfetto trace layer, so

## Module Federation v1

Under Rspack 2, `@module-federation/runtime-tools` is no longer installed
automatically by `@rspack/core`. `ModuleFederationPluginV1.apply` verifies
it is resolvable and raises an actionable error otherwise.
No changes required. Rspack's delegated `ModuleFederationPluginV1` does not
use `@module-federation/runtime-tools` under either major - only the
enhanced MF 1.5 plugin (`container.ModuleFederationPlugin`) resolves it,
and that plugin raises its own actionable install error. (An earlier
revision of this design added a resolvability pre-check to
`ModuleFederationPluginV1.apply`; it was dropped after verification -
see the evidence on PR #1400.)

## Types

Expand Down
Loading