Skip to content

Commit

Permalink
Revert "Revert "feat: remove blobs beta tags (#6392)" (#6397)" (#6398)
Browse files Browse the repository at this point in the history
This reverts commit 0c91f20.
  • Loading branch information
kathmbeck committed Mar 14, 2024
1 parent 39d65ea commit 10965ab
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
18 changes: 9 additions & 9 deletions docs/commands/blobs.md
Expand Up @@ -6,7 +6,7 @@ description: Manage objects in Netlify Blobs
# `blobs`

<!-- AUTO-GENERATED-CONTENT:START (GENERATE_COMMANDS_DOCS) -->
(Beta) Manage objects in Netlify Blobs
Manage objects in Netlify Blobs

**Usage**

Expand All @@ -21,10 +21,10 @@ netlify blobs

| Subcommand | description |
|:--------------------------- |:-----|
| [`blobs:delete`](/commands/blobs#blobsdelete) | (Beta) Deletes an object with a given key, if it exists, from a Netlify Blobs store |
| [`blobs:get`](/commands/blobs#blobsget) | (Beta) Reads an object with a given key from a Netlify Blobs store and, if it exists, prints the content to the terminal or saves it to a file |
| [`blobs:list`](/commands/blobs#blobslist) | (Beta) Lists objects in a Netlify Blobs store |
| [`blobs:set`](/commands/blobs#blobsset) | (Beta) Writes to a Netlify Blobs store an object with the data provided in the command or the contents of a file defined by the 'input' parameter |
| [`blobs:delete`](/commands/blobs#blobsdelete) | Deletes an object with a given key, if it exists, from a Netlify Blobs store |
| [`blobs:get`](/commands/blobs#blobsget) | Reads an object with a given key from a Netlify Blobs store and, if it exists, prints the content to the terminal or saves it to a file |
| [`blobs:list`](/commands/blobs#blobslist) | Lists objects in a Netlify Blobs store |
| [`blobs:set`](/commands/blobs#blobsset) | Writes to a Netlify Blobs store an object with the data provided in the command or the contents of a file defined by the 'input' parameter |


**Examples**
Expand All @@ -41,7 +41,7 @@ netlify blobs:list my-store --json
---
## `blobs:delete`

(Beta) Deletes an object with a given key, if it exists, from a Netlify Blobs store
Deletes an object with a given key, if it exists, from a Netlify Blobs store

**Usage**

Expand All @@ -62,7 +62,7 @@ netlify blobs:delete
---
## `blobs:get`

(Beta) Reads an object with a given key from a Netlify Blobs store and, if it exists, prints the content to the terminal or saves it to a file
Reads an object with a given key from a Netlify Blobs store and, if it exists, prints the content to the terminal or saves it to a file

**Usage**

Expand All @@ -84,7 +84,7 @@ netlify blobs:get
---
## `blobs:list`

(Beta) Lists objects in a Netlify Blobs store
Lists objects in a Netlify Blobs store

**Usage**

Expand All @@ -107,7 +107,7 @@ netlify blobs:list
---
## `blobs:set`

(Beta) Writes to a Netlify Blobs store an object with the data provided in the command or the contents of a file defined by the 'input' parameter
Writes to a Netlify Blobs store an object with the data provided in the command or the contents of a file defined by the 'input' parameter

**Usage**

Expand Down
10 changes: 5 additions & 5 deletions docs/index.md
Expand Up @@ -26,14 +26,14 @@ Run any Netlify API method

### [blobs](/commands/blobs)

(Beta) Manage objects in Netlify Blobs
Manage objects in Netlify Blobs

| Subcommand | description |
|:--------------------------- |:-----|
| [`blobs:delete`](/commands/blobs#blobsdelete) | (Beta) Deletes an object with a given key, if it exists, from a Netlify Blobs store |
| [`blobs:get`](/commands/blobs#blobsget) | (Beta) Reads an object with a given key from a Netlify Blobs store and, if it exists, prints the content to the terminal or saves it to a file |
| [`blobs:list`](/commands/blobs#blobslist) | (Beta) Lists objects in a Netlify Blobs store |
| [`blobs:set`](/commands/blobs#blobsset) | (Beta) Writes to a Netlify Blobs store an object with the data provided in the command or the contents of a file defined by the 'input' parameter |
| [`blobs:delete`](/commands/blobs#blobsdelete) | Deletes an object with a given key, if it exists, from a Netlify Blobs store |
| [`blobs:get`](/commands/blobs#blobsget) | Reads an object with a given key from a Netlify Blobs store and, if it exists, prints the content to the terminal or saves it to a file |
| [`blobs:list`](/commands/blobs#blobslist) | Lists objects in a Netlify Blobs store |
| [`blobs:set`](/commands/blobs#blobsset) | Writes to a Netlify Blobs store an object with the data provided in the command or the contents of a file defined by the 'input' parameter |


### [build](/commands/build)
Expand Down
10 changes: 5 additions & 5 deletions src/commands/blobs/blobs.ts
Expand Up @@ -16,7 +16,7 @@ const blobs = (_options: OptionValues, command: BaseCommand) => {
export const createBlobsCommand = (program: BaseCommand) => {
program
.command('blobs:delete')
.description(`(Beta) Deletes an object with a given key, if it exists, from a Netlify Blobs store`)
.description(`Deletes an object with a given key, if it exists, from a Netlify Blobs store`)
.argument('<store>', 'Name of the store')
.argument('<key>', 'Object key')
.alias('blob:delete')
Expand All @@ -29,7 +29,7 @@ export const createBlobsCommand = (program: BaseCommand) => {
program
.command('blobs:get')
.description(
`(Beta) Reads an object with a given key from a Netlify Blobs store and, if it exists, prints the content to the terminal or saves it to a file`,
`Reads an object with a given key from a Netlify Blobs store and, if it exists, prints the content to the terminal or saves it to a file`,
)
.argument('<store>', 'Name of the store')
.argument('<key>', 'Object key')
Expand All @@ -43,7 +43,7 @@ export const createBlobsCommand = (program: BaseCommand) => {

program
.command('blobs:list')
.description(`(Beta) Lists objects in a Netlify Blobs store`)
.description(`Lists objects in a Netlify Blobs store`)
.argument('<store>', 'Name of the store')
.option(
'-d, --directories',
Expand All @@ -64,7 +64,7 @@ export const createBlobsCommand = (program: BaseCommand) => {
program
.command('blobs:set')
.description(
`(Beta) Writes to a Netlify Blobs store an object with the data provided in the command or the contents of a file defined by the 'input' parameter`,
`Writes to a Netlify Blobs store an object with the data provided in the command or the contents of a file defined by the 'input' parameter`,
)
.argument('<store>', 'Name of the store')
.argument('<key>', 'Object key')
Expand All @@ -83,7 +83,7 @@ export const createBlobsCommand = (program: BaseCommand) => {
return program
.command('blobs')
.alias('blob')
.description(`(Beta) Manage objects in Netlify Blobs`)
.description(`Manage objects in Netlify Blobs`)
.addExamples([
'netlify blobs:get my-store my-key',
'netlify blobs:set my-store my-key This will go in a blob',
Expand Down
Expand Up @@ -9,7 +9,7 @@ USAGE
COMMANDS
$ api Run any Netlify API method
$ blobs (Beta) Manage objects in Netlify Blobs
$ blobs Manage objects in Netlify Blobs
$ build Build on your local machine
$ completion Generate shell completion script
$ deploy Create a new deploy from the contents of a folder
Expand Down

1 comment on commit 10965ab

@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,326
  • Package size: 298 MB
  • Number of ts-expect-error directives: 1,120

Please sign in to comment.