Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
patroza committed Dec 1, 2023
1 parent a77532a commit 086c2b1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/lovely-pens-press.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@effect-app/schema": patch
---

fix imports
2 changes: 1 addition & 1 deletion packages/schema/_src/custom/_api/model.ts
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions packages/schema/_src/custom/_api/withDefaults.ts
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 086c2b1

Please sign in to comment.