Releases: vercel/shop
Releases · vercel/shop
create-vercel-shop@0.3.0
Minor Changes
- #273
cdecd0aThanks @blurrah! - Replace thecreate-next-appdelegation with a direct codeload tarball fetch ofapps/template, plus a<pm> installandgit init. Drops the flag-forwarding and pre-prompt ceremony that existed only to round-trip the project name through a subprocess. CLI surface is nowcreate-vercel-shop [name] [--no-template] [--use-pnpm|--use-npm|--use-yarn|--use-bun]; create-next-app passthroughs like--import-aliasare removed (the template's tsconfig already configures aliases).
Patch Changes
2b0eb6fThanks @blurrah! - Prompt for the project name up front when none is passed, so plugin installs run in the right directory. Previously, omitting the project-name argument letcreate-next-appprompt interactively in its own subprocess; the CLI never learned the chosen name and tried to install plugins in the parent directory. Also reverts thenode_modulespost-scaffold check, which was checking the wrong path in the same scenario.
create-vercel-shop@0.2.2
Patch Changes
4d999faThanks @blurrah! - Skip plugin installs when the scaffold step did not produce anode_modulesdirectory.create-next-appcan exit 0 even when itsnpm installfails (notably on peer-dep conflicts), which previously left the CLI charging ahead with plugin installs against a half-scaffolded project. The CLI now treats a missingnode_modulesas a scaffold failure and prints retry instructions instead.