Compare commits

...

4 Commits

Author SHA1 Message Date
Rainer Killinger
18943612a8 0.33.0 2020-02-11 14:39:07 +01:00
Rainer Killinger
d167947e04 refactor: update dependencies 2020-02-11 13:06:03 +01:00
Rainer Killinger
2a0dc812d8 ci: saperate aduit jobs from test stage 2020-02-06 13:23:25 +01:00
Rainer Killinger
cdb8a6507d docs: update changelog 2020-02-04 16:15:26 +01:00
5 changed files with 1064 additions and 673 deletions

View File

@@ -11,6 +11,7 @@ before_script:
stages: stages:
- build - build
- test - test
- audit
- deploy - deploy
- publish - publish
@@ -26,7 +27,7 @@ build:
expire_in: 1 week expire_in: 1 week
audit: audit:
stage: test stage: audit
script: script:
- npm audit - npm audit
allow_failure: true allow_failure: true
@@ -34,7 +35,7 @@ audit:
- schedules - schedules
scheduled-audit: scheduled-audit:
stage: test stage: audit
script: script:
- npm audit - npm audit
only: only:

View File

@@ -1,3 +1,12 @@
# [0.32.0](https://gitlab.com/openstapps/core/compare/v0.31.0...v0.32.0) (2020-02-04)
### Features
* make SCContactPoint extend SCThing ([0d89b14](https://gitlab.com/openstapps/core/commit/0d89b14))
# [0.31.0](https://gitlab.com/openstapps/core/compare/v0.30.0...v0.31.0) (2019-11-14) # [0.31.0](https://gitlab.com/openstapps/core/compare/v0.30.0...v0.31.0) (2019-11-14)

1696
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{ {
"name": "@openstapps/core", "name": "@openstapps/core",
"version": "0.32.0", "version": "0.33.0",
"description": "StAppsCore - Generalized model of data", "description": "StAppsCore - Generalized model of data",
"keywords": [ "keywords": [
"Model", "Model",
@@ -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);
}); });
/** /**