Build setup
All checks were successful
Lint / lint (push) Successful in 13s
Test build / test-build (pull_request) Successful in 18s

This commit is contained in:
Julien Valverdé
2024-09-04 00:19:41 +02:00
parent 65720d18a7
commit 292a010ed6
3 changed files with 13 additions and 1 deletions

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"],