From b56f136e43843f98f405ee5c111c073820e88ac1 Mon Sep 17 00:00:00 2001 From: "Manu Mtz.-Almeida" Date: Thu, 6 Sep 2018 00:01:24 +0200 Subject: [PATCH] fix(test): treeshake check runs last --- core/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/package.json b/core/package.json index 0d566fc941..57603b36cc 100644 --- a/core/package.json +++ b/core/package.json @@ -79,8 +79,8 @@ "theme-server": "node scripts/theme-builder/server.js", "tsc": "./node_modules/.bin/tsc -p .", "test.treeshake": "agadoo dist/collection/index.js", - "validate": "npm run test.treeshake && npm run lint && npm run test && npm run build", - "validate.ci": "npm run test.treeshake && npm run lint && npm run test && npm run build --max-workers 1 --debug" + "validate": "npm run lint && npm run test && npm run build && npm run test.treeshake", + "validate.ci": "npm run lint && npm run test && npm run build --max-workers 1 --debug && npm run test.treeshake" }, "author": "Ionic Team", "license": "MIT",