Update deps 2019 09 (#439)

* update minor deps

* update minor deps

* update major deps

* fix eslint warnings
This commit is contained in:
Misha Vyrtsev
2019-09-29 14:09:00 -05:00
committed by Umputun
parent ea2a15ea8e
commit 9fbdff106d
14 changed files with 3427 additions and 1926 deletions
-1
View File
@@ -207,7 +207,6 @@ export const removeComment = (id: Comment['id']) =>
export const removeMyComment = (id: Comment['id']): Promise<void> =>
fetcher.put({
url: `/comment/${id}?url=${url}`,
// eslint-disable-next-line @typescript-eslint/no-object-literal-type-assertion
body: {
delete: true,
} as object,
+1 -1
View File
@@ -5,7 +5,7 @@ if (!Element.prototype.matches) {
if (!Element.prototype.closest) {
Element.prototype.closest = function(s: string) {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-this-alias
let el: any = this;
do {