Skip to content

Commit 34e008f

Browse files
authored
[cli] Remove beta warning for vercel build (vercel#7991)
This removes the `(beta)` output from `vercel build` as we move towards stability. ![image](https://user-images.githubusercontent.com/9113740/174356399-65f3d6bb-a241-49c8-9edb-167b25d6fa44.png)
1 parent 037633b commit 34e008f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/cli/src/index.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,8 @@ const main = async () => {
172172
// * a subcommand (as in: `vercel ls`)
173173
const targetOrSubcommand = argv._[2];
174174

175-
const betaCommands: string[] = ['build'];
175+
// Currently no beta commands - add here as needed
176+
const betaCommands: string[] = [''];
176177
if (betaCommands.includes(targetOrSubcommand)) {
177178
console.log(
178179
`${chalk.grey(

0 commit comments

Comments
 (0)