From 00e441f354a968766a3927c47b6a8d72f0304116 Mon Sep 17 00:00:00 2001 From: Andreas Hocevar Date: Sat, 10 Feb 2018 10:35:00 +0100 Subject: [PATCH] Run typecheck after tests, because of its current verbosity --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 2e0f817335..e254db637c 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,8 @@ "homepage": "https://openlayers.org/", "scripts": { "lint": "eslint tasks test src/ol examples transforms", - "pretest": "npm run lint && npm run typecheck", + "pretest": "npm run lint", + "posttest": "npm run typecheck", "test": "npm run karma -- --single-run", "karma": "karma start test/karma.config.js", "serve-examples": "mkdir -p build/examples && webpack --config examples/webpack/config.js --watch & serve build/examples",