From d9dea3d0f26c574dce38ee415e27d5e6b03d13fd Mon Sep 17 00:00:00 2001 From: Jef LeCompte Date: Fri, 25 Sep 2020 18:30:05 -0400 Subject: [PATCH] chore: change `dev` task to `start:dev` Signed-off-by: Jef LeCompte --- README.md | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3ad8418..f0bb504 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ At any point you want the program to stop, use Ctrl + C. ### Developer notes -The command `npm run dev` can be used instead of `npm run start` to automatically restart the project when filesystem changes are detected in the `src/` folder or `.env` file. +The command `npm run start:dev` can be used instead of `npm run start` to automatically restart the project when filesystem changes are detected in the `src/` folder or `.env` file. ### Customization diff --git a/package.json b/package.json index 0092996..401530f 100644 --- a/package.json +++ b/package.json @@ -5,10 +5,10 @@ "main": "src/index.ts", "scripts": { "build": "rimraf ./build && tsc", - "dev": "nodemon --config nodemon.json", "lint": "xo", "lint:fix": "xo --fix", "start": "npm run build && node build/index.js", + "start:dev": "nodemon --config nodemon.json", "test:notification": "npm run build && node build/__test__/notification-test.js" }, "repository": {