Skip to content

Commit d2541bb

Browse files
committed
fix: Remove cache management on dist folder
1 parent b23a307 commit d2541bb

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

.circleci/config.yml

+5-7
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,9 @@ jobs:
4343
name: Build
4444
command: npm run build:prod
4545
- save_cache:
46-
key: v1-source-{{ checksum "package.json" }}
4746
paths:
48-
- dist
4947
- node_modules
50-
- package.json
48+
key: v1-dependencies-{{ checksum "package.json" }}
5149

5250
deploy-docs:
5351
docker:
@@ -57,9 +55,9 @@ jobs:
5755
- checkout
5856
- restore_cache:
5957
keys:
60-
- v1-source-{{ checksum "package.json" }}
58+
- v1-dependencies-{{ checksum "package.json" }}
6159
# fallback to using the latest cache if no exact match is found
62-
- v1-source-
60+
- v1-dependencies-
6361
- run:
6462
name: Build Docs
6563
command: npm run docs
@@ -75,9 +73,9 @@ jobs:
7573
- checkout
7674
- restore_cache:
7775
keys:
78-
- v1-source-{{ checksum "package.json" }}
76+
- v1-dependencies-{{ checksum "package.json" }}
7977
# fallback to using the latest cache if no exact match is found
80-
- v1-source-
78+
- v1-dependencies-
8179
- run:
8280
name: Publish Package
8381
command: cd dist && npm run semantic-release

0 commit comments

Comments
 (0)