From bac5c08a63b4a979a434bb7ae446ced2923bae5a Mon Sep 17 00:00:00 2001 From: Olivier Albertini Date: Tue, 15 Sep 2020 10:35:32 -0400 Subject: [PATCH] chore(release): publish --- CHANGELOG.md | 16 +++++++++++ examples/basic/CHANGELOG.md | 11 ++++++++ examples/basic/package.json | 22 +++++++-------- examples/binding/CHANGELOG.md | 11 ++++++++ examples/binding/package.json | 22 +++++++-------- examples/camunda-cloud/CHANGELOG.md | 7 +++++ examples/camunda-cloud/package.json | 22 +++++++-------- examples/event/CHANGELOG.md | 11 ++++++++ examples/event/package.json | 22 +++++++-------- examples/failure-strategy/CHANGELOG.md | 11 ++++++++ examples/failure-strategy/package.json | 22 +++++++-------- examples/opentelemetry/CHANGELOG.md | 11 ++++++++ examples/opentelemetry/package.json | 22 +++++++-------- examples/parallel/CHANGELOG.md | 11 ++++++++ examples/parallel/package.json | 22 +++++++-------- lerna.json | 2 +- packages/workit-bpm-client/CHANGELOG.md | 16 +++++++++++ packages/workit-bpm-client/package.json | 24 ++++++++-------- packages/workit-camunda/CHANGELOG.md | 11 ++++++++ packages/workit-camunda/package.json | 28 +++++++++---------- packages/workit-cli/CHANGELOG.md | 11 ++++++++ packages/workit-cli/package.json | 22 +++++++-------- packages/workit-core/CHANGELOG.md | 11 ++++++++ packages/workit-core/package.json | 24 ++++++++-------- packages/workit-types/CHANGELOG.md | 11 ++++++++ packages/workit-types/package.json | 18 ++++++------ packages/workit-zeebe-client/CHANGELOG.md | 11 ++++++++ packages/workit-zeebe-client/package.json | 18 ++++++------ .../zeebe-elasticsearch-client/CHANGELOG.md | 11 ++++++++ .../zeebe-elasticsearch-client/package.json | 20 ++++++------- 30 files changed, 326 insertions(+), 155 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 299d5b9c..a036c8e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.2.0](https://github.com/VilledeMontreal/workit/compare/v4.1.0...v4.2.0) (2020-09-15) + + +### Bug Fixes + +* move from tslint to eslint ([#178](https://github.com/VilledeMontreal/workit/issues/178)) ([0dce14b](https://github.com/VilledeMontreal/workit/commit/0dce14b696649cdff886c3e7a0ffdbbd56b548d7)), closes [#159](https://github.com/VilledeMontreal/workit/issues/159) + + +### Features + +* use custom retry timeout upon failure ([#212](https://github.com/VilledeMontreal/workit/issues/212)) ([49c24f4](https://github.com/VilledeMontreal/workit/commit/49c24f475cbed3a438e65b75288c86f9aec73f81)) + + + + + ## 4.2.0 (2020-09-15) #### :rocket: (Enhancement) diff --git a/examples/basic/CHANGELOG.md b/examples/basic/CHANGELOG.md index 207aaa3b..b38d6d87 100644 --- a/examples/basic/CHANGELOG.md +++ b/examples/basic/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.2.0](https://github.com/VilledeMontreal/workit/compare/v4.1.0...v4.2.0) (2020-09-15) + + +### Bug Fixes + +* move from tslint to eslint ([#178](https://github.com/VilledeMontreal/workit/issues/178)) ([0dce14b](https://github.com/VilledeMontreal/workit/commit/0dce14b696649cdff886c3e7a0ffdbbd56b548d7)), closes [#159](https://github.com/VilledeMontreal/workit/issues/159) + + + + + # 4.1.0 (2020-03-12) diff --git a/examples/basic/package.json b/examples/basic/package.json index bf1d88e4..5720a9ae 100644 --- a/examples/basic/package.json +++ b/examples/basic/package.json @@ -1,7 +1,7 @@ { "name": "workit-example-basic", "private": true, - "version": "4.1.0", + "version": "4.2.0", "description": "Basic example of workit usage", "main": "lib/src/worker.js", "typings": "lib/src/worker.d.ts", @@ -15,7 +15,7 @@ "watch": "tsc -p ./tsconfig.json --watch", "lint": "eslint . --ext .ts && prettier -l \"src/**/*.ts\"", "lint-fix": "prettier \"./**/*.ts\" --write && eslint . --ext .ts --fix", - "check-conflicts":"eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check", + "check-conflicts": "eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check", "camunda:deploy": "node ./lib/src/deploy.js", "camunda:create-instance": "node ./lib/src/create-process-instances.js", "camunda:worker": "node ./lib/src/worker.js" @@ -26,22 +26,22 @@ }, "devDependencies": { "@types/node": "^14.0.0", - "prettier": "^2.0.1", + "@typescript-eslint/eslint-plugin": "^2.24.0", + "@typescript-eslint/parser": "^2.24.0", "eslint": "^6.8.0", - "eslint-plugin-header":"^3.0.0", "eslint-config-airbnb-typescript": "^7.2.0", + "eslint-config-prettier": "^6.10.1", + "eslint-plugin-header": "^3.0.0", "eslint-plugin-import": "^2.20.1", - "eslint-config-prettier":"^6.10.1", - "eslint-plugin-prettier":"^3.1.2", - "@typescript-eslint/eslint-plugin": "^2.24.0", - "@typescript-eslint/parser": "^2.24.0", + "eslint-plugin-prettier": "^3.1.2", + "prettier": "^2.0.1", "typescript": "^3.8.3" }, "dependencies": { "axios": "^0.19.2", - "workit-camunda": "^4.1.0", - "workit-core": "^4.1.0", - "workit-types": "^4.1.0" + "workit-camunda": "^4.2.0", + "workit-core": "^4.2.0", + "workit-types": "^4.2.0" }, "keywords": [ "workit", diff --git a/examples/binding/CHANGELOG.md b/examples/binding/CHANGELOG.md index 4200c4d6..e2f6930a 100644 --- a/examples/binding/CHANGELOG.md +++ b/examples/binding/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.2.0](https://github.com/VilledeMontreal/workit/compare/v4.1.0...v4.2.0) (2020-09-15) + + +### Bug Fixes + +* move from tslint to eslint ([#178](https://github.com/VilledeMontreal/workit/issues/178)) ([0dce14b](https://github.com/VilledeMontreal/workit/commit/0dce14b696649cdff886c3e7a0ffdbbd56b548d7)), closes [#159](https://github.com/VilledeMontreal/workit/issues/159) + + + + + # 4.1.0 (2020-03-12) diff --git a/examples/binding/package.json b/examples/binding/package.json index e212517b..658355f2 100644 --- a/examples/binding/package.json +++ b/examples/binding/package.json @@ -1,7 +1,7 @@ { "name": "workit-example-binding", "private": true, - "version": "4.1.0", + "version": "4.2.0", "description": "Show how to bind tasks with Workit", "main": "lib/src/worker.js", "typings": "lib/src/worker.d.ts", @@ -15,7 +15,7 @@ "watch": "tsc -p ./tsconfig.json --watch", "lint": "eslint . --ext .ts && prettier -l \"src/**/*.ts\"", "lint-fix": "prettier \"./**/*.ts\" --write && eslint . --ext .ts --fix", - "check-conflicts":"eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check", + "check-conflicts": "eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check", "camunda:deploy": "node ./lib/src/deploy.js", "camunda:create-instance": "node ./lib/src/create-process-instances.js", "camunda:worker": "node ./lib/src/worker.js" @@ -26,22 +26,22 @@ }, "devDependencies": { "@types/node": "^14.0.0", - "prettier": "^1.19.1", + "@typescript-eslint/eslint-plugin": "^2.24.0", + "@typescript-eslint/parser": "^2.24.0", "eslint": "^6.8.0", - "eslint-plugin-header":"^3.0.0", "eslint-config-airbnb-typescript": "^7.2.0", + "eslint-config-prettier": "^6.10.1", + "eslint-plugin-header": "^3.0.0", "eslint-plugin-import": "^2.20.1", - "eslint-config-prettier":"^6.10.1", - "eslint-plugin-prettier":"^3.1.2", - "@typescript-eslint/eslint-plugin": "^2.24.0", - "@typescript-eslint/parser": "^2.24.0", + "eslint-plugin-prettier": "^3.1.2", + "prettier": "^1.19.1", "typescript": "^3.8.3" }, "dependencies": { "axios": "^0.19.2", - "workit-camunda": "^4.1.0", - "workit-core": "^4.1.0", - "workit-types": "^4.1.0" + "workit-camunda": "^4.2.0", + "workit-core": "^4.2.0", + "workit-types": "^4.2.0" }, "keywords": [ "workit", diff --git a/examples/camunda-cloud/CHANGELOG.md b/examples/camunda-cloud/CHANGELOG.md index e4d87c4d..e5798796 100644 --- a/examples/camunda-cloud/CHANGELOG.md +++ b/examples/camunda-cloud/CHANGELOG.md @@ -2,3 +2,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [4.2.0](https://github.com/VilledeMontreal/workit/compare/v4.1.0...v4.2.0) (2020-09-15) + + +### Bug Fixes + +* move from tslint to eslint ([#178](https://github.com/VilledeMontreal/workit/issues/178)) ([0dce14b](https://github.com/VilledeMontreal/workit/commit/0dce14b696649cdff886c3e7a0ffdbbd56b548d7)), closes [#159](https://github.com/VilledeMontreal/workit/issues/159) diff --git a/examples/camunda-cloud/package.json b/examples/camunda-cloud/package.json index a44ce48d..ad4abaa1 100644 --- a/examples/camunda-cloud/package.json +++ b/examples/camunda-cloud/package.json @@ -1,7 +1,7 @@ { "name": "workit-camunda-cloud", "private": true, - "version": "2.0.4", + "version": "4.2.0", "description": "Basic example of workit usage with Camunda Cloud", "main": "lib/src/worker.js", "typings": "lib/src/worker.d.ts", @@ -15,7 +15,7 @@ "watch": "tsc -p ./tsconfig.json --watch", "lint": "eslint . --ext .ts && prettier -l \"src/**/*.ts\"", "lint-fix": "prettier \"./**/*.ts\" --write && eslint . --ext .ts --fix", - "check-conflicts":"eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check", + "check-conflicts": "eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check", "camunda:deploy": "node -r ./lib/src/setup.js ./lib/src/deploy.js", "camunda:create-instance": "node -r ./lib/src/setup.js ./lib/src/create-process-instances.js", "camunda:worker": "node -r ./lib/src/setup.js ./lib/src/worker.js" @@ -26,21 +26,21 @@ }, "devDependencies": { "@types/node": "^13.9.3", - "prettier": "^2.0.1", + "@typescript-eslint/eslint-plugin": "^2.24.0", + "@typescript-eslint/parser": "^2.24.0", "eslint": "^6.8.0", - "eslint-plugin-header":"^3.0.0", "eslint-config-airbnb-typescript": "^7.2.0", + "eslint-config-prettier": "^6.10.1", + "eslint-plugin-header": "^3.0.0", "eslint-plugin-import": "^2.20.1", - "eslint-config-prettier":"^6.10.1", - "eslint-plugin-prettier":"^3.1.2", - "@typescript-eslint/eslint-plugin": "^2.24.0", - "@typescript-eslint/parser": "^2.24.0", + "eslint-plugin-prettier": "^3.1.2", + "prettier": "^2.0.1", "typescript": "^3.8.3" }, "dependencies": { - "workit-camunda": "^4.0.4", - "workit-core": "^4.0.4", - "workit-types": "^4.0.4" + "workit-camunda": "^4.2.0", + "workit-core": "^4.2.0", + "workit-types": "^4.2.0" }, "keywords": [ "workit", diff --git a/examples/event/CHANGELOG.md b/examples/event/CHANGELOG.md index 6655b0f6..e9f8ad22 100644 --- a/examples/event/CHANGELOG.md +++ b/examples/event/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.2.0](https://github.com/VilledeMontreal/workit/compare/v4.1.0...v4.2.0) (2020-09-15) + + +### Bug Fixes + +* move from tslint to eslint ([#178](https://github.com/VilledeMontreal/workit/issues/178)) ([0dce14b](https://github.com/VilledeMontreal/workit/commit/0dce14b696649cdff886c3e7a0ffdbbd56b548d7)), closes [#159](https://github.com/VilledeMontreal/workit/issues/159) + + + + + # 4.1.0 (2020-03-12) diff --git a/examples/event/package.json b/examples/event/package.json index 62c9e91e..1e205ec9 100644 --- a/examples/event/package.json +++ b/examples/event/package.json @@ -1,7 +1,7 @@ { "name": "workit-example-event", "private": true, - "version": "4.1.0", + "version": "4.2.0", "description": "Show how to send an event with Workit", "main": "lib/src/worker.js", "typings": "lib/src/worker.d.ts", @@ -15,7 +15,7 @@ "watch": "tsc -p ./tsconfig.json --watch", "lint": "eslint . --ext .ts && prettier -l \"src/**/*.ts\"", "lint-fix": "prettier \"./**/*.ts\" --write && eslint . --ext .ts --fix", - "check-conflicts":"eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check", + "check-conflicts": "eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check", "camunda:deploy": "node ./lib/src/deploy.js", "camunda:create-instance": "node ./lib/src/create-process-instances.js", "camunda:worker": "node ./lib/src/worker.js" @@ -26,22 +26,22 @@ }, "devDependencies": { "@types/node": "^14.0.0", - "prettier": "^2.0.1", + "@typescript-eslint/eslint-plugin": "^2.24.0", + "@typescript-eslint/parser": "^2.24.0", "eslint": "^6.8.0", - "eslint-plugin-header":"^3.0.0", "eslint-config-airbnb-typescript": "^7.2.0", + "eslint-config-prettier": "^6.10.1", + "eslint-plugin-header": "^3.0.0", "eslint-plugin-import": "^2.20.1", - "eslint-config-prettier":"^6.10.1", - "eslint-plugin-prettier":"^3.1.2", - "@typescript-eslint/eslint-plugin": "^2.24.0", - "@typescript-eslint/parser": "^2.24.0", + "eslint-plugin-prettier": "^3.1.2", + "prettier": "^2.0.1", "typescript": "^3.8.3" }, "dependencies": { "axios": "^0.19.0", - "workit-camunda": "^4.1.0", - "workit-core": "^4.1.0", - "workit-types": "^4.1.0" + "workit-camunda": "^4.2.0", + "workit-core": "^4.2.0", + "workit-types": "^4.2.0" }, "keywords": [ "workit", diff --git a/examples/failure-strategy/CHANGELOG.md b/examples/failure-strategy/CHANGELOG.md index f68d3779..56477f9c 100644 --- a/examples/failure-strategy/CHANGELOG.md +++ b/examples/failure-strategy/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.2.0](https://github.com/VilledeMontreal/workit/compare/v4.1.0...v4.2.0) (2020-09-15) + + +### Bug Fixes + +* move from tslint to eslint ([#178](https://github.com/VilledeMontreal/workit/issues/178)) ([0dce14b](https://github.com/VilledeMontreal/workit/commit/0dce14b696649cdff886c3e7a0ffdbbd56b548d7)), closes [#159](https://github.com/VilledeMontreal/workit/issues/159) + + + + + # 4.1.0 (2020-03-12) **Note:** Version bump only for package workit-example-failure-strategy diff --git a/examples/failure-strategy/package.json b/examples/failure-strategy/package.json index 7e7dff1b..224608e5 100644 --- a/examples/failure-strategy/package.json +++ b/examples/failure-strategy/package.json @@ -1,7 +1,7 @@ { "name": "workit-example-failure-strategy", "private": true, - "version": "4.1.0", + "version": "4.2.0", "description": "Failure strategy example", "main": "lib/src/worker.js", "typings": "lib/src/worker.d.ts", @@ -15,7 +15,7 @@ "watch": "tsc -p ./tsconfig.json --watch", "lint": "eslint . --ext .ts && prettier -l \"src/**/*.ts\"", "lint-fix": "prettier \"./**/*.ts\" --write && eslint . --ext .ts --fix", - "check-conflicts":"eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check", + "check-conflicts": "eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check", "camunda:deploy": "node ./lib/src/deploy.js", "camunda:create-instance": "node ./lib/src/create-process-instances.js", "camunda:worker": "node ./lib/src/worker.js" @@ -26,22 +26,22 @@ }, "devDependencies": { "@types/node": "^14.0.0", - "prettier": "^2.0.1", + "@typescript-eslint/eslint-plugin": "^2.24.0", + "@typescript-eslint/parser": "^2.24.0", "eslint": "^6.8.0", - "eslint-plugin-header":"^3.0.0", "eslint-config-airbnb-typescript": "^7.2.0", + "eslint-config-prettier": "^6.10.1", + "eslint-plugin-header": "^3.0.0", "eslint-plugin-import": "^2.20.1", - "eslint-config-prettier":"^6.10.1", - "eslint-plugin-prettier":"^3.1.2", - "@typescript-eslint/eslint-plugin": "^2.24.0", - "@typescript-eslint/parser": "^2.24.0", + "eslint-plugin-prettier": "^3.1.2", + "prettier": "^2.0.1", "typescript": "^3.8.3" }, "dependencies": { "axios": "^0.19.2", - "workit-camunda": "^4.1.0", - "workit-core": "^4.1.0", - "workit-types": "^4.1.0" + "workit-camunda": "^4.2.0", + "workit-core": "^4.2.0", + "workit-types": "^4.2.0" }, "keywords": [ "workit", diff --git a/examples/opentelemetry/CHANGELOG.md b/examples/opentelemetry/CHANGELOG.md index 6de5fb02..1a7eb963 100644 --- a/examples/opentelemetry/CHANGELOG.md +++ b/examples/opentelemetry/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.2.0](https://github.com/VilledeMontreal/workit/compare/v4.1.0...v4.2.0) (2020-09-15) + + +### Bug Fixes + +* move from tslint to eslint ([#178](https://github.com/VilledeMontreal/workit/issues/178)) ([0dce14b](https://github.com/VilledeMontreal/workit/commit/0dce14b696649cdff886c3e7a0ffdbbd56b548d7)), closes [#159](https://github.com/VilledeMontreal/workit/issues/159) + + + + + # 4.1.0 (2020-03-12) diff --git a/examples/opentelemetry/package.json b/examples/opentelemetry/package.json index f869438a..250f3f1e 100644 --- a/examples/opentelemetry/package.json +++ b/examples/opentelemetry/package.json @@ -1,7 +1,7 @@ { "name": "workit-example-opentelemetry", "private": true, - "version": "4.1.0", + "version": "4.2.0", "description": "Show how to trace operations with Workit an OpenTelemetry", "main": "lib/src/worker.js", "typings": "lib/src/worker.d.ts", @@ -15,7 +15,7 @@ "watch": "tsc -p ./tsconfig.json --watch", "lint": "eslint . --ext .ts && prettier -l \"src/**/*.ts\"", "lint-fix": "prettier \"./**/*.ts\" --write && eslint . --ext .ts --fix", - "check-conflicts":"eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check", + "check-conflicts": "eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check", "camunda:deploy": "node ./lib/src/deploy.js", "camunda:create-instance": "node ./lib/src/create-process-instances.js", "camunda:worker": "node ./lib/src/worker.js" @@ -26,15 +26,15 @@ }, "devDependencies": { "@types/node": "^14.0.0", - "prettier": "^2.0.1", + "@typescript-eslint/eslint-plugin": "^2.24.0", + "@typescript-eslint/parser": "^2.24.0", "eslint": "^6.8.0", - "eslint-plugin-header":"^3.0.0", "eslint-config-airbnb-typescript": "^7.2.0", + "eslint-config-prettier": "^6.10.1", + "eslint-plugin-header": "^3.0.0", "eslint-plugin-import": "^2.20.1", - "eslint-config-prettier":"^6.10.1", - "eslint-plugin-prettier":"^3.1.2", - "@typescript-eslint/eslint-plugin": "^2.24.0", - "@typescript-eslint/parser": "^2.24.0", + "eslint-plugin-prettier": "^3.1.2", + "prettier": "^2.0.1", "typescript": "^3.8.3" }, "dependencies": { @@ -44,9 +44,9 @@ "@opentelemetry/plugin-https": "0.4.0", "@opentelemetry/tracing": "0.4.0", "axios": "^0.19.2", - "workit-camunda": "^4.1.0", - "workit-core": "^4.1.0", - "workit-types": "^4.1.0" + "workit-camunda": "^4.2.0", + "workit-core": "^4.2.0", + "workit-types": "^4.2.0" }, "keywords": [ "workit", diff --git a/examples/parallel/CHANGELOG.md b/examples/parallel/CHANGELOG.md index 1db95e8f..01a18ed4 100644 --- a/examples/parallel/CHANGELOG.md +++ b/examples/parallel/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.2.0](https://github.com/VilledeMontreal/workit/compare/v4.1.0...v4.2.0) (2020-09-15) + + +### Bug Fixes + +* move from tslint to eslint ([#178](https://github.com/VilledeMontreal/workit/issues/178)) ([0dce14b](https://github.com/VilledeMontreal/workit/commit/0dce14b696649cdff886c3e7a0ffdbbd56b548d7)), closes [#159](https://github.com/VilledeMontreal/workit/issues/159) + + + + + # 4.1.0 (2020-03-12) diff --git a/examples/parallel/package.json b/examples/parallel/package.json index 41dc9698..b4ea0655 100644 --- a/examples/parallel/package.json +++ b/examples/parallel/package.json @@ -1,7 +1,7 @@ { "name": "workit-example-parallel", "private": true, - "version": "4.1.0", + "version": "4.2.0", "description": "Show how to run parallel tasks with Workit", "main": "lib/src/worker.js", "typings": "lib/src/worker.d.ts", @@ -15,7 +15,7 @@ "watch": "tsc -p ./tsconfig.json --watch", "lint": "eslint . --ext .ts && prettier -l \"src/**/*.ts\"", "lint-fix": "prettier \"./**/*.ts\" --write && eslint . --ext .ts --fix", - "check-conflicts":"eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check", + "check-conflicts": "eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check", "camunda:deploy": "node ./lib/src/deploy.js", "camunda:create-instance": "node ./lib/src/create-process-instances.js", "camunda:worker": "node ./lib/src/worker.js" @@ -26,22 +26,22 @@ }, "devDependencies": { "@types/node": "^14.0.0", - "prettier": "^2.0.1", + "@typescript-eslint/eslint-plugin": "^2.24.0", + "@typescript-eslint/parser": "^2.24.0", "eslint": "^6.8.0", - "eslint-plugin-header":"^3.0.0", "eslint-config-airbnb-typescript": "^7.2.0", + "eslint-config-prettier": "^6.10.1", + "eslint-plugin-header": "^3.0.0", "eslint-plugin-import": "^2.20.1", - "eslint-config-prettier":"^6.10.1", - "eslint-plugin-prettier":"^3.1.2", - "@typescript-eslint/eslint-plugin": "^2.24.0", - "@typescript-eslint/parser": "^2.24.0", + "eslint-plugin-prettier": "^3.1.2", + "prettier": "^2.0.1", "typescript": "^3.8.3" }, "dependencies": { "axios": "^0.19.2", - "workit-camunda": "^4.1.0", - "workit-core": "^4.1.0", - "workit-types": "^4.1.0" + "workit-camunda": "^4.2.0", + "workit-core": "^4.2.0", + "workit-types": "^4.2.0" }, "keywords": [ "workit", diff --git a/lerna.json b/lerna.json index 50ee5506..7883d9da 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "lerna": "3.20.2", - "version": "4.1.0", + "version": "4.2.0", "packages": [ "examples/*", "packages/*" diff --git a/packages/workit-bpm-client/CHANGELOG.md b/packages/workit-bpm-client/CHANGELOG.md index 19bd164b..da5d47eb 100644 --- a/packages/workit-bpm-client/CHANGELOG.md +++ b/packages/workit-bpm-client/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.2.0](https://github.com/VilledeMontreal/workit/compare/v4.1.0...v4.2.0) (2020-09-15) + + +### Bug Fixes + +* move from tslint to eslint ([#178](https://github.com/VilledeMontreal/workit/issues/178)) ([0dce14b](https://github.com/VilledeMontreal/workit/commit/0dce14b696649cdff886c3e7a0ffdbbd56b548d7)), closes [#159](https://github.com/VilledeMontreal/workit/issues/159) + + +### Features + +* use custom retry timeout upon failure ([#212](https://github.com/VilledeMontreal/workit/issues/212)) ([49c24f4](https://github.com/VilledeMontreal/workit/commit/49c24f475cbed3a438e65b75288c86f9aec73f81)) + + + + + # 4.1.0 (2020-03-12) diff --git a/packages/workit-bpm-client/package.json b/packages/workit-bpm-client/package.json index be3cafc8..861f06ed 100644 --- a/packages/workit-bpm-client/package.json +++ b/packages/workit-bpm-client/package.json @@ -1,6 +1,6 @@ { "name": "workit-bpm-client", - "version": "4.1.0", + "version": "4.2.0", "description": "Camunda BPM client for WorkIt that works with Camunda platform powered by TypeScript", "author": "Montreal City Authors", "homepage": "https://github.com/VilledeMontreal/workit#readme", @@ -15,8 +15,8 @@ "form-data": "~2.5.1", "inversify": "~5.0.1", "reflect-metadata": "~0.1.13", - "workit-core": "^4.1.0", - "workit-types": "^4.1.0" + "workit-core": "^4.2.0", + "workit-types": "^4.2.0" }, "devDependencies": { "@commitlint/cli": "^8.3.5", @@ -30,8 +30,16 @@ "@types/jest": "^25.1.4", "@types/nock": "^10.0.3", "@types/node": "^14.0.0", + "@typescript-eslint/eslint-plugin": "^2.23.0", + "@typescript-eslint/parser": "^2.23.0", "chai": "^4.2.0", "codecov": "^3.6.5", + "eslint": "^6.8.0", + "eslint-config-airbnb-typescript": "^7.0.0", + "eslint-config-prettier": "^6.10.0", + "eslint-plugin-header": "^3.0.0", + "eslint-plugin-import": "^2.20.1", + "eslint-plugin-prettier": "^3.1.2", "husky": "^4.2.4", "jest": "^25.1.0", "nock": "^10.0.6", @@ -39,14 +47,6 @@ "source-map-support": "^0.5.16", "ts-jest": "^26.0.0", "typedoc": "^0.16.11", - "eslint": "^6.8.0", - "eslint-plugin-header":"^3.0.0", - "eslint-config-airbnb-typescript": "^7.0.0", - "eslint-plugin-import": "^2.20.1", - "eslint-config-prettier":"^6.10.0", - "eslint-plugin-prettier":"^3.1.2", - "@typescript-eslint/eslint-plugin": "^2.23.0", - "@typescript-eslint/parser": "^2.23.0", "typescript": "^3.8.3" }, "engines": { @@ -60,7 +60,7 @@ "watch": "tsc -p ./tsconfig.json --watch", "lint": "eslint . --ext .ts && prettier -l \"src/**/*.ts\"", "lint-fix": "prettier \"./**/*.ts\" --write && eslint . --ext .ts --fix", - "check-conflicts":"eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check", + "check-conflicts": "eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check", "docs": "typedoc --out ./docs --tsconfig ./tsconfig.json --excludePrivate --mode file", "codecov": "codecov -f coverage/*.json -p ../../" }, diff --git a/packages/workit-camunda/CHANGELOG.md b/packages/workit-camunda/CHANGELOG.md index bedfa50b..69897149 100644 --- a/packages/workit-camunda/CHANGELOG.md +++ b/packages/workit-camunda/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.2.0](https://github.com/VilledeMontreal/workit/compare/v4.1.0...v4.2.0) (2020-09-15) + + +### Bug Fixes + +* move from tslint to eslint ([#178](https://github.com/VilledeMontreal/workit/issues/178)) ([0dce14b](https://github.com/VilledeMontreal/workit/commit/0dce14b696649cdff886c3e7a0ffdbbd56b548d7)), closes [#159](https://github.com/VilledeMontreal/workit/issues/159) + + + + + # 4.1.0 (2020-03-12) diff --git a/packages/workit-camunda/package.json b/packages/workit-camunda/package.json index c338ad64..5894387f 100644 --- a/packages/workit-camunda/package.json +++ b/packages/workit-camunda/package.json @@ -1,6 +1,6 @@ { "name": "workit-camunda", - "version": "4.1.0", + "version": "4.2.0", "description": "Worker for Node.js system with pluggable Camunda clients that works with both Zeebe and Camunda platform powered by TypeScript", "author": "Montreal City Authors", "homepage": "https://github.com/VilledeMontreal/workit#readme", @@ -11,10 +11,10 @@ "debug": "~4.1.1", "inversify": "~5.0.1", "reflect-metadata": "~0.1.13", - "workit-bpm-client": "^4.1.0", - "workit-core": "^4.1.0", - "workit-types": "^4.1.0", - "workit-zeebe-client": "^4.1.0" + "workit-bpm-client": "^4.2.0", + "workit-core": "^4.2.0", + "workit-types": "^4.2.0", + "workit-zeebe-client": "^4.2.0" }, "devDependencies": { "@commitlint/cli": "^8.3.5", @@ -26,9 +26,17 @@ "@types/jest": "^25.1.4", "@types/nock": "^10.0.3", "@types/node": "^14.0.0", + "@typescript-eslint/eslint-plugin": "^2.23.0", + "@typescript-eslint/parser": "^2.23.0", "axios": "^0.19.2", "chai": "^4.2.0", "codecov": "^3.6.5", + "eslint": "^6.8.0", + "eslint-config-airbnb-typescript": "^7.0.0", + "eslint-config-prettier": "^6.10.0", + "eslint-plugin-header": "^3.0.0", + "eslint-plugin-import": "^2.20.1", + "eslint-plugin-prettier": "^3.1.2", "husky": "^4.2.4", "jest": "^25.1.0", "nock": "^10.0.6", @@ -36,14 +44,6 @@ "source-map-support": "^0.5.16", "ts-jest": "^26.0.0", "typedoc": "^0.16.11", - "eslint": "^6.8.0", - "eslint-plugin-header":"^3.0.0", - "eslint-config-airbnb-typescript": "^7.0.0", - "eslint-plugin-import": "^2.20.1", - "eslint-config-prettier":"^6.10.0", - "eslint-plugin-prettier":"^3.1.2", - "@typescript-eslint/eslint-plugin": "^2.23.0", - "@typescript-eslint/parser": "^2.23.0", "typescript": "^3.8.3" }, "engines": { @@ -57,7 +57,7 @@ "watch": "tsc -p ./tsconfig.json --watch", "lint": "eslint . --ext .ts && prettier -l \"src/**/*.ts\"", "lint-fix": "prettier \"./**/*.ts\" --write && eslint . --ext .ts --fix", - "check-conflicts":"eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check", + "check-conflicts": "eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check", "docs": "typedoc --out ./docs --tsconfig ./tsconfig.json --excludePrivate --mode file", "codecov": "codecov -f coverage/*.json -p ../../" }, diff --git a/packages/workit-cli/CHANGELOG.md b/packages/workit-cli/CHANGELOG.md index 55261184..eea918a0 100644 --- a/packages/workit-cli/CHANGELOG.md +++ b/packages/workit-cli/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.2.0](https://github.com/VilledeMontreal/workit/compare/v4.1.0...v4.2.0) (2020-09-15) + + +### Bug Fixes + +* move from tslint to eslint ([#178](https://github.com/VilledeMontreal/workit/issues/178)) ([0dce14b](https://github.com/VilledeMontreal/workit/commit/0dce14b696649cdff886c3e7a0ffdbbd56b548d7)), closes [#159](https://github.com/VilledeMontreal/workit/issues/159) + + + + + ## [0.3.4](https://github.com/VilledeMontreal/workit/compare/workit-cli@0.3.3...workit-cli@0.3.4) (2020-02-05) **Note:** Version bump only for package workit-cli diff --git a/packages/workit-cli/package.json b/packages/workit-cli/package.json index 462ef8ba..8e653696 100644 --- a/packages/workit-cli/package.json +++ b/packages/workit-cli/package.json @@ -1,6 +1,6 @@ { "name": "workit-cli", - "version": "0.3.4", + "version": "4.2.0", "description": "cli for workit project. Handy tools.", "author": "Olivier Albertini ", "homepage": "https://github.com/VilledeMontreal/workit#readme", @@ -32,24 +32,24 @@ "validate-npm-package-name": "^3.0.0" }, "devDependencies": { - "@types/jest": "^25.1.4", - "@types/node": "^14.0.0", - "@types/he":"^1.1.1", "@commitlint/cli": "^8.3.5", "@commitlint/config-conventional": "^8.3.4", + "@types/he": "^1.1.1", + "@types/jest": "^25.1.4", + "@types/node": "^14.0.0", + "@typescript-eslint/eslint-plugin": "^2.24.0", + "@typescript-eslint/parser": "^2.24.0", "codecov": "^3.6.5", + "eslint": "^6.8.0", + "eslint-config-airbnb-typescript": "^7.2.0", + "eslint-config-prettier": "^6.10.0", + "eslint-plugin-import": "^2.20.1", + "eslint-plugin-prettier": "^3.1.2", "husky": "^4.2.4", "jest": "^25.1.0", "prettier": "^1.19.1", "source-map-support": "^0.5.16", "ts-jest": "^26.0.0", - "eslint": "^6.8.0", - "eslint-config-airbnb-typescript": "^7.2.0", - "eslint-plugin-import": "^2.20.1", - "eslint-config-prettier": "^6.10.0", - "eslint-plugin-prettier": "^3.1.2", - "@typescript-eslint/eslint-plugin": "^2.24.0", - "@typescript-eslint/parser": "^2.24.0", "typedoc": "^0.17.1", "typescript": "^3.8.3" }, diff --git a/packages/workit-core/CHANGELOG.md b/packages/workit-core/CHANGELOG.md index 6bd3c8fe..0ed128b0 100644 --- a/packages/workit-core/CHANGELOG.md +++ b/packages/workit-core/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.2.0](https://github.com/VilledeMontreal/workit/compare/v4.1.0...v4.2.0) (2020-09-15) + + +### Bug Fixes + +* move from tslint to eslint ([#178](https://github.com/VilledeMontreal/workit/issues/178)) ([0dce14b](https://github.com/VilledeMontreal/workit/commit/0dce14b696649cdff886c3e7a0ffdbbd56b548d7)), closes [#159](https://github.com/VilledeMontreal/workit/issues/159) + + + + + # 4.1.0 (2020-03-12) diff --git a/packages/workit-core/package.json b/packages/workit-core/package.json index 422da8d8..67e72363 100644 --- a/packages/workit-core/package.json +++ b/packages/workit-core/package.json @@ -1,6 +1,6 @@ { "name": "workit-core", - "version": "4.1.0", + "version": "4.2.0", "description": "This package provides default and no-op implementations of the WorkIt types for client packages.", "author": "Montreal City Authors", "homepage": "https://github.com/VilledeMontreal/workit#readme", @@ -15,7 +15,7 @@ "inversify": "~5.0.1", "reflect-metadata": "~0.1.13", "uuid": "^3.4.0", - "workit-types": "^4.1.0" + "workit-types": "^4.2.0" }, "devDependencies": { "@commitlint/cli": "^8.3.5", @@ -25,22 +25,22 @@ "@types/jest": "^25.1.4", "@types/node": "^14.0.0", "@types/uuid": "^3.4.7", + "@typescript-eslint/eslint-plugin": "^2.23.0", + "@typescript-eslint/parser": "^2.23.0", "codecov": "^3.6.5", + "eslint": "^6.8.0", + "eslint-config-airbnb-typescript": "^7.0.0", + "eslint-config-prettier": "^6.10.0", + "eslint-plugin-header": "^3.0.0", + "eslint-plugin-import": "^2.20.1", + "eslint-plugin-prettier": "^3.1.2", "husky": "^4.2.4", "jest": "^25.1.0", "prettier": "^1.19.1", "source-map-support": "^0.5.16", "ts-jest": "^26.0.0", "typedoc": "^0.16.9", - "typescript": "^3.7.5", - "eslint": "^6.8.0", - "eslint-plugin-header":"^3.0.0", - "eslint-config-airbnb-typescript": "^7.0.0", - "eslint-plugin-import": "^2.20.1", - "eslint-config-prettier":"^6.10.0", - "eslint-plugin-prettier":"^3.1.2", - "@typescript-eslint/eslint-plugin": "^2.23.0", - "@typescript-eslint/parser": "^2.23.0" + "typescript": "^3.7.5" }, "engines": { "node": ">=8.11.4" @@ -53,7 +53,7 @@ "watch": "tsc -p ./tsconfig.json --watch", "lint": "eslint . --ext .ts && prettier -l \"src/**/*.ts\"", "lint-fix": "prettier \"./**/*.ts\" --write && eslint . --ext .ts --fix", - "check-conflicts":"eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check", + "check-conflicts": "eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check", "docs": "typedoc --out ./docs --tsconfig ./tsconfig.json --excludePrivate --mode file", "codecov": "codecov -f coverage/*.json -p ../../" }, diff --git a/packages/workit-types/CHANGELOG.md b/packages/workit-types/CHANGELOG.md index 6e871b95..eb6943b8 100644 --- a/packages/workit-types/CHANGELOG.md +++ b/packages/workit-types/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.2.0](https://github.com/VilledeMontreal/workit/compare/v4.1.0...v4.2.0) (2020-09-15) + + +### Bug Fixes + +* move from tslint to eslint ([#178](https://github.com/VilledeMontreal/workit/issues/178)) ([0dce14b](https://github.com/VilledeMontreal/workit/commit/0dce14b696649cdff886c3e7a0ffdbbd56b548d7)), closes [#159](https://github.com/VilledeMontreal/workit/issues/159) + + + + + # 4.1.0 (2020-03-12) diff --git a/packages/workit-types/package.json b/packages/workit-types/package.json index 3809e66a..3a471199 100644 --- a/packages/workit-types/package.json +++ b/packages/workit-types/package.json @@ -1,6 +1,6 @@ { "name": "workit-types", - "version": "4.1.0", + "version": "4.2.0", "description": "TypeScript types for Workit", "author": "Montreal City Authors", "homepage": "https://github.com/VilledeMontreal/workit#readme", @@ -14,17 +14,17 @@ "@commitlint/cli": "^8.3.5", "@commitlint/config-conventional": "^8.3.4", "@types/node": "^14.0.0", + "@typescript-eslint/eslint-plugin": "^2.23.0", + "@typescript-eslint/parser": "^2.23.0", "codecov": "^3.6.5", - "husky": "^4.2.4", - "prettier": "^1.19.1", "eslint": "^6.8.0", - "eslint-plugin-header":"^3.0.0", "eslint-config-airbnb-typescript": "^7.0.0", + "eslint-config-prettier": "^6.10.0", + "eslint-plugin-header": "^3.0.0", "eslint-plugin-import": "^2.20.1", - "eslint-config-prettier":"^6.10.0", - "eslint-plugin-prettier":"^3.1.2", - "@typescript-eslint/eslint-plugin": "^2.23.0", - "@typescript-eslint/parser": "^2.23.0", + "eslint-plugin-prettier": "^3.1.2", + "husky": "^4.2.4", + "prettier": "^1.19.1", "typedoc": "^0.16.11", "typescript": "^3.8.3" }, @@ -39,7 +39,7 @@ "watch": "tsc -p ./tsconfig.json --watch", "lint": "eslint . --ext .ts && prettier -l \"src/**/*.ts\"", "lint-fix": "prettier \"./**/*.ts\" --write && eslint . --ext .ts --fix", - "check-conflicts":"eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check", + "check-conflicts": "eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check", "docs": "typedoc --out ../../docs --tsconfig ./tsconfig.json --excludePrivate --mode file", "codecov": "echo \"no tests yet\"" }, diff --git a/packages/workit-zeebe-client/CHANGELOG.md b/packages/workit-zeebe-client/CHANGELOG.md index 9e60713c..c5134b84 100644 --- a/packages/workit-zeebe-client/CHANGELOG.md +++ b/packages/workit-zeebe-client/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.2.0](https://github.com/VilledeMontreal/workit/compare/v4.1.0...v4.2.0) (2020-09-15) + + +### Bug Fixes + +* move from tslint to eslint ([#178](https://github.com/VilledeMontreal/workit/issues/178)) ([0dce14b](https://github.com/VilledeMontreal/workit/commit/0dce14b696649cdff886c3e7a0ffdbbd56b548d7)), closes [#159](https://github.com/VilledeMontreal/workit/issues/159) + + + + + # 4.1.0 (2020-03-12) diff --git a/packages/workit-zeebe-client/package.json b/packages/workit-zeebe-client/package.json index b1d7f309..7d0359a5 100644 --- a/packages/workit-zeebe-client/package.json +++ b/packages/workit-zeebe-client/package.json @@ -1,6 +1,6 @@ { "name": "workit-zeebe-client", - "version": "4.1.0", + "version": "4.2.0", "description": "Zeebe client for WorkIt that works with Zeebe platform powered by TypeScript", "author": "Montreal City Authors", "homepage": "https://github.com/VilledeMontreal/workit#readme", @@ -11,30 +11,30 @@ "debug": "~4.1.1", "inversify": "~5.0.1", "reflect-metadata": "~0.1.13", - "workit-core": "^4.1.0", - "workit-types": "^4.1.0", - "zeebe-elasticsearch-client": "^0.3.3", + "workit-core": "^4.2.0", + "workit-types": "^4.2.0", + "zeebe-elasticsearch-client": "^4.2.0", "zeebe-node": "0.22.1" }, "devDependencies": { - "@types/bytebuffer": "5.0.41", "@commitlint/cli": "^8.3.5", "@commitlint/config-conventional": "^8.3.4", "@opentelemetry/core": "0.4.0", + "@types/bytebuffer": "5.0.41", "@types/debug": "~4.1.5", "@types/events": "~3.0.0", "@types/jest": "^25.1.3", "@types/nock": "^11.1.0", "@types/node": "^14.0.0", + "@typescript-eslint/eslint-plugin": "^2.23.0", + "@typescript-eslint/parser": "^2.23.0", "codecov": "^3.6.5", "eslint": "^6.8.0", - "eslint-plugin-header": "^3.0.0", "eslint-config-airbnb-typescript": "^7.0.0", - "eslint-plugin-import": "^2.20.1", "eslint-config-prettier": "^6.10.0", + "eslint-plugin-header": "^3.0.0", + "eslint-plugin-import": "^2.20.1", "eslint-plugin-prettier": "^3.1.2", - "@typescript-eslint/eslint-plugin": "^2.23.0", - "@typescript-eslint/parser": "^2.23.0", "husky": "^4.2.4", "jest": "^25.1.0", "nock": "^11.8.2", diff --git a/packages/zeebe-elasticsearch-client/CHANGELOG.md b/packages/zeebe-elasticsearch-client/CHANGELOG.md index 2c56bbe8..cde703a8 100644 --- a/packages/zeebe-elasticsearch-client/CHANGELOG.md +++ b/packages/zeebe-elasticsearch-client/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.2.0](https://github.com/VilledeMontreal/workit/compare/v4.1.0...v4.2.0) (2020-09-15) + + +### Bug Fixes + +* move from tslint to eslint ([#178](https://github.com/VilledeMontreal/workit/issues/178)) ([0dce14b](https://github.com/VilledeMontreal/workit/commit/0dce14b696649cdff886c3e7a0ffdbbd56b548d7)), closes [#159](https://github.com/VilledeMontreal/workit/issues/159) + + + + + ## [0.3.3](https://github.com/VilledeMontreal/workit/compare/zeebe-elasticsearch-client@0.3.2...zeebe-elasticsearch-client@0.3.3) (2020-02-05) **Note:** Version bump only for package zeebe-elasticsearch-client diff --git a/packages/zeebe-elasticsearch-client/package.json b/packages/zeebe-elasticsearch-client/package.json index cd23a564..44beda68 100644 --- a/packages/zeebe-elasticsearch-client/package.json +++ b/packages/zeebe-elasticsearch-client/package.json @@ -1,6 +1,6 @@ { "name": "zeebe-elasticsearch-client", - "version": "0.3.3", + "version": "4.2.0", "description": "Client (Browser and NodeJs) for Zeebe Elasticsearch exporter powered by Typescript", "keywords": [ "zeebe", @@ -33,21 +33,21 @@ "@types/jest": "^25.1.4", "@types/nock": "^11.1.0", "@types/node": "^14.0.0", + "@typescript-eslint/eslint-plugin": "^2.23.0", + "@typescript-eslint/parser": "^2.23.0", "codecov": "^3.6.5", + "eslint": "^6.8.0", + "eslint-config-airbnb-typescript": "^7.0.0", + "eslint-config-prettier": "^6.10.0", + "eslint-plugin-header": "^3.0.0", + "eslint-plugin-import": "^2.20.1", + "eslint-plugin-prettier": "^3.1.2", "husky": "^4.2.4", "jest": "^24.9.0", "nock": "^11.7.0", "prettier": "^1.19.1", "source-map-support": "^0.5.16", "ts-jest": "^26.0.0", - "eslint": "^6.8.0", - "eslint-plugin-header":"^3.0.0", - "eslint-config-airbnb-typescript": "^7.0.0", - "eslint-plugin-import": "^2.20.1", - "eslint-config-prettier":"^6.10.0", - "eslint-plugin-prettier":"^3.1.2", - "@typescript-eslint/eslint-plugin": "^2.23.0", - "@typescript-eslint/parser": "^2.23.0", "typedoc": "^0.16.11", "typescript": "^3.8.3" }, @@ -63,7 +63,7 @@ "watch": "tsc -p ./tsconfig.json --watch", "lint": "eslint . --ext .ts && prettier -l \"src/**/*.ts\"", "lint-fix": "prettier \"./**/*.ts\" --write && eslint . --ext .ts --fix", - "check-conflicts":"eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check", + "check-conflicts": "eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check", "docs": "typedoc --out ../../docs --tsconfig ./tsconfig.json --excludePrivate --mode file", "codecov": "codecov -f coverage/*.json -p ../../" },