Skip to content

Commit

Permalink
Updated packages, added globalThis to eslint globals to fix CI error
Browse files Browse the repository at this point in the history
  • Loading branch information
jawj committed Mar 23, 2023
1 parent 609bc94 commit 5b56383
Show file tree
Hide file tree
Showing 3 changed files with 346 additions and 293 deletions.
5 changes: 4 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
"@typescript-eslint",
"import"
],
"globals": {
"globalThis": false
},
"rules": {
"import/no-self-import": "warn",
"import/no-cycle": "warn",
Expand Down Expand Up @@ -66,4 +69,4 @@
"always"
]
}
}
}
1 change: 1 addition & 0 deletions db.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export const doNothing = mod.doNothing;
export const getConfig = mod.getConfig;
export const insert = mod.insert;
export const isDatabaseError = mod.isDatabaseError;
export const mapWithSeparator = mod.mapWithSeparator;
export const max = mod.max;
export const min = mod.min;
export const param = mod.param;
Expand Down
Loading

0 comments on commit 5b56383

Please sign in to comment.