Update dependencies & eslint

- update API-Docs link
- cast err as string to appease eslint
- update package and bump minimum to fix security issue
- removed unnecessary filters from gitignore
This commit is contained in:
Michael C
2021-08-27 17:09:31 -04:00
parent 954ac1eb07
commit 1c2dd055c1
24 changed files with 1374 additions and 1107 deletions

View File

@@ -38,7 +38,7 @@ export class Postgres implements IDatabase {
await this.applyIndexes(this.config.fileNamePrefix, this.config.dbSchemaFolder);
} catch (e) {
Logger.warn("Applying indexes failed. See https://github.com/ajayyy/SponsorBlockServer/wiki/Postgres-Extensions for more information.");
Logger.warn(e);
Logger.warn(e as string);
}
}
}