Skip to content

Commit

Permalink
fix: fix type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
arianrhodsandlot committed Jan 29, 2025
1 parent f524a05 commit 4bc2188
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"test:integration": "node --test tests/integration/**/*.spec.ts"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
"pre-commit": "pnpm lint-staged && node --run=build"
},
"lint-staged": {
"*.?(m|c)@(j|t)s?(x)": "node --run=eslint -- --fix",
Expand Down
4 changes: 2 additions & 2 deletions src/libs/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,11 @@ export function getDefaultOptions() {
return `${cdnBaseUrl}/${romRepo}@master/${encodedFile}`
}

return file || []
return file
},

resolveBios(file) {
return file || []
return file
},

resolveShader(name) {
Expand Down

0 comments on commit 4bc2188

Please sign in to comment.