v7.3.1
Patch Release
-
fix(vercel): write
vercel.jsonas a part of setup (#10355) by @jtoarThis fix smooths initial deploys to Vercel by writing a
vercel.jsonfile 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 @jtoarA few flags for
yarn rw devdon'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(aliasedfwd) 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.