From 36fbebec3cd3f0330427ec6c8bf88a7e66cdca98 Mon Sep 17 00:00:00 2001 From: Huafu Gandon Date: Fri, 3 Aug 2018 17:20:53 +0200 Subject: [PATCH] fix: makes window happy --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index cd36f27344..797f959778 100644 --- a/package.json +++ b/package.json @@ -8,11 +8,11 @@ "build": "tsc -p tsconfig.build.json", "build:watch": "tsc -p tsconfig.build.json -w", "test:nolint": "npm run clean-build && jest --clearCache && node scripts/tests.js", - "clean": "./scripts/clean.js", + "clean": "node scripts/clean.js", "clean-build": "npm run clean && npm run build", "pretest": "npm run tslint", - "test:unit": "./scripts/tests.js", - "test:e2e": "./scripts/e2e.js", + "test:unit": "node scripts/tests.js", + "test:e2e": "node scripts/e2e.js", "test": "npm run test:e2e && npm run test:unit", "tslint": "tslint 'src/**/*.ts'", "doc": "doctoc .",