Skip to content

Commit 5366ef4

Browse files
authored
Update caching.md
Minor changes to content based on Glen's feedback.
1 parent fdcba3e commit 5366ef4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jekyll/_cci2/caching.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ The next key does not have a dynamic component to it, it simply is a static stri
106106

107107
### Using Caching in Monorepos
108108

109-
There are many different approaches to utilizing caching in monorepos. The customer-provided example below shows how a user can create and then build a concatenated `package-lock` file that can be used as a checksum for the caching key.
109+
There are many different approaches to utilizing caching in monorepos. This type of approach can be used whenever you need to managed a shared cache based on multiple files in different parts of your monorepo.
110110

111111
#### Creating and Building a Concatenated `package-lock` file
112112

@@ -135,7 +135,7 @@ There are many different approaches to utilizing caching in monorepos. The custo
135135
- checkout
136136
- create_concatenated_package_lock:
137137
filename: combined-package-lock.txt
138-
Use combined-package-lock.text in cache key
138+
## Use combined-package-lock.text in cache key
139139
- restore_cache:
140140
keys:
141141
- v3-deps-{{ checksum "package-lock.json" }}-{{ checksum "combined-package-lock.txt" }}

0 commit comments

Comments
 (0)