@voiceflow/logger 1.6.0 → 1.6.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +10 -8
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@voiceflow/logger",
3
3
  "description": "Common logger for Voiceflow backend microservices",
4
- "version": "1.6.0",
4
+ "version": "1.6.2",
5
5
  "author": "Frank Gu <frank@voiceflow.com>",
6
6
  "bugs": {
7
7
  "url": "https://github.com/voiceflow/logger/issues"
@@ -29,15 +29,16 @@
29
29
  "@types/mocha": "^8.0.0",
30
30
  "@typescript-eslint/eslint-plugin": "^3.6.1",
31
31
  "@typescript-eslint/parser": "^3.6.1",
32
- "@voiceflow/commitlint-config": "^1.0.1",
33
- "@voiceflow/eslint-config": "^2.0.5",
34
- "@voiceflow/git-branch-check": "^1.1.3",
35
- "@voiceflow/prettier-config": "^1.0.5",
32
+ "@voiceflow/commitlint-config": "2.0.0",
33
+ "@voiceflow/eslint-config": "6.0.0",
34
+ "@voiceflow/git-branch-check": "1.2.3",
35
+ "@voiceflow/prettier-config": "1.0.6",
36
36
  "chai": "^4.2.0",
37
37
  "commitizen": "^4.2.3",
38
38
  "cz-conventional-changelog": "3.3.0",
39
39
  "depcheck": "^1.3.1",
40
- "eslint": "^6.7.2",
40
+ "eslint": "^7.32.0",
41
+ "eslint-output": "^3.0.1",
41
42
  "fixpack": "^4.0.0",
42
43
  "husky": "^4.3.8",
43
44
  "lint-staged": "^10.5.3",
@@ -66,11 +67,12 @@
66
67
  "build": "yarn clean && ttsc --project ./tsconfig.build.json",
67
68
  "clean": "rimraf build",
68
69
  "commit": "cz",
70
+ "eslint-output": "eslint-output",
69
71
  "lint": "eslint \"./**/*.{js,ts}\"",
70
72
  "lint:fix": "yarn lint --fix",
73
+ "lint:output": "yarn run eslint-output --quiet \"**/*.{js,ts}\"",
71
74
  "lint:quiet": "yarn lint --quiet",
72
- "lint:report": "yarn lint --format json -o sonar/report.json",
73
- "prepare": "yarn build",
75
+ "lint:report": "yarn lint:output",
74
76
  "test": "yarn test:run",
75
77
  "test:dependencies": "depcheck",
76
78
  "test:integration": "NODE_ENV=test nyc --report-dir nyc_coverage_integration ts-mocha --paths --opts ./config/tests/mocha.opts 'tests/**/*.it.{ts,js}'",