Skip to content

Commit 1fb50eb

Browse files
authored
build(deps-dev): bump multiple dev-deps (#368)
1 parent dd914e2 commit 1fb50eb

File tree

11 files changed

+396
-197
lines changed

11 files changed

+396
-197
lines changed

package.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -35,42 +35,42 @@
3535
"@types/chai": "4.2.14",
3636
"@types/sinon": "9.0.10",
3737
"@types/sinon-chai": "3.2.5",
38-
"@types/mocha": "7.0.2",
39-
"@types/lodash": "4.14.166",
38+
"@types/mocha": "^7.0.2",
39+
"@types/lodash": "4.14.168",
4040
"@types/deep-equal-in-any-order": "1.0.1",
4141
"@types/klaw-sync": "6.0.0",
42-
"@types/fs-extra": "9.0.1",
42+
"@types/fs-extra": "9.0.6",
4343
"chai": "4.2.0",
44-
"deep-equal-in-any-order": "^1.0.24",
45-
"eslint": "7.16.0",
46-
"@typescript-eslint/parser": "3.9.1",
47-
"@typescript-eslint/eslint-plugin": "3.9.1",
48-
"eslint-config-prettier": "7.1.0",
44+
"deep-equal-in-any-order": "^1.0.28",
45+
"eslint": "7.18.0",
46+
"@typescript-eslint/parser": "4.14.0",
47+
"@typescript-eslint/eslint-plugin": "4.14.0",
48+
"eslint-config-prettier": "7.2.0",
4949
"eslint-plugin-eslint-comments": "3.2.0",
50-
"husky": "4.3.6",
50+
"husky": "4.3.8",
5151
"lerna": "3.22.1",
52-
"lint-staged": "10.2.11",
52+
"lint-staged": "10.5.3",
5353
"mocha": "7.2.0",
5454
"npm-run-all": "4.1.5",
5555
"nyc": "15.1.0",
5656
"prettier": "2.2.1",
5757
"source-map-support": "0.5.19",
5858
"typescript": "3.9.7",
59-
"cz-conventional-changelog": "3.2.0",
59+
"cz-conventional-changelog": "3.3.0",
6060
"@commitlint/cli": "11.0.0",
61-
"@commitlint/config-conventional": "9.1.2",
61+
"@commitlint/config-conventional": "11.0.0",
6262
"rimraf": "3.0.2",
6363
"@types/rimraf": "3.0.0",
64-
"simple-git": "1.132.0",
64+
"simple-git": "2.31.0",
6565
"klaw-sync": "6.0.0",
66-
"fs-extra": "9.0.1",
67-
"webpack": "5.15.0",
68-
"webpack-cli": "4.3.0",
66+
"fs-extra": "9.1.0",
67+
"webpack": "5.16.0",
68+
"webpack-cli": "4.4.0",
6969
"coveralls": "3.1.0",
7070
"make-dir": "3.1.0",
7171
"glob": "7.1.6",
7272
"shx": "0.3.3",
73-
"sinon": "9.2.2",
73+
"sinon": "9.2.3",
7474
"sinon-chai": "3.5.0"
7575
},
7676
"husky": {

packages/language-server/test/implementation-matches-public-api.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,13 @@ type AssertIsSubSet<SUBSET extends SUPERSET, SUPERSET> = [SUBSET, SUPERSET];
99
// We can perform logical assertions on the API vs Impel
1010
// using discrete math semantics (subsets/supersets)
1111
// See: https://www.typescriptlang.org/docs/handbook/type-compatibility.html
12+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
1213
type EnsureAllDeclaredAreExposedAtRuntime = AssertIsSubSet<
1314
typeof implementation,
1415
typeof publicApi
1516
>;
1617

18+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
1719
type EnsureNoRedundantAreExposedAtRuntime = AssertIsSubSet<
1820
typeof publicApi,
1921
typeof implementation

packages/logic-utils/test/implementation-matches-public-api.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,13 @@ type AssertIsSubSet<SUBSET extends SUPERSET, SUPERSET> = [SUBSET, SUPERSET];
99
// We can perform logical assertions on the API vs Impel
1010
// using discrete math semantics (subsets/supersets)
1111
// See: https://www.typescriptlang.org/docs/handbook/type-compatibility.html
12+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
1213
type EnsureAllDeclaredAreExposedAtRuntime = AssertIsSubSet<
1314
typeof implementation,
1415
typeof publicApi
1516
>;
1617

18+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
1719
type EnsureNoRedundantAreExposedAtRuntime = AssertIsSubSet<
1820
typeof publicApi,
1921
typeof implementation

packages/semantic-model/test/implementation-matches-public-api.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,13 @@ type AssertIsSubSet<SUBSET extends SUPERSET, SUPERSET> = [SUBSET, SUPERSET];
99
// We can perform logical assertions on the API vs Impel
1010
// using discrete math semantics (subsets/supersets)
1111
// See: https://www.typescriptlang.org/docs/handbook/type-compatibility.html
12+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
1213
type EnsureAllDeclaredAreExposedAtRuntime = AssertIsSubSet<
1314
typeof implementation,
1415
typeof publicApi
1516
>;
1617

18+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
1719
type EnsureNoRedundantAreExposedAtRuntime = AssertIsSubSet<
1820
typeof publicApi,
1921
typeof implementation

packages/settings/test/implementation-matches-public-api.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,13 @@ type AssertIsSubSet<SUBSET extends SUPERSET, SUPERSET> = [SUBSET, SUPERSET];
99
// We can perform logical assertions on the API vs Impel
1010
// using discrete math semantics (subsets/supersets)
1111
// See: https://www.typescriptlang.org/docs/handbook/type-compatibility.html
12+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
1213
type EnsureAllDeclaredAreExposedAtRuntime = AssertIsSubSet<
1314
typeof implementation,
1415
typeof publicApi
1516
>;
1617

18+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
1719
type EnsureNoRedundantAreExposedAtRuntime = AssertIsSubSet<
1820
typeof publicApi,
1921
typeof implementation

packages/user-facing-text/test/implementation-matches-public-api.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,13 @@ type AssertIsSubSet<SUBSET extends SUPERSET, SUPERSET> = [SUBSET, SUPERSET];
99
// We can perform logical assertions on the API vs Impel
1010
// using discrete math semantics (subsets/supersets)
1111
// See: https://www.typescriptlang.org/docs/handbook/type-compatibility.html
12+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
1213
type EnsureAllDeclaredAreExposedAtRuntime = AssertIsSubSet<
1314
typeof implementation,
1415
typeof publicApi
1516
>;
1617

18+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
1719
type EnsureNoRedundantAreExposedAtRuntime = AssertIsSubSet<
1820
typeof publicApi,
1921
typeof implementation

packages/xml-views-completion/test/implementation-matches-public-api.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,13 @@ type AssertIsSubSet<SUBSET extends SUPERSET, SUPERSET> = [SUBSET, SUPERSET];
99
// We can perform logical assertions on the API vs Impel
1010
// using discrete math semantics (subsets/supersets)
1111
// See: https://www.typescriptlang.org/docs/handbook/type-compatibility.html
12+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
1213
type EnsureAllDeclaredAreExposedAtRuntime = AssertIsSubSet<
1314
typeof implementation,
1415
typeof publicApi
1516
>;
1617

18+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
1719
type EnsureNoRedundantAreExposedAtRuntime = AssertIsSubSet<
1820
typeof publicApi,
1921
typeof implementation

packages/xml-views-quick-fix/test/implementation-matches-public-api.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,13 @@ type AssertIsSubSet<SUBSET extends SUPERSET, SUPERSET> = [SUBSET, SUPERSET];
99
// We can perform logical assertions on the API vs Impel
1010
// using discrete math semantics (subsets/supersets)
1111
// See: https://www.typescriptlang.org/docs/handbook/type-compatibility.html
12+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
1213
type EnsureAllDeclaredAreExposedAtRuntime = AssertIsSubSet<
1314
typeof implementation,
1415
typeof publicApi
1516
>;
1617

18+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
1719
type EnsureNoRedundantAreExposedAtRuntime = AssertIsSubSet<
1820
typeof publicApi,
1921
typeof implementation

packages/xml-views-validation/test/implementation-matches-public-api.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,13 @@ type AssertIsSubSet<SUBSET extends SUPERSET, SUPERSET> = [SUBSET, SUPERSET];
99
// We can perform logical assertions on the API vs Impel
1010
// using discrete math semantics (subsets/supersets)
1111
// See: https://www.typescriptlang.org/docs/handbook/type-compatibility.html
12+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
1213
type EnsureAllDeclaredAreExposedAtRuntime = AssertIsSubSet<
1314
typeof implementation,
1415
typeof publicApi
1516
>;
1617

18+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
1719
type EnsureNoRedundantAreExposedAtRuntime = AssertIsSubSet<
1820
typeof publicApi,
1921
typeof implementation

test-packages/test-utils/test/implementation-matches-public-api.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,13 @@ type AssertIsSubSet<SUBSET extends SUPERSET, SUPERSET> = [SUBSET, SUPERSET];
99
// We can perform logical assertions on the API vs Impel
1010
// using discrete math semantics (subsets/supersets)
1111
// See: https://www.typescriptlang.org/docs/handbook/type-compatibility.html
12+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
1213
type EnsureAllDeclaredAreExposedAtRuntime = AssertIsSubSet<
1314
typeof implementation,
1415
typeof publicApi
1516
>;
1617

18+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
1719
type EnsureNoRedundantAreExposedAtRuntime = AssertIsSubSet<
1820
typeof publicApi,
1921
typeof implementation

0 commit comments

Comments
 (0)