Skip to content

Commit

Permalink
fix: add missing file extensions to relative imports
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfy1339 committed Feb 25, 2024
1 parent 592926d commit 5a5a61f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/refresh-token.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import type { OctokitResponse, RequestInterface } from "@octokit/types";
import type {
GitHubAppAuthenticationWithRefreshToken,
GitHubAppCreateTokenWithExpirationResponseData,
} from "./types";
import { oauthRequest } from "./utils";
} from "./types.js";
import { oauthRequest } from "./utils.js";

export type RefreshTokenOptions = {
clientType: "github-app";
Expand Down
1 change: 0 additions & 1 deletion src/reset-token.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { request as defaultRequest } from "@octokit/request";
import btoa from "btoa-lite";

import type { Endpoints, RequestInterface } from "@octokit/types";
import type {
Expand Down

0 comments on commit 5a5a61f

Please sign in to comment.