Skip to content

Commit

Permalink
Use ESLint cache for local development (graphql#1747)
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanGoncharov authored Feb 19, 2019
1 parent 6ffacd0 commit f205c99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
"scripts": {
"watch": "node ./resources/watch.js",
"test": "npm run lint && npm run check && npm run testonly",
"test:ci": "npm run lint && npm run check && npm run testonly:cover",
"test:ci": "npm run lint -- --no-cache && npm run check && npm run testonly:cover",
"testonly": "mocha --full-trace src/**/__tests__/**/*-test.js",
"testonly:cover": "nyc --clean --skip-full --reporter json --reporter html --reporter text -- npm run testonly",
"lint": "eslint --report-unused-disable-directives src || (printf '\\033[33mTry: \\033[7m npm run lint -- --fix \\033[0m\\n' && exit 1)",
"lint": "eslint --cache --report-unused-disable-directives src",
"benchmark": "node ./resources/benchmark.js",
"prettier": "prettier --write --list-different 'src/**/*.js'",
"check": "flow check",
Expand Down

0 comments on commit f205c99

Please sign in to comment.