From 74063915c7278858095e1b5423f156232e7ac9f5 Mon Sep 17 00:00:00 2001 From: Tankred Hase Date: Fri, 18 Aug 2017 21:36:55 +0800 Subject: [PATCH] Remove NODE_ENV environment var in nom scripts --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 5c7550f..85ed2c0 100644 --- a/package.json +++ b/package.json @@ -10,8 +10,8 @@ "node": ">=8" }, "scripts": { - "start": ": ${NODE_ENV=development} && node index.js", - "test": ": ${NODE_ENV=development} && npm run test:lint && npm run test:unit && npm run test:integration", + "start": "node index.js", + "test": "npm run test:lint && npm run test:unit && npm run test:integration", "test:lint": "eslint config src test *.js", "test:unit": "mocha --opts test/mocha.opts ./test/unit/", "test:integration": "mocha --opts test/mocha.opts ./test/integration",