@cimplify/sdk 0.50.0 → 0.50.1
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/server.js +1 -1
- package/dist/server.mjs +1 -1
- package/package.json +1 -1
package/dist/server.js
CHANGED
|
@@ -214,7 +214,7 @@ var evictIncrementalCache = {
|
|
|
214
214
|
const index = pathIndexFor(env);
|
|
215
215
|
if (!index) return;
|
|
216
216
|
try {
|
|
217
|
-
await index.indexAdd(key, tags2, cacheType === "fetch");
|
|
217
|
+
await index.indexAdd(key, k, tags2, cacheType === "fetch");
|
|
218
218
|
} catch {
|
|
219
219
|
}
|
|
220
220
|
},
|
package/dist/server.mjs
CHANGED
|
@@ -212,7 +212,7 @@ var evictIncrementalCache = {
|
|
|
212
212
|
const index = pathIndexFor(env);
|
|
213
213
|
if (!index) return;
|
|
214
214
|
try {
|
|
215
|
-
await index.indexAdd(key, tags2, cacheType === "fetch");
|
|
215
|
+
await index.indexAdd(key, k, tags2, cacheType === "fetch");
|
|
216
216
|
} catch {
|
|
217
217
|
}
|
|
218
218
|
},
|