From 3ea5f9a49132ada8e812bd0988e916d839838159 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Spo=CC=88nemann?= Date: Thu, 6 Jul 2017 09:14:49 +0200 Subject: [PATCH] Simplified package scripts (./node_modules/.bin is on the execution path anyway) --- client/package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/client/package.json b/client/package.json index cf4dc84..bec3936 100644 --- a/client/package.json +++ b/client/package.json @@ -19,9 +19,9 @@ "webpack": "^2.6.1" }, "scripts": { - "compile": "./node_modules/.bin/tsc", - "clean": "./node_modules/.bin/rimraf lib app/bootstrap app/sprotty app/vs app/bundle.*", - "build": "npm run compile && ./node_modules/.bin/webpack", - "watch": "./node_modules/.bin/tsc-watch --onSuccess ./node_modules/.bin/webpack" + "compile": "tsc", + "clean": "rimraf lib app/bootstrap app/sprotty app/vs app/bundle.*", + "build": "npm run compile && webpack", + "watch": "tsc-watch --onSuccess webpack" } }