From 9fecd471a8a5612ad3b3d9f5de9b71e94e9865a8 Mon Sep 17 00:00:00 2001 From: Mohsen Azimi Date: Mon, 20 Jun 2016 11:55:12 -0700 Subject: [PATCH] Remove unnecessary paths to executables in npm scripts npm scripts will use the executables in `node_modules/.bin` by default: https://docs.npmjs.com/misc/scripts --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 66cca0be..95574b7e 100644 --- a/package.json +++ b/package.json @@ -6,9 +6,9 @@ "author": "Microsoft Corporation", "license": "MIT", "scripts": { - "simpleserver": "node_modules/.bin/http-server -c-1 ../", - "release": "node_modules/.bin/gulp release", - "website": "node_modules/.bin/gulp website" + "simpleserver": "http-server -c-1 ../", + "release": "gulp release", + "website": "gulp website" }, "repository": { "type": "git",