Skip to content

Commit 57467ff

Browse files
committed
refactor: Update build process and improve TypeScript configuration
1 parent 75b99b8 commit 57467ff

File tree

4 files changed

+21
-29
lines changed

4 files changed

+21
-29
lines changed

.github/workflows/main_hubber-lookup-copilot-extension.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
npm run test --if-present
2929
3030
- name: Zip artifact for deployment
31-
run: zip release.zip ./* -r
31+
run: zip release.zip ./dist/index.js -r
3232

3333
- name: Upload artifact for deployment job
3434
uses: actions/upload-artifact@v4

index.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { z } from "zod";
1+
const { z } = require("zod");
22

33
// Fields we want to extract from user profile
44
const OutputUser = z.object({
@@ -13,12 +13,12 @@ const OutputUser = z.object({
1313
state: z.string().nullish(),
1414
bio: z.string().nullish(),
1515
recent: z.string().nullish(),
16-
twitter_username: z.string().transform((val) => val && `[@${val}](https://twitter.com/${val})`).nullish(),
16+
twitter_username: z.string().transform((val: any) => val && `[@${val}](https://twitter.com/${val})`).nullish(),
1717
public_repos: z.number().nullish(),
1818
public_gists: z.number().nullish(),
1919
followers: z.number().nullish(),
2020
following: z.number().nullish(),
21-
}).transform(({ login, isHubber, msft_alias, ...rest }) => ({
21+
}).transform(({ login, isHubber, msft_alias, ...rest }: { login: string, isHubber: string, msft_alias: string | null, [key: string]: any }) => ({
2222
isHubber,
2323
...rest
2424
}));
@@ -46,12 +46,12 @@ async function getHubberInfo(handle: string, token: string) {
4646
return "user not found."
4747
}
4848

49-
const [publicProfile, orgAllProfiles] = await Promise.all([
49+
const [publicProfile, orgAllProfiles]: [any, any] = await Promise.all([
5050
profileResponse.json(),
5151
orgChartResponse.json()
5252
]);
5353

54-
const orgProfile = orgAllProfiles.find((user: string) => user.github_login === handle) || {};
54+
const orgProfile = orgAllProfiles.find((user: { github_login: string }) => user.github_login === handle) || {};
5555
const isHubber = !!orgProfile.github_login
5656

5757
const profileRaw = {
@@ -105,7 +105,7 @@ Bun.serve({
105105

106106
// get first word of the message
107107
const firstWord = input.messages[input.messages.length - 1].content.split(" ")[0];
108-
const hubber = await getHubberInfo(firstWord, request.headers.get("X-GitHub-Token"));
108+
const hubber = await getHubberInfo(firstWord, request.headers.get("X-GitHub-Token") as any);
109109

110110
const messages = input.messages;
111111

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"name": "hacker-agent",
33
"module": "index.ts",
44
"scripts": {
5-
"dev": "bun --hot index.ts"
5+
"dev": "bun --hot index.ts",
6+
"build": "tsc"
67
},
78
"devDependencies": {
89
"@flydotio/dockerfile": "latest",
@@ -11,7 +12,6 @@
1112
"peerDependencies": {
1213
"typescript": "^5.0.0"
1314
},
14-
"type": "module",
1515
"dependencies": {
1616
"openai": "^4.24.7",
1717
"zod": "^3.22.4"

tsconfig.json

+12-20
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,14 @@
11
{
22
"compilerOptions": {
3-
"lib": ["ESNext"],
4-
"target": "ESNext",
5-
"module": "ESNext",
6-
"moduleDetection": "force",
7-
"jsx": "react-jsx",
8-
"allowJs": true,
9-
10-
/* Bundler mode */
11-
"moduleResolution": "bundler",
12-
"allowImportingTsExtensions": true,
13-
"verbatimModuleSyntax": true,
14-
"noEmit": true,
15-
16-
/* Linting */
17-
"skipLibCheck": true,
18-
"strict": true,
19-
"noFallthroughCasesInSwitch": true,
20-
"forceConsistentCasingInFileNames": true
21-
}
22-
}
3+
"target": "ES6", // Specify ECMAScript target version
4+
"module": "commonjs", // Specify module code generation
5+
"strict": true, // Enable all strict type-checking options
6+
"esModuleInterop": true, // Enables emit interoperability between CommonJS and ES Modules
7+
"skipLibCheck": true, // Skip type checking of declaration files
8+
"forceConsistentCasingInFileNames": true, // Disallow inconsistently-cased references to the same file
9+
"outDir": "./dist" // Redirect output structure to the directory
10+
},
11+
"include": [
12+
"index.ts" // Include the index.ts file
13+
]
14+
}

0 commit comments

Comments
 (0)