Skip to content

Commit

Permalink
chore(valibot): re-export @gqloom/core and update related packages
Browse files Browse the repository at this point in the history
  • Loading branch information
xcfox committed Dec 3, 2024
1 parent 6965006 commit 8db2428
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 2 deletions.
1 change: 1 addition & 0 deletions packages/valibot/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ All notable changes to this project will be documented in this file.
## next (YYYY-MM-DD)

* Chore: update `@standard-schema/spec` to 1.0.0-beta.4
* Chore: re-export `@gqloom/core`

## \[0.4.0] (2024-11-20)

Expand Down
1 change: 1 addition & 0 deletions packages/valibot/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -317,3 +317,4 @@ export class ValibotWeaver {
}

export * from "./metadata"
export * from "@gqloom/core"
11 changes: 10 additions & 1 deletion packages/yup/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import type {
YupWeaverConfigOptions,
} from "./types"
import type { UnionSchema } from "./union"
export * from "@gqloom/core"

export * from "./types"
export * from "./union"
Expand Down Expand Up @@ -385,3 +384,13 @@ function issuesFromValidationError(
export const { query, mutation, field, resolver, subscription } = createLoom<
YupSchemaIO | GraphQLSilkIO
>(yupSilk, yupSilk.isSilk)

export {
collectName,
collectNames,
weave,
silk,
getGraphQLType,
parseSilk,
SchemaWeaver,
} from "@gqloom/core"
10 changes: 9 additions & 1 deletion packages/zod/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -499,4 +499,12 @@ async function parseZod(
}
}

export * from "@gqloom/core"
export {
collectName,
collectNames,
weave,
silk,
getGraphQLType,
parseSilk,
SchemaWeaver,
} from "@gqloom/core"

0 comments on commit 8db2428

Please sign in to comment.