refactor: update dependencies

This commit is contained in:
Rainer Killinger
2020-02-06 13:08:45 +01:00
parent 2a0dc812d8
commit d167947e04
3 changed files with 1050 additions and 669 deletions

1692
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -44,30 +44,30 @@
"dependencies": { "dependencies": {
"@types/geojson": "1.0.6", "@types/geojson": "1.0.6",
"@types/json-patch": "0.0.30", "@types/json-patch": "0.0.30",
"@types/node": "10.14.14", "@types/node": "10.17.14",
"fast-clone": "1.5.13", "fast-clone": "1.5.13",
"http-status-codes": "1.3.2", "http-status-codes": "1.4.0",
"json-patch": "0.7.0", "json-patch": "0.7.0",
"jsonschema": "1.2.4", "jsonschema": "1.2.5",
"ts-optchain": "0.1.3" "ts-optchain": "0.1.3"
}, },
"devDependencies": { "devDependencies": {
"@krlwlfrt/async-pool": "0.1.0", "@krlwlfrt/async-pool": "0.1.0",
"@openstapps/configuration": "0.21.1", "@openstapps/configuration": "0.23.0",
"@openstapps/core-tools": "0.8.0", "@openstapps/core-tools": "0.14.0",
"@openstapps/logger": "0.4.0", "@openstapps/logger": "0.4.0",
"@types/chai": "4.1.7", "@types/chai": "4.2.8",
"@types/rimraf": "2.0.2", "@types/rimraf": "2.0.3",
"chai": "4.2.0", "chai": "4.2.0",
"commander": "2.20.0", "commander": "2.20.0",
"conditional-type-checks": "1.0.1", "conditional-type-checks": "1.0.5",
"conventional-changelog-cli": "2.0.23", "conventional-changelog-cli": "2.0.31",
"mocha": "6.2.0", "mocha": "6.2.0",
"mocha-typescript": "1.1.17", "mocha-typescript": "1.1.17",
"nyc": "14.1.1", "nyc": "14.1.1",
"rimraf": "2.6.3", "rimraf": "3.0.2",
"source-map-support": "0.5.13", "source-map-support": "0.5.13",
"ts-node": "8.3.0", "ts-node": "8.6.2",
"tslint": "5.18.0", "tslint": "5.18.0",
"typedoc": "0.14.2", "typedoc": "0.14.2",
"typescript": "3.5.3" "typescript": "3.5.3"

View File

@@ -24,8 +24,7 @@ import {DeclarationReflection, ProjectReflection} from 'typedoc';
import {ArrayType, IntrinsicType, ReferenceType, StringLiteralType, Type, UnionType} from 'typedoc/dist/lib/models'; import {ArrayType, IntrinsicType, ReferenceType, StringLiteralType, Type, UnionType} from 'typedoc/dist/lib/models';
process.on('unhandledRejection', (err) => { process.on('unhandledRejection', (err) => {
Logger.error('UNHANDLED REJECTION', err.stack); throw err;
process.exit(1);
}); });
/** /**