Skip to content

Commit e87d31b

Browse files
committed
Fix CircleCI cache.
1 parent f6183df commit e87d31b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: .circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- restore_cache:
1919
name: Restore root dependencies from cache
2020
keys:
21-
- root-dependencies-v1-{{ checksum "yarn.lock" }}
21+
- root-dependencies-v1-{{ checksum "package.json" }}
2222
- run:
2323
name: Install dependencies
2424
command: yarn install
@@ -27,7 +27,7 @@ jobs:
2727
command: yarn bootstrap
2828
- save_cache:
2929
name: Cache root dependencies
30-
key: root-dependencies-v1-{{ checksum "yarn.lock" }}
30+
key: root-dependencies-v1-{{ checksum "package.json" }}
3131
paths:
3232
- ~/.cache/yarn
3333
- run: yarn build:packages

0 commit comments

Comments
 (0)