Skip to content

Commit 5ba2e6a

Browse files
renovate[bot]renovate-botKingDarBoja
authored
Update typescript-eslint monorepo to v3.8.0 (#667)
* Update typescript-eslint monorepo to v3.8.0 * fix: explicit set enum value on package manager Co-authored-by: Renovate Bot <[email protected]> Co-authored-by: KingDarBoja <[email protected]>
1 parent 50479e6 commit 5ba2e6a

File tree

3 files changed

+31
-31
lines changed

3 files changed

+31
-31
lines changed

package-lock.json

Lines changed: 26 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
"@types/glob": "7.1.3",
2929
"@types/jest": "26.0.8",
3030
"@types/node": "12.12.21",
31-
"@typescript-eslint/eslint-plugin": "3.7.1",
32-
"@typescript-eslint/parser": "3.7.1",
31+
"@typescript-eslint/eslint-plugin": "3.8.0",
32+
"@typescript-eslint/parser": "3.8.0",
3333
"babel-jest": "26.2.2",
3434
"eslint": "7.6.0",
3535
"husky": "4.2.5",

src/reporting/packages/packageManagers.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export enum PackageManager {
2-
npm,
3-
pnpm,
4-
Yarn,
2+
npm = 0,
3+
pnpm = 1,
4+
Yarn = 2,
55
}
66

77
export const preferredLockfiles = new Map([

0 commit comments

Comments
 (0)