Skip to content

Commit

Permalink
Fix update to prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
imaandrew committed Jul 20, 2023
1 parent a1d6f31 commit 3e8b23b
Show file tree
Hide file tree
Showing 4 changed files with 5,973 additions and 3,749 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ node_modules
dist
dist-ssr
*.local
.yarn

# Editor directories and files
.vscode/*
Expand Down
1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodeLinker: node-modules
2 changes: 1 addition & 1 deletion src/lib/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export async function getS3File(path: string): Promise<Uint8Array> {
export async function getTags(): Promise<string[]> {
console.log("making request");
const response = await fetch(
"https://api.github.com/repos/jcog/fp/git/refs/tags"
"https://api.github.com/repos/jcog/fp/git/refs/tags",
);
const data = await response.json();
return data.map((item: { ref: string }) => item.ref.split("/").pop());
Expand Down
Loading

0 comments on commit 3e8b23b

Please sign in to comment.