Skip to content

v7.3.1

Compare
Choose a tag to compare
@jtoar jtoar released this 10 Apr 22:05
· 680 commits to main since this release
357efac

Patch Release

  • fix(vercel): write vercel.json as a part of setup (#10355) by @jtoar

    This fix smooths initial deploys to Vercel by writing a vercel.json file that specifies an env var that enables Corepack. Users that already successfully deploy to Vercel don't need to introduce this file.

  • fix(cli): only show webpack options for dev if bundler = "webpack" (#10359) by @jtoar

    A few flags for yarn rw dev don't apply to Vite but are shown nevertheless. One of them, watchNodeModules, is legacy at this point. It's only useful for testing out framework changes on a project using webpack. It makes the webpack dev server reload on changes to node_modules. The other, forward (aliased fwd) isn't fundamentally Webpack specific, but has been broken for quite a while because the fix is nontrivial. It seems better to hide these flags for now, otherwise we're just advertising broken or no-op behavior.