enable eslint caching

This commit is contained in:
Tobias Koppers 2018-05-11 16:06:20 +02:00
vecāks 0eeea0f344
revīzija 17bcc3c9db
2 mainīti faili ar 2 papildinājumiem un 1 dzēšanām

1
.gitignore ārējs
Parādīt failu

@ -10,4 +10,5 @@
*.log
.idea
.vscode
.eslintcache
package-lock.json

Parādīt failu

@ -113,7 +113,7 @@
"pretest": "yarn lint",
"prelint": "yarn setup",
"lint": "yarn code-lint && yarn schema-lint && yarn type-lint",
"code-lint": "eslint setup lib bin hot buildin \"test/*.js\" \"test/**/webpack.config.js\" \"examples/**/webpack.config.js\" \"schemas/**/*.js\"",
"code-lint": "eslint --cache setup lib bin hot buildin \"test/*.js\" \"test/**/webpack.config.js\" \"examples/**/webpack.config.js\" \"schemas/**/*.js\"",
"type-lint": "tsc --pretty",
"fix": "yarn code-lint --fix",
"pretty": "prettier \"setup/**/*.js\" \"lib/**/*.js\" \"bin/*.js\" \"hot/*.js\" \"buildin/*.js\" \"test/*.js\" \"test/**/webpack.config.js\" \"examples/**/webpack.config.js\" \"schemas/**/*.js\" \"declarations.d.ts\" --write",