Skip to content

Commit 714804a

Browse files
committed
bump version and update readme
1 parent 784bf52 commit 714804a

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@ This CLI tool reads a JSON file and produces BigQuery compatible SQL views from
1010
## Usage
1111

1212
```bash
13-
npx @nealwp/blobview [options] <filepath>
13+
npx @nealwp/blobview@latest [options] <filepath>
14+
```
1415

16+
```text
1517
Arguments:
1618
filepath path to valid JSON file
1719
@@ -24,14 +26,14 @@ Options:
2426
## Examples:
2527
Default output to STDOUT:
2628
```bash
27-
npx @nealwp/blobview@latest ./path/to/file.json
29+
npx @nealwp/blobview ./path/to/file.json
2830
```
2931

3032
Dataset and table as input options:
3133
```bash
32-
npx @nealwp/blobview@latest --dataset=myDataset --table=myTable ./path/to/file.json
34+
npx @nealwp/blobview --dataset=myDataset --table=myTable ./path/to/file.json
3335
# shorthand options
34-
npx @nealwp/blobview@latest -d myDataset -t myTable ./path/to/file.json
36+
npx @nealwp/blobview -d myDataset -t myTable ./path/to/file.json
3537
```
3638

3739
Redirect output to file:

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nealwp/blobview",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"description": "Generate BigQuery SQL views from JSON",
55
"bin": {
66
"@nealwp/blobview": "./index.js"

0 commit comments

Comments
 (0)