From ddc8213d30c2b0fb74d906dff809d2907f60cd99 Mon Sep 17 00:00:00 2001 From: Noam Okman Date: Sun, 28 Jul 2019 09:06:43 +0300 Subject: [PATCH] build(scripts): ordered scripts --- package.json | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 67f2a33..8518671 100644 --- a/package.json +++ b/package.json @@ -7,12 +7,11 @@ "test": "test" }, "scripts": { - "lint": "run-p lint-*", - "lint-src": "eslint src --fix --ext .ts", - "lint-tests": "eslint __tests__ --fix --ext .ts", + "lint": "run-p lint:*", + "lint:src": "eslint src --fix --ext .ts", + "lint:tests": "eslint __tests__ --fix --ext .ts", "precommit": "lint-staged", "commitmsg": "commitlint -e", - "babel": "babel src -d lib -s", "jest": "jest", "coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js", "prepublishOnly": "npm run build",