From 5f1c1ad22d3bc666a226f1d2ccee4a26f081e1a5 Mon Sep 17 00:00:00 2001 From: Gregor Martynus Date: Thu, 6 Feb 2020 16:05:36 -0800 Subject: [PATCH] fix package.json scripts --- package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 4f433f8da..953252989 100644 --- a/package.json +++ b/package.json @@ -57,12 +57,12 @@ "tap": "^14.0.0" }, "scripts": { - "coverage": "tap --coverage-report=html && open coverage/lcov-report/index.html", - "dtslint": "dtslint types", "format:fix": "prettier --write '**/*.{js,json,md,ts,yml,yaml}'", "format": "prettier --check '**/*.{js,json,md,ts,yml,yaml}'", - "lint": "eslint --cache --cache-location './.cache/eslint' '**/*.js'", - "lint:fix": "eslint --cache --cache-location './.cache/eslint' --fix '**/*.js'", + "lint": "run-p lint:js lint:ts", + "lint:js": "eslint --cache --cache-location './.cache/eslint' '**/*.js'", + "lint:js:fix": "eslint --cache --cache-location './.cache/eslint' --fix '**/*.js'", + "lint:ts": "dtslint types", "semantic-release": "semantic-release", "test": "run-p test:mocha test:tap", "test:coverage": "tap --coverage-report=html && open coverage/lcov-report/index.html",