Skip to content

Commit

Permalink
docs: remove beta label from functions:serve command (netlify#6129)
Browse files Browse the repository at this point in the history
* docs: remove beta label from functions:serve command

* docs: update docs
  • Loading branch information
ericapisani committed Nov 7, 2023
1 parent 05d0494 commit a5a3113
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ Manage netlify functions
| [`functions:create`](/docs/commands/functions.md#functionscreate) | Create a new function locally |
| [`functions:invoke`](/docs/commands/functions.md#functionsinvoke) | Trigger a function while in netlify dev with simulated data, good for testing function calls including Netlify's Event Triggered Functions |
| [`functions:list`](/docs/commands/functions.md#functionslist) | List functions that exist locally |
| [`functions:serve`](/docs/commands/functions.md#functionsserve) | (Beta) Serve functions locally |
| [`functions:serve`](/docs/commands/functions.md#functionsserve) | Serve functions locally |


### [init](/docs/commands/init.md)
Expand Down
4 changes: 2 additions & 2 deletions docs/commands/functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ netlify functions
| [`functions:create`](/docs/commands/functions.md#functionscreate) | Create a new function locally |
| [`functions:invoke`](/docs/commands/functions.md#functionsinvoke) | Trigger a function while in netlify dev with simulated data, good for testing function calls including Netlify's Event Triggered Functions |
| [`functions:list`](/docs/commands/functions.md#functionslist) | List functions that exist locally |
| [`functions:serve`](/docs/commands/functions.md#functionsserve) | (Beta) Serve functions locally |
| [`functions:serve`](/docs/commands/functions.md#functionsserve) | Serve functions locally |


**Examples**
Expand Down Expand Up @@ -149,7 +149,7 @@ netlify functions:list
---
## `functions:serve`
(Beta) Serve functions locally
Serve functions locally
**Usage**
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Manage netlify functions
| [`functions:create`](/docs/commands/functions.md#functionscreate) | Create a new function locally |
| [`functions:invoke`](/docs/commands/functions.md#functionsinvoke) | Trigger a function while in netlify dev with simulated data, good for testing function calls including Netlify's Event Triggered Functions |
| [`functions:list`](/docs/commands/functions.md#functionslist) | List functions that exist locally |
| [`functions:serve`](/docs/commands/functions.md#functionsserve) | (Beta) Serve functions locally |
| [`functions:serve`](/docs/commands/functions.md#functionsserve) | Serve functions locally |


### [init](/docs/commands/init.md)
Expand Down
2 changes: 1 addition & 1 deletion src/commands/functions/functions-serve.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export const createFunctionsServeCommand = (program) =>
program
.command('functions:serve')
.alias('function:serve')
.description('(Beta) Serve functions locally')
.description('Serve functions locally')
.option('-f, --functions <dir>', 'Specify a functions directory to serve')
.option('-p, --port <port>', 'Specify a port for the functions server', (value) => Number.parseInt(value))
.option('-o, --offline', 'disables any features that require network access')
Expand Down

0 comments on commit a5a3113

Please sign in to comment.