Skip to content

Commit

Permalink
syntax fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bbrk24 committed Oct 26, 2024
1 parent d40bfc4 commit b9f19b1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "mariokart-optimizer",
"private": true,
"dependencies": {
"@danielx/civet": "~0.8.6",
"@danielx/civet": "~0.8.8",
"js-yaml": "^4.1.0"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/data.civet
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ switchResponsePromise := fetch './data/switch.json', opts
wiiUResponsePromise := fetch './data/wiiU.json', opts

data: Record 'switch' | 'wiiU', YamlData :=
await.all([switchResponsePromise, wiiUResponsePromise].map .then .json())
await.all [switchResponsePromise, wiiUResponsePromise].map .then .json()
|> (a) => switch: a.0, wiiU: a.1

export default data

0 comments on commit b9f19b1

Please sign in to comment.