Skip to content

Commit

Permalink
Indent examples to align with bullet list
Browse files Browse the repository at this point in the history
  • Loading branch information
nghi-ly committed Aug 16, 2024
1 parent b6f42e9 commit 0035c48
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions website/docs/reference/global-configs/resource-type.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,48 +64,48 @@ Instead of targeting specific resources, use the `--resource-flag` or `--exclude

- For example, use the following command to include _all_ snapshots from your dbt build process:

<File name='Usage'>
<File name='Usage'>

```text
dbt build --resource-type snapshot
```
```text
dbt build --resource-type snapshot
```
</File>
</File>
<VersionBlock firstVersion="1.7">
- In this example, run the following command to include _all_ saved queries with the `--resource-type` flag:
<File name='Usage'>
<File name='Usage'>
```text
dbt build --resource-type saved_query
```
```text
dbt build --resource-type saved_query
```
</File>
</File>
</VersionBlock>
<VersionBlock firstVersion="1.8">
- In this example, use the following command to exclude _all_ unit tests from your dbt build process. Note that the `--exclude-resource-type` flag is only available in dbt version 1.8 and higher:
<File name='Usage'>
<File name='Usage'>
```text
dbt build --exclude-resource-type unit_test
```
```text
dbt build --exclude-resource-type unit_test
```
</File>
</File>
- In this example, use the following command to include all data tests in your build process:
<File name='Usage'>
<File name='Usage'>
```text
dbt build --resource-type test
```
```text
dbt build --resource-type test
```
</File>
</File>
</VersionBlock>

0 comments on commit 0035c48

Please sign in to comment.