Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,22 +105,23 @@ USAGE
# Command Topics

* [`dvc alias`](docs/alias.md) - Manage repository variable aliases.
* [`dvc autocomplete`](docs/autocomplete.md) - display autocomplete installation instructions
* [`dvc cleanup`](docs/cleanup.md) - Replace a DevCycle variable with a static value in the current version of your code. Currently only JavaScript is supported.
* [`dvc diff`](docs/diff.md) - Print a diff of DevCycle variable usage between two versions of your code.
* [`dvc environments`](docs/environments.md) - Create a new Environment for an existing Feature.
* [`dvc features`](docs/features.md) - Access or modify Features with the Management API.
* [`dvc features`](docs/features.md) - Create, view, or modify Features with the Management API.
* [`dvc generate`](docs/generate.md) - Generate Devcycle related files.
* [`dvc help`](docs/help.md) - Display help for dvc.
* [`dvc keys`](docs/keys.md) - Retrieve SDK keys from the Management API.
* [`dvc login`](docs/login.md) - Log in to DevCycle.
* [`dvc logout`](docs/logout.md) - Discards any auth configuration that has been stored in the auth configuration file.
* [`dvc org`](docs/org.md) - Switch organizations.
* [`dvc projects`](docs/projects.md) - Access Projects with the Management API.
* [`dvc projects`](docs/projects.md) - Create, or view Projects with the Management API.
* [`dvc repo`](docs/repo.md) - Manage repository configuration.
* [`dvc status`](docs/status.md) - Check CLI status.
* [`dvc targeting`](docs/targeting.md) - Access or modify Targeting Rules for a Feature with the Management API.
* [`dvc targeting`](docs/targeting.md) - Create, view, or modify Targeting Rules for a Feature with the Management API.
* [`dvc usages`](docs/usages.md) - Print all DevCycle variable usages in the current version of your code.
* [`dvc variables`](docs/variables.md) - Access or modify Variables with the Management API.
* [`dvc variables`](docs/variables.md) - Create, view, or modify Variables with the Management API.
* [`dvc variations`](docs/variations.md) - Create a new Variation for an existing Feature.

<!-- commandsstop -->
Expand Down
2 changes: 1 addition & 1 deletion docs/features.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
`dvc features`
==============

Access or modify Features with the Management API.
Create, view, or modify Features with the Management API.

* [`dvc features create`](#dvc-features-create)
* [`dvc features delete [FEATURE]`](#dvc-features-delete-feature)
Expand Down
2 changes: 1 addition & 1 deletion docs/projects.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
`dvc projects`
==============

Access Projects with the Management API.
Create, or view Projects with the Management API.

* [`dvc projects create`](#dvc-projects-create)
* [`dvc projects list`](#dvc-projects-list)
Expand Down
2 changes: 1 addition & 1 deletion docs/targeting.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
`dvc targeting`
===============

Access or modify Targeting Rules for a Feature with the Management API.
Create, view, or modify Targeting Rules for a Feature with the Management API.

* [`dvc targeting disable [FEATURE] [ENVIRONMENT]`](#dvc-targeting-disable-feature-environment)
* [`dvc targeting enable [FEATURE] [ENVIRONMENT]`](#dvc-targeting-enable-feature-environment)
Expand Down
2 changes: 1 addition & 1 deletion docs/variables.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
`dvc variables`
===============

Access or modify Variables with the Management API.
Create, view, or modify Variables with the Management API.

* [`dvc variables create`](#dvc-variables-create)
* [`dvc variables get`](#dvc-variables-get)
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,13 @@
"description": "Log in to DevCycle."
},
"features": {
"description": "Access or modify Features with the Management API."
"description": "Create, view, or modify Features with the Management API."
},
"variables": {
"description": "Access or modify Variables with the Management API."
"description": "Create, view, or modify Variables with the Management API."
},
"projects": {
"description": "Access Projects with the Management API."
"description": "Create, or view Projects with the Management API."
},
"org": {
"description": "Switch organizations."
Expand All @@ -107,7 +107,7 @@
"description": "Check CLI status."
},
"targeting": {
"description": "Access or modify Targeting Rules for a Feature with the Management API."
"description": "Create, view, or modify Targeting Rules for a Feature with the Management API."
},
"generate": {
"description": "Generate Devcycle related files."
Expand Down