Skip to content

Commit 7e88edc

Browse files
committed
try to optimize a little bit the build
1 parent 0c74648 commit 7e88edc

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

Diff for: .circleci/config.yml

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ workflows:
2020
- install
2121
- cypress/run:
2222
yarn: true
23+
cache-key: v1-dependencies-{{ checksum "package.json" }}
2324
executor: cypress/base-14
2425
start: yarn serve
2526
wait-on: 'http://localhost:5000'

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
/build
44

55
cypress/videos/
6+
cypress/screenshots/
67

78
.eslintcache
89

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"clean": "eslint \"src/**/*.js\" --fix",
1010
"start": "react-scripts start",
1111
"build": "react-scripts build",
12-
"serve": "yarn build && serve -s build",
12+
"serve": "yarn build && serve -s build -n",
1313
"predeploy": "yarn build",
1414
"deploy": "gh-pages -b gh-pages -e ./docs -d build"
1515
},

0 commit comments

Comments
 (0)