From 086c2b1d25f8cc45b5ab41cea4af7a4b0901fc1f Mon Sep 17 00:00:00 2001 From: Patrick Roza Date: Fri, 1 Dec 2023 16:15:23 +0100 Subject: [PATCH] fix imports --- .changeset/lovely-pens-press.md | 5 +++++ packages/schema/_src/custom/_api/model.ts | 2 +- packages/schema/_src/custom/_api/withDefaults.ts | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 .changeset/lovely-pens-press.md diff --git a/.changeset/lovely-pens-press.md b/.changeset/lovely-pens-press.md new file mode 100644 index 000000000..3a869b289 --- /dev/null +++ b/.changeset/lovely-pens-press.md @@ -0,0 +1,5 @@ +--- +"@effect-app/schema": patch +--- + +fix imports diff --git a/packages/schema/_src/custom/_api/model.ts b/packages/schema/_src/custom/_api/model.ts index 069f84e4c..01a826bcf 100644 --- a/packages/schema/_src/custom/_api/model.ts +++ b/packages/schema/_src/custom/_api/model.ts @@ -1,4 +1,4 @@ -import { type CustomSchemaException, parseEither, parseFromEither, parseFromSync, parseSync } from "_src/ext.js" +import { type CustomSchemaException, parseEither, parseFromEither, parseFromSync, parseSync } from "../../ext.js" import type { Annotation } from "../_schema.js" import * as S from "../_schema.js" import { named } from "../_schema.js" diff --git a/packages/schema/_src/custom/_api/withDefaults.ts b/packages/schema/_src/custom/_api/withDefaults.ts index 28c361c49..06adee673 100644 --- a/packages/schema/_src/custom/_api/withDefaults.ts +++ b/packages/schema/_src/custom/_api/withDefaults.ts @@ -1,6 +1,6 @@ import type { UnionToIntersection } from "@effect-app/core/utils" -import type { CustomSchemaException } from "_src/ext.js" -import { parseEither, parseSync } from "_src/ext.js" +import type { CustomSchemaException } from "../../ext.js" +import { parseEither, parseSync } from "../../ext.js" import type { Annotation } from "../_schema.js" import * as S from "../_schema.js" import type { Schema } from "../_schema/schema.js"