Skip to content

Commit

Permalink
Fix build, add build dir to .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
0xDaedalus committed Jun 14, 2022
1 parent e4aa7e6 commit d08d633
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules/
build
4 changes: 2 additions & 2 deletions utils/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,10 @@ glob("chains/*.json", {}, async function (er, files) {
process.stdout.write("No Fleek credentials found, using GitHub URLs rather than IPFS...\n")
tokens = tokens.map((token) => ({
...token,
logoURI: token["logoURI"].replace(
logoURI: token.logoURI ? token["logoURI"].replace(
/^\.\./,
"https://github.com/tallycash/token-list/raw/main"
)
) : undefined
}))
}

Expand Down

0 comments on commit d08d633

Please sign in to comment.