Skip to content

Commit

Permalink
feat: add --yes option to vercel dev command to skip setup questions
Browse files Browse the repository at this point in the history
Using the `--yes` option with the `vercel dev` command automatically answers setup questions with default values. This modification is based on Vercel documentation guidance, ensuring the development environment setup process is streamlined without manual confirmation interruptions.
  • Loading branch information
liby committed Feb 24, 2024
1 parent ffc2b51 commit c1cbcd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"scripts": {
"start": "concurrently \"pnpm dev:vercel\" \"pnpm dev:pixel-profile\"",
"dev:vercel": "vercel dev",
"dev:vercel": "vercel dev --yes",
"dev:pixel-profile": "turbo dev --filter=pixel-profile",
"build": "pnpm --filter \"pixel-profile\" run build",
"release": "bumpp --commit --push --tag -r && pnpm publish ./packages/pixel-profile --access=public",
Expand Down

0 comments on commit c1cbcd5

Please sign in to comment.