@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.
@@ -206,7 +206,10 @@ async function ensureWorkshopCacheMetadata(workshopId) {
206
206
  return;
207
207
  if (ensuredWorkshopCacheMetadata.has(workshopId)) {
208
208
  try {
209
- const filePath = getWorkshopCacheMetadataFilePath({ cacheDir, workshopId });
209
+ const filePath = getWorkshopCacheMetadataFilePath({
210
+ cacheDir,
211
+ workshopId,
212
+ });
210
213
  if (await fsExtra.pathExists(filePath))
211
214
  return;
212
215
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epic-web/workshop-utils",
3
- "version": "6.84.4",
3
+ "version": "6.84.5",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },