diff --git a/packages/bruno-cli/package.json b/packages/bruno-cli/package.json index af14a2183..c84cdc4da 100644 --- a/packages/bruno-cli/package.json +++ b/packages/bruno-cli/package.json @@ -1,6 +1,6 @@ { "name": "@usebruno/cli", - "version": "0.4.2", + "version": "0.4.3", "main": "src/index.js", "bin": { "bru": "./bin/bru.js" diff --git a/packages/bruno-cli/readme.md b/packages/bruno-cli/readme.md index 00cd26d5f..4d4b3f86a 100644 --- a/packages/bruno-cli/readme.md +++ b/packages/bruno-cli/readme.md @@ -13,22 +13,22 @@ npm install -g @usebruno/cli ## Getting started Navigate to the directory where your API collection resides, and then run: ```bash -bruno run +bru run ``` This command will run all the requests in your collection. You can also run a single request by specifying its filename: ```bash -bruno run request.bru +bru run request.bru ``` Or run all requests in a folder: ```bash -bruno run folder +bru run folder ``` If you need to use an environment, you can specify it with the --env option: ```bash -bruno run folder --env Local +bru run folder --env Local ``` ## Demo