Comparing version 0.0.29 to 0.0.30
@@ -36,5 +36,10 @@ "use strict"; | ||
const docSoFar = {}; | ||
for (const [_, promise] of promises) { | ||
for (const promise of promises.values()) { | ||
Object.assign(docSoFar, yield promise); | ||
} | ||
for (const key of Object.keys(docSoFar)) { | ||
if (!(key in docSoFar)) { | ||
docSoFar[key] = undefined; | ||
} | ||
} | ||
const schemaShape = yield schemaShapePromise; | ||
@@ -41,0 +46,0 @@ const schema = zod_1.z |
{ | ||
"name": "zongo", | ||
"version": "0.0.29", | ||
"version": "0.0.30", | ||
"main": "dist/index.js", | ||
@@ -5,0 +5,0 @@ "types": "dist/index.d.ts", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
67535
1167