Skip to content

Commit

Permalink
Remove experimental feature flag from CLI's sites command (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
uditdc authored Aug 1, 2023
1 parent 373cfb0 commit ab090a4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
1 change: 0 additions & 1 deletion src/commands/sites/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import { run as runDeploy } from "./deploy"
export function sitesCli(yargs: Argv) {
yargs
.usage('bls sites [subcommand]')
.demandOption('experimental')

yargs.command(
'list',
Expand Down
6 changes: 1 addition & 5 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,6 @@ function createCLI(argv: string[]) {
describe: "Assume yes to all prompts",
type: "boolean"
})
.option("experimental", {
describe: 'Enables experimental commands',
type: 'boolean'
})

cli.group(["yes", "help", "version"], "Flags:")
cli.help().alias("h", "help")
Expand Down Expand Up @@ -131,7 +127,7 @@ function createCLI(argv: string[]) {

cli.command(
'sites',
'Manages your sites (Experimental Feature)',
'Manages your sites',
(yargs) => sitesCli(yargs.command(subCommands))
)

Expand Down

0 comments on commit ab090a4

Please sign in to comment.