Update dependencies to enable Greenkeeper 🌴 (#121)

* chore: add Greenkeeper config file

* chore(package): update dependencies

* chore(package): update dependencies

* docs(readme): add Greenkeeper badge

* chore(package): update lockfile app/yarn.lock

* chore(package): update lockfile yarn.lock

* Fix update specific issues

* Fix AceEditor
This commit is contained in:
greenkeeper[bot]
2019-06-05 11:48:15 +02:00
committed by Thomas Nordquist
parent 4f0b13bdc7
commit f8648b92a1
11 changed files with 426 additions and 230 deletions

View File

@@ -26,7 +26,7 @@ import {
sleep,
} from './util'
process.on('unhandledRejection', (error: Error) => {
process.on('unhandledRejection', (error: Error | any) => {
console.error('unhandledRejection', error.message, error.stack)
process.exit(1)
})

View File

@@ -14,7 +14,7 @@ import { clearSearch, searchTree } from './scenarios/searchTree'
import { connectTo } from './scenarios/connect'
import { reconnect } from './scenarios/reconnect'
process.on('unhandledRejection', (error: Error) => {
process.on('unhandledRejection', (error: Error | any) => {
console.error('unhandledRejection', error.message, error.stack)
process.exit(1)
})