@typeschema/deepkit
Advanced tools
Comparing version 0.13.3 to 0.13.4
@@ -45,10 +45,11 @@ "use strict"; | ||
try { | ||
const { validate: validate2 } = await import( | ||
var dynamicallyImportedModule = await import( | ||
/* webpackIgnore: true */ | ||
"@deepkit/type" | ||
); | ||
return { validate: validate2 }; | ||
} catch (error) { | ||
throw error; | ||
} catch (moduleImportError) { | ||
throw moduleImportError; | ||
} | ||
const { validate: validate2 } = dynamicallyImportedModule; | ||
return { validate: validate2 }; | ||
}); | ||
@@ -55,0 +56,0 @@ var validationAdapter = async (schema) => { |
@@ -5,3 +5,3 @@ { | ||
"//version": "This field is manually maintained.", | ||
"version": "0.13.3", | ||
"version": "0.13.4", | ||
"//description": "This field is manually maintained.", | ||
@@ -56,4 +56,4 @@ "description": "Reusable adapter for Deepkit schemas", | ||
"devDependencies": { | ||
"@deepkit/type": "^1.0.1-alpha.132", | ||
"@deepkit/type-compiler": "^1.0.1-alpha.123" | ||
"@deepkit/type": "^1.0.1-alpha.139", | ||
"@deepkit/type-compiler": "^1.0.1-alpha.139" | ||
}, | ||
@@ -65,3 +65,3 @@ "//peerDependencies": { | ||
"peerDependencies": { | ||
"@deepkit/type": "^1.0.1-alpha.132" | ||
"@deepkit/type": "^1.0.1-alpha.139" | ||
}, | ||
@@ -78,4 +78,5 @@ "//peerDependenciesMeta": "This field is manually maintained.", | ||
"lint:package": "publint && attw --pack", | ||
"test": "vitest --config ../../vitest.config.ts" | ||
"test": "vitest --config ../../vitest.config.ts", | ||
"upgrade:deps": "ncu -u --dep=dev,peer --reject ow" | ||
} | ||
} |
@@ -38,3 +38,3 @@ <!-- This file is generated. Do not modify it manually! --> | ||
## Dependencies | ||
- [`@deepkit/type`](https://www.npmjs.com/package/@deepkit/type): Required for validation (`^1.0.1-alpha.132`) | ||
- [`@deepkit/type`](https://www.npmjs.com/package/@deepkit/type): Required for validation (`^1.0.1-alpha.139`) | ||
@@ -41,0 +41,0 @@ ## API |
Sorry, the diff of this file is not supported yet
11092
143