Skip to content

Commit

Permalink
refactor: change import to relative path
Browse files Browse the repository at this point in the history
  • Loading branch information
hambergerpls committed Oct 23, 2024
1 parent cd82d56 commit a0f414d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/cloudflare/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ import {
import type { Session } from "@auth/core/types"
import { type LoaderFunction, type LoaderFunctionArgs, type ActionFunction, type ActionFunctionArgs, redirect } from "@remix-run/cloudflare"
import { BuiltInProviderType, ProviderType } from "../providers/index.js"
import { RemixAuthConfig } from "src/lib/types.js"
import { setEnvDefaults } from "src/lib/utils.js"
import { RemixAuthConfig } from "../lib/types.js"
import { setEnvDefaults } from "../lib/utils.js"

export { customFetch }
export { AuthError, CredentialsSignin } from "@auth/core/errors"
Expand Down
4 changes: 2 additions & 2 deletions src/deno/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ import {
import type { Session } from "@auth/core/types"
import { type LoaderFunction, type LoaderFunctionArgs, type ActionFunction, type ActionFunctionArgs, redirect } from "@remix-run/deno"
import { BuiltInProviderType, ProviderType } from "../providers/index.js"
import { setEnvDefaults } from "src/lib/utils.js"
import { RemixAuthConfig } from "src/lib/types.js"
import { setEnvDefaults } from "../lib/utils.js"
import { RemixAuthConfig } from "../lib/types.js"

export { customFetch }
export { AuthError, CredentialsSignin } from "@auth/core/errors"
Expand Down
2 changes: 1 addition & 1 deletion src/lib/types.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { AuthConfig } from "@auth/core"
import { Adapter } from "src/adapters.js"
import { Adapter } from "../adapters.js"


export type RemixAuthConfig = Omit<AuthConfig, "raw" | "adapter"> & {
Expand Down
4 changes: 2 additions & 2 deletions src/node/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ import {
import type { Session } from "@auth/core/types"
import { type LoaderFunction, type LoaderFunctionArgs, type ActionFunction, type ActionFunctionArgs, redirect } from "@remix-run/node"
import { BuiltInProviderType, ProviderType } from "../providers/index.js"
import { setEnvDefaults } from "src/lib/utils.js"
import { RemixAuthConfig } from "src/lib/types.js"
import { setEnvDefaults } from "../lib/utils.js"
import { RemixAuthConfig } from "../lib/types.js"

export { customFetch }
export { AuthError, CredentialsSignin } from "@auth/core/errors"
Expand Down

0 comments on commit a0f414d

Please sign in to comment.