@epic-web/workshop-utils 6.84.4 → 6.84.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cache.server.js +4 -1
- package/package.json +1 -1
package/dist/cache.server.js
CHANGED
|
@@ -206,7 +206,10 @@ async function ensureWorkshopCacheMetadata(workshopId) {
|
|
|
206
206
|
return;
|
|
207
207
|
if (ensuredWorkshopCacheMetadata.has(workshopId)) {
|
|
208
208
|
try {
|
|
209
|
-
const filePath = getWorkshopCacheMetadataFilePath({
|
|
209
|
+
const filePath = getWorkshopCacheMetadataFilePath({
|
|
210
|
+
cacheDir,
|
|
211
|
+
workshopId,
|
|
212
|
+
});
|
|
210
213
|
if (await fsExtra.pathExists(filePath))
|
|
211
214
|
return;
|
|
212
215
|
}
|