0.1.15 #16

Merged
Thilawyn merged 12 commits from next into master 2024-09-04 00:33:45 +02:00
3 changed files with 13 additions and 1 deletions
Showing only changes of commit 292a010ed6 - Show all commits

View File

@@ -1,6 +1,6 @@
{
"name": "@thilawyn/thilalib",
"version": "0.1.14",
"version": "0.1.15",
"type": "module",
"files": [
"./dist"
@@ -47,6 +47,16 @@
"default": "./dist/Schema/MobX/index.cjs"
}
},
"./Schema/TanStackForm": {
"import": {
"types": "./dist/Schema/TanStackForm/index.d.ts",
"default": "./dist/Schema/TanStackForm/index.js"
},
"require": {
"types": "./dist/Schema/TanStackForm/index.d.cts",
"default": "./dist/Schema/TanStackForm/index.cjs"
}
},
"./Types": {
"import": {
"types": "./dist/Types/index.d.ts",

View File

@@ -0,0 +1 @@
export * from "./makeSchemaFormValidator"

View File

@@ -7,6 +7,7 @@ export default defineConfig({
"./src/Layers/index.ts",
"./src/Schema/index.ts",
"./src/Schema/MobX/index.ts",
"./src/Schema/TanStackForm/index.ts",
"./src/Types/index.ts",
],
format: ["esm", "cjs"],