chore(package): split pretest into pretest and test

This commit is contained in:
Julien Fontanet 2017-12-12 12:07:06 +01:00
parent 299fdc19d6
commit 431b85c98f

View File

@ -40,10 +40,11 @@
"dev-test": "jest --bail --watch",
"lint-staged-stash": "touch .lint-staged && git stash save --include-untracked --keep-index && true",
"lint-staged-unstash": "git stash pop && rm -f .lint-staged && true",
"posttest": "scripts/run-script test",
"precommit": "lint-staged",
"prepare": "scripts/run-script prepare",
"pretest": "eslint --ignore-path .gitignore . && jest",
"test": "scripts/run-script test"
"pretest": "eslint --ignore-path .gitignore .",
"test": "jest"
},
"workspaces": [
"packages/*"