diff --git a/dist/index.js b/dist/index.js index 8e9be8f..4c695f2 100644 --- a/dist/index.js +++ b/dist/index.js @@ -12,7 +12,7 @@ const main = async () => { if (!version) return exit('Invalid bun version.'); const release = await getGithubRelease(version, token); - if (release?.message === 'Not Found') + if ((release === null || release === void 0 ? void 0 : release.message) === 'Not Found') return exit('Invalid bun version.'); info(`Going to install release ${release.tag_name}`); await install(release); diff --git a/requests.rest b/requests.rest deleted file mode 100644 index 7b2f860..0000000 --- a/requests.rest +++ /dev/null @@ -1,11 +0,0 @@ -GET https://api.github.com/repos/oven-sh/bun/releases/tags/bun-v0.1.2 -Content-Type: application/json -User-Agent: setup-bun-github-action -Authorization: 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 - -### - -GET https://api.github.com/repos/oven-sh/bun/releases/latest -Content-Type: application/json -User-Agent: setup-bun-github-action -Authorization: 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 \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index 3417ecd..a48decb 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,7 +3,7 @@ "outDir": "dist/", "lib": ["ESNext"], "module": "esnext", - "target": "esnext", + "target": "ES2018", "moduleResolution": "node", // "bun-types" is the important part "types": ["bun-types"],