Skip to content

Commit 5a5a61f

Browse files
committed
fix: add missing file extensions to relative imports
1 parent 592926d commit 5a5a61f

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/refresh-token.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import type { OctokitResponse, RequestInterface } from "@octokit/types";
44
import type {
55
GitHubAppAuthenticationWithRefreshToken,
66
GitHubAppCreateTokenWithExpirationResponseData,
7-
} from "./types";
8-
import { oauthRequest } from "./utils";
7+
} from "./types.js";
8+
import { oauthRequest } from "./utils.js";
99

1010
export type RefreshTokenOptions = {
1111
clientType: "github-app";

src/reset-token.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { request as defaultRequest } from "@octokit/request";
2-
import btoa from "btoa-lite";
32

43
import type { Endpoints, RequestInterface } from "@octokit/types";
54
import type {

0 commit comments

Comments
 (0)