From 973fa0f4b29e953f91d1396f860ea7b7d46f516e Mon Sep 17 00:00:00 2001 From: Pavel Djundik Date: Mon, 9 May 2016 12:01:31 +0300 Subject: [PATCH] Fix running multiple scripts on Windows --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 55e0f461..dface793 100644 --- a/package.json +++ b/package.json @@ -15,9 +15,9 @@ "build": "npm run build:grunt && npm run build:handlebars", "build:grunt": "grunt", "build:handlebars": "handlebars client/views/ -e tpl -f client/js/lounge.templates.js", - "test": "npm run test:mocha; npm run lint", + "test": "(npm run test:mocha || true) && npm run lint", "test:mocha": "mocha -r test/fixtures/env.js test/**/*.js", - "lint": "npm run lint:js; npm run lint:css", + "lint": "(npm run lint:js || true) && (npm run lint:css || true)", "lint:js": "eslint .", "lint:css": "stylelint \"**/*.css\"", "prepublish": "npm run build"