1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-03 17:46:39 -04:00

compile typescript before hitting babel

This commit is contained in:
2021-06-06 08:36:28 -04:00
parent d389d05d7a
commit 9314c7eb15
10 changed files with 88 additions and 29 deletions

View File

@ -57,13 +57,16 @@ async function fetchRepos(sort: string, limit: number) {
name: string;
url: string;
description: string;
pushedAt: string;
pushedAt_relative?: string;
primaryLanguage?: {
color: string;
name: string;
};
stargazerCount: number;
stargazerCount_pretty?: string;
forkCount: number;
forkCount_pretty?: string;
primaryLanguage?: unknown;
pushedAt: string;
pushedAt_relative?: string;
};
const response = await client.request(query, { sort, limit });