Skip to content

Commit

Permalink
fix: add missing alias
Browse files Browse the repository at this point in the history
  • Loading branch information
petyosi committed Nov 30, 2024
1 parent 64536ab commit d262793
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions biome.jsonc
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"vcs": {
"enabled": false,
"enabled": true,
"clientKind": "git",
"useIgnoreFile": false
"useIgnoreFile": true
},
"files": {
"include": ["src/**/*.ts", "src/**/*.tsx", "vite.config.ts", "vitest.workspace.ts"],
Expand Down
6 changes: 6 additions & 0 deletions src/realm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1367,3 +1367,9 @@ export const pipe: Realm['pipe'] = (...args: unknown[]) => {
export const changeWith: Realm['changeWith'] = (...args) => {
getCurrentRealm().changeWith(...args)
}

// @ts-expect-error - this is fine
export const combine: Realm['combine'] = (...args: unknown[]) => {
// @ts-expect-error - this is fine
return getCurrentRealm().combine(...args)
}

0 comments on commit d262793

Please sign in to comment.