Skip to content
This repository was archived by the owner on Mar 6, 2024. It is now read-only.

Commit 4400171

Browse files
authored
Prevent organize imports to move fetch-polyfill.js (#22)
<!-- This is an auto-generated comment: release notes by openai --> ### Summary by OpenAI **Release Notes** Prevent `organize imports` from moving `fetch-polyfill.js`. This pull request reorders the imports in `src/bot.ts` to import `fetch-polyfill.js` before `options.js`. <!-- end of auto-generated comment: release notes by openai -->
1 parent e493846 commit 4400171

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/bot.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
import "./fetch-polyfill.js";
2-
import * as optionsJs from "./options.js";
2+
33
import * as core from "@actions/core";
44
import * as openai from "chatgpt";
5+
import * as optionsJs from "./options.js";
56

67
// define type to save parentMessageId and conversationId
78
export type Ids = {

0 commit comments

Comments
 (0)