From 95cba870d4ead636534654f0f569ebcad90c78d7 Mon Sep 17 00:00:00 2001 From: Tben Date: Thu, 17 Aug 2023 17:55:32 +0100 Subject: [PATCH] updates --- README.md | 12 ++++++------ package.json | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 98d3871..b774728 100644 --- a/README.md +++ b/README.md @@ -7,19 +7,19 @@ Do you run an application that needs multiple processes? Like `npm run dev` and You can install and run this package directly by running: ```bash -npx batch-run "npm run dev, npm run tailwind" +npx batchrun "npm run dev, npm run tailwind" ``` To install this module globally simply run: ```bash -npm install -g batch-run +npm install -g batchrun ``` To install this module locally(for just the project) run: ```bash -npm install batch-run +npm install batchrun ``` _NOTE_: You will have to append `npx` to your command for just a local installation. @@ -39,19 +39,19 @@ More entries mean more processes. To fire up the process without a `batchrun.config.json` file simply run: ```bash -batch-run "npm run dev, npm run tailwind" +batchrun "npm run dev, npm run tailwind" ``` If you did not install the package globally, run: ```bash -npx batch-run "npm run dev, npm run tailwind" +npx batchrun "npm run dev, npm run tailwind" ``` If you already have a `batchrun.config.json` file just run ```bash -batch-run +batchrun ``` # Process actions diff --git a/package.json b/package.json index 173baaf..5534613 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "batch-run", - "version": "1.0.4", + "name": "batchrun", + "version": "1.0.5", "description": "Run and manage multiple processes concurrently in one terminal", "main": "index.js", "bin": {