From 8c29deedef423a35a50ae085b8c9cdcda84dce9c Mon Sep 17 00:00:00 2001 From: David Humphrey Date: Sun, 12 Jan 2020 13:22:58 -0500 Subject: [PATCH] fix: update compile command in npm watch script --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f864cfd1..cbce21a9 100644 --- a/package.json +++ b/package.json @@ -68,7 +68,7 @@ "build:macos": "tsc && pkg . --target latest-mac-x64", "build:all": "tsc && pkg . --target latest-linux-x64,latest-win-x64,latest-mac-x64", "generate-docs": "./node_modules/.bin/typedoc --out docs ./src/ --options ./typedoc.json &>/dev/null", - "watch": "nodemon --watch src/ --exec 'npm run compile-ts && npm start' -e ts", + "watch": "nodemon --watch src/ --exec 'npm run compile && npm start' -e ts", "commit": "git cz", "lint": "eslint .", "lint:fix": "eslint --fix ."