Skip to content

Commit

Permalink
fix: remove beta tag from commands that are no longer in beta (#6098)
Browse files Browse the repository at this point in the history
* fix: remove beta tag from build command

* fix: remove beta tag from completion command

* fix: remove beta tag from recipes command

* fix: remove beta tag from serve command

* docs: sync docs with changes made
  • Loading branch information
ericapisani authored Oct 27, 2023
1 parent c111331 commit b0b1a93
Show file tree
Hide file tree
Showing 11 changed files with 23 additions and 23 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,11 +111,11 @@ Run any Netlify API method

### [build](/docs/commands/build.md)

(Beta) Build on your local machine
Build on your local machine

### [completion](/docs/commands/completion.md)

(Beta) Generate shell completion script
Generate shell completion script

| Subcommand | description |
|:--------------------------- |:-----|
Expand Down Expand Up @@ -195,16 +195,16 @@ Open settings for the site linked to the current folder

### [recipes](/docs/commands/recipes.md)

(Beta) Create and modify files in a project using pre-defined recipes
Create and modify files in a project using pre-defined recipes

| Subcommand | description |
|:--------------------------- |:-----|
| [`recipes:list`](/docs/commands/recipes.md#recipeslist) | (Beta) List the recipes available to create and modify files in a project |
| [`recipes:list`](/docs/commands/recipes.md#recipeslist) | List the recipes available to create and modify files in a project |


### [serve](/docs/commands/serve.md)

(Beta) Build the site for production and serve locally. This does not watch the code for changes, so if you need to rebuild your site then you must exit and run `serve` again.
Build the site for production and serve locally. This does not watch the code for changes, so if you need to rebuild your site then you must exit and run `serve` again.

### [sites](/docs/commands/sites.md)

Expand Down
10 changes: 5 additions & 5 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ Run any Netlify API method

### [build](/docs/commands/build.md)

(Beta) Build on your local machine
Build on your local machine

### [completion](/docs/commands/completion.md)

(Beta) Generate shell completion script
Generate shell completion script

| Subcommand | description |
|:--------------------------- |:-----|
Expand Down Expand Up @@ -144,16 +144,16 @@ Open settings for the site linked to the current folder

### [recipes](/docs/commands/recipes.md)

(Beta) Create and modify files in a project using pre-defined recipes
Create and modify files in a project using pre-defined recipes

| Subcommand | description |
|:--------------------------- |:-----|
| [`recipes:list`](/docs/commands/recipes.md#recipeslist) | (Beta) List the recipes available to create and modify files in a project |
| [`recipes:list`](/docs/commands/recipes.md#recipeslist) | List the recipes available to create and modify files in a project |


### [serve](/docs/commands/serve.md)

(Beta) Build the site for production and serve locally. This does not watch the code for changes, so if you need to rebuild your site then you must exit and run `serve` again.
Build the site for production and serve locally. This does not watch the code for changes, so if you need to rebuild your site then you must exit and run `serve` again.

### [sites](/docs/commands/sites.md)

Expand Down
2 changes: 1 addition & 1 deletion docs/commands/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ title: Netlify CLI build command
# `build`

<!-- AUTO-GENERATED-CONTENT:START (GENERATE_COMMANDS_DOCS) -->
(Beta) Build on your local machine
Build on your local machine

**Usage**

Expand Down
2 changes: 1 addition & 1 deletion docs/commands/completion.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: Shell completion script for netlify CLI
# `completion`

<!-- AUTO-GENERATED-CONTENT:START (GENERATE_COMMANDS_DOCS) -->
(Beta) Generate shell completion script
Generate shell completion script
Run this command to see instructions for your shell.

**Usage**
Expand Down
10 changes: 5 additions & 5 deletions docs/commands/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ Run any Netlify API method

### [build](/docs/commands/build.md)

(Beta) Build on your local machine
Build on your local machine

### [completion](/docs/commands/completion.md)

(Beta) Generate shell completion script
Generate shell completion script

| Subcommand | description |
|:--------------------------- |:-----|
Expand Down Expand Up @@ -123,16 +123,16 @@ Open settings for the site linked to the current folder

### [recipes](/docs/commands/recipes.md)

(Beta) Create and modify files in a project using pre-defined recipes
Create and modify files in a project using pre-defined recipes

| Subcommand | description |
|:--------------------------- |:-----|
| [`recipes:list`](/docs/commands/recipes.md#recipeslist) | (Beta) List the recipes available to create and modify files in a project |
| [`recipes:list`](/docs/commands/recipes.md#recipeslist) | List the recipes available to create and modify files in a project |


### [serve](/docs/commands/serve.md)

(Beta) Build the site for production and serve locally. This does not watch the code for changes, so if you need to rebuild your site then you must exit and run `serve` again.
Build the site for production and serve locally. This does not watch the code for changes, so if you need to rebuild your site then you must exit and run `serve` again.

### [sites](/docs/commands/sites.md)

Expand Down
2 changes: 1 addition & 1 deletion docs/commands/serve.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: (Beta) Build the site for production and serve locally. This does n
# `serve`

<!-- AUTO-GENERATED-CONTENT:START (GENERATE_COMMANDS_DOCS) -->
(Beta) Build the site for production and serve locally. This does not watch the code for changes, so if you need to rebuild your site then you must exit and run `serve` again.
Build the site for production and serve locally. This does not watch the code for changes, so if you need to rebuild your site then you must exit and run `serve` again.

**Usage**

Expand Down
2 changes: 1 addition & 1 deletion src/commands/build/build.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const build = async (options, command) => {
export const createBuildCommand = (program) =>
program
.command('build')
.description('(Beta) Build on your local machine')
.description('Build on your local machine')
.option(
'--context <context>',
'Specify a build context or branch (contexts: "production", "deploy-preview", "branch-deploy", "dev")',
Expand Down
2 changes: 1 addition & 1 deletion src/commands/completion/completion.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export const createCompletionCommand = (program) => {

return program
.command('completion')
.description('(Beta) Generate shell completion script\nRun this command to see instructions for your shell.')
.description('Generate shell completion script\nRun this command to see instructions for your shell.')
.addExamples(['netlify completion:install'])
.action((options, command) => {
command.help()
Expand Down
2 changes: 1 addition & 1 deletion src/commands/recipes/recipes-list.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ const recipesListCommand = async () => {
export const createRecipesListCommand = (program) =>
program
.command('recipes:list')
.description(`(Beta) List the recipes available to create and modify files in a project`)
.description(`List the recipes available to create and modify files in a project`)
.addExamples(['netlify recipes:list'])
.action(recipesListCommand)
2 changes: 1 addition & 1 deletion src/commands/recipes/recipes.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export const createRecipesCommand = (program) => {
program
.command('recipes')
.argument('[name]', 'name of the recipe')
.description(`(Beta) Create and modify files in a project using pre-defined recipes`)
.description(`Create and modify files in a project using pre-defined recipes`)
.option('-n, --name <name>', 'recipe name to use')
.addExamples(['netlify recipes my-recipe', 'netlify recipes --name my-recipe'])
.action(recipesCommand)
Expand Down
2 changes: 1 addition & 1 deletion src/commands/serve/serve.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ export const createServeCommand = (program) =>
program
.command('serve')
.description(
'(Beta) Build the site for production and serve locally. This does not watch the code for changes, so if you need to rebuild your site then you must exit and run `serve` again.',
'Build the site for production and serve locally. This does not watch the code for changes, so if you need to rebuild your site then you must exit and run `serve` again.',
)
.option(
'--context <context>',
Expand Down

2 comments on commit b0b1a93

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📊 Benchmark results

  • Dependency count: 1,372
  • Package size: 380 MB

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📊 Benchmark results

  • Dependency count: 1,372
  • Package size: 380 MB

Please sign in to comment.