From 1af047640ad79662e2a7efc3fca0e47f36eff3c2 Mon Sep 17 00:00:00 2001 From: Blake Embrey Date: Thu, 14 May 2015 23:25:23 -0300 Subject: [PATCH] No need to prepend `node_modules` path NPM does this for you! :smile: --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 9a46d1f692..921419a556 100644 --- a/package.json +++ b/package.json @@ -4,9 +4,9 @@ "description": "An Angular2 WebPack seed featuring hot-module-reloading of components", "main": "", "scripts": { - "build": "./node_modules/.bin/webpack -d", - "watch": "./node_modules/.bin/webpack -d --watch", - "server": "./node_modules/.bin/webpack-dev-server -d --inline --colors --display-error-details --content-base public", + "build": "webpack -d", + "watch": "webpack -d --watch", + "server": "webpack-dev-server -d --inline --colors --display-error-details --content-base public", "start": "npm install && npm run build && npm run server", "test": "echo \"Error: no test specified\" && exit 1" },