build: utilize the node_modules/.cache (#6364)
* build: add caching to eslint * build: add caching to jest * build: add caching to tsc * build: add caching to actions * fix: upgrade upload-artifact to v3 * build: update craco eslint cacheLocation * fix: pr nits
Showing
... | @@ -21,7 +21,7 @@ | ... | @@ -21,7 +21,7 @@ |
"start": "craco start", | "start": "craco start", | ||
"build": "craco build", | "build": "craco build", | ||
"serve": "serve build -l 3000", | "serve": "serve build -l 3000", | ||
"lint": "yarn eslint --ignore-path .gitignore .", | "lint": "yarn eslint --ignore-path .gitignore --cache --cache-location node_modules/.cache/eslint/ .", | ||
"typecheck": "tsc --noEmit", | "typecheck": "tsc --noEmit", | ||
"test": "craco test --coverage", | "test": "craco test --coverage", | ||
"test:size": "node scripts/test-size.js", | "test:size": "node scripts/test-size.js", | ||
... | @@ -100,7 +100,7 @@ | ... | @@ -100,7 +100,7 @@ |
"@uniswap/eslint-config": "^1.1.1", | "@uniswap/eslint-config": "^1.1.1", | ||
"@vanilla-extract/babel-plugin": "^1.1.7", | "@vanilla-extract/babel-plugin": "^1.1.7", | ||
"@vanilla-extract/webpack-plugin": "^2.1.11", | "@vanilla-extract/webpack-plugin": "^2.1.11", | ||
"cypress": "^10.3.1", | "cypress": "10.3.1", | ||
"env-cmd": "^10.1.0", | "env-cmd": "^10.1.0", | ||
"eslint": "^7.11.0", | "eslint": "^7.11.0", | ||
"jest-fetch-mock": "^3.0.3", | "jest-fetch-mock": "^3.0.3", | ||
... | ... |
Please register or sign in to comment