@cloudflare/vitest-pool-workers 0.16.0 → 0.16.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/pool/index.mjs +3 -1
- package/dist/pool/index.mjs.map +1 -1
- package/package.json +5 -5
package/dist/pool/index.mjs
CHANGED
|
@@ -9590,7 +9590,8 @@ var validatePreviewsConfig = /* @__PURE__ */ __name((envName) => (diagnostics, f
|
|
|
9590
9590
|
"version_metadata",
|
|
9591
9591
|
"logpush",
|
|
9592
9592
|
"observability",
|
|
9593
|
-
"limits"
|
|
9593
|
+
"limits",
|
|
9594
|
+
"cache"
|
|
9594
9595
|
]) && isValid2;
|
|
9595
9596
|
isValid2 = validateVars(envName)(diagnostics, `${field}.vars`, previews.vars, void 0) && isValid2;
|
|
9596
9597
|
isValid2 = validateDefines(envName)(diagnostics, `${field}.define`, previews.define, void 0) && isValid2;
|
|
@@ -9630,6 +9631,7 @@ var validatePreviewsConfig = /* @__PURE__ */ __name((envName) => (diagnostics, f
|
|
|
9630
9631
|
isValid2 = validateOptionalProperty(diagnostics, `${field}.limits`, "cpu_ms", previews.limits.cpu_ms, "number") && isValid2;
|
|
9631
9632
|
isValid2 = validateOptionalProperty(diagnostics, `${field}.limits`, "subrequests", previews.limits.subrequests, "number") && isValid2;
|
|
9632
9633
|
}
|
|
9634
|
+
isValid2 = validateCache(diagnostics, `${field}.cache`, previews.cache, void 0) && isValid2;
|
|
9633
9635
|
return isValid2;
|
|
9634
9636
|
}, "validatePreviewsConfig");
|
|
9635
9637
|
var validateMigrations = /* @__PURE__ */ __name((diagnostics, field, value) => {
|