From cf5795d283acaa5c49a653397eaf71c40aebd77f Mon Sep 17 00:00:00 2001 From: Cas van Dongen Date: Tue, 14 Feb 2017 11:21:51 +0100 Subject: [PATCH] Added cross-env dependency This allows Windows users to compile the debug version as well. --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 5620284..de80e34 100644 --- a/package.json +++ b/package.json @@ -32,6 +32,7 @@ "angular-route": "^1.6.1", "angular-touch": "^1.6.1", "angular-translate": "^2.13.1", + "cross-env": "^3.1.4", "moment": "^2.17.1", "ng-dialog": "^0.6.6", "node.normalize.scss": "3.0.3", @@ -67,7 +68,7 @@ "webpack-dev-server": "^2.2.0" }, "scripts": { - "start": "PLUFF_DEBUG=true webpack-dev-server", + "start": "cross-env PLUFF_DEBUG=true webpack-dev-server", "build": "npm run -s clean && webpack --colors --progress --bail", "clean": "rm -rf dist/**", "lint": "eslint . && echo 'Linting succeeded.'",