From 96e368cb18180205f280ac9a23a35cf51250a348 Mon Sep 17 00:00:00 2001 From: Anoop M D Date: Sat, 1 Apr 2023 13:55:32 +0530 Subject: [PATCH] fix: fixed bru cli typos --- packages/bruno-cli/package.json | 2 +- packages/bruno-cli/readme.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/bruno-cli/package.json b/packages/bruno-cli/package.json index af14a218..c84cdc4d 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 00cd26d5..4d4b3f86 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