Skip to content

Commit

Permalink
docs(gno-tooling/cli): remove gno build (gnolang#1514)
Browse files Browse the repository at this point in the history
- Remove `gno build` as it doesn't exist anymore (see: gnolang#1297)
- s/go-binary/gofmt

<details><summary>Contributors' checklist...</summary>

- [x] Added new tests, or not needed, or not feasible
- [x] Provided an example (e.g. screenshot) to aid review or the PR is
self-explanatory
- [x] Updated the official documentation or not needed
- [x] No breaking changes were made, or a `BREAKING CHANGE: xxx` message
was included in the description
- [x] Added references to related issues and PRs
- [x] Provided any useful hints for running manual tests
- [x] Added new benchmarks to [generated
graphs](https://gnoland.github.io/benchmarks), if any. More info
[here](https://github.com/gnolang/gno/blob/master/.benchmarks/README.md).
</details>
  • Loading branch information
harry-hov authored and gfanton committed Jan 18, 2024
1 parent d36de07 commit 3313484
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions docs/concepts/gno-tooling/cli/gno.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,10 @@ gno {SUB_COMMAND}

| Name | Description |
| ------------ | ------------------------------------------ |
| `build` | Builds a gno package. |
| `test` | Tests a gno package. |
| `precompile` | Precompiles a `.gno` file to a `.go` file. |
| `repl` | Starts a GnoVM REPL. |

### `build`

#### **Options**

| Name | Type | Description |
| --------- | ------- | ---------------------------------------------- |
| `verbose` | Boolean | Displays extended information. |
| go-binary | String | Go binary to use for building (default: `go`). |

### `test`

#### **Options**
Expand All @@ -52,8 +42,9 @@ gno {SUB_COMMAND}
| ----------- | ------- | --------------------------------------------------------------- |
| `verbose` | Boolean | Displays extended information. |
| `skip-fmt` | Boolean | Skips the syntax checking of generated `.go` files. |
| `gobuild` | Boolean | Run `go build` on generated `.go` files, ignoring test files. |
| `go-binary` | String | The go binary to use for building (default: `go`). |
| `go-binary` | String | The gofmt binary to use for syntax checking (default: `gofmt`). |
| `gofmt` | String | The gofmt binary to use for syntax checking (default: `gofmt`). |
| `output` | String | The output directory (default: `.`). |

### `repl`
Expand Down

0 comments on commit 3313484

Please sign in to comment.