Skip to content

Commit f4900ee

Browse files
authored
feat(deps): Update dependencies 2023.08.07 (#103)
1 parent 3dcacf4 commit f4900ee

File tree

12 files changed

+1343
-1238
lines changed

12 files changed

+1343
-1238
lines changed

.github/workflows/pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
with:
3232
source: ./
3333
destination: ./_site
34-
- uses: actions/upload-pages-artifact@v1
34+
- uses: actions/upload-pages-artifact@v2
3535

3636
deploy:
3737
environment:

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.3.1
1+
20.5.0

.yarn/releases/yarn-3.6.0.cjs renamed to .yarn/releases/yarn-3.6.1.cjs

Lines changed: 156 additions & 156 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ plugins:
66
- path: .yarn/plugins/@yarnpkg/plugin-engines.cjs
77
spec: "https://raw.githubusercontent.com/devoto13/yarn-plugin-engines/main/bundles/%40yarnpkg/plugin-engines.js"
88

9-
yarnPath: .yarn/releases/yarn-3.6.0.cjs
9+
yarnPath: .yarn/releases/yarn-3.6.1.cjs

examples/jest/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
"devDependencies": {
99
"@examples/symbol-plugin": "workspace:^",
1010
"@stackbuilders/assertive-ts": "workspace:^",
11-
"@types/jest": "^29.5.2",
12-
"@types/node": "^20.3.2",
13-
"jest": "^29.5.0",
14-
"ts-jest": "^29.1.0",
11+
"@types/jest": "^29.5.3",
12+
"@types/node": "^20.4.8",
13+
"jest": "^29.6.2",
14+
"ts-jest": "^29.1.1",
1515
"ts-node": "^10.9.1",
1616
"typescript": "^5.1.6"
1717
}

examples/mocha/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"@examples/symbol-plugin": "workspace:^",
1010
"@stackbuilders/assertive-ts": "workspace:^",
1111
"@types/mocha": "^10.0.1",
12-
"@types/node": "^20.3.2",
12+
"@types/node": "^20.4.8",
1313
"mocha": "^10.2.0",
1414
"ts-node": "^10.9.1",
1515
"typescript": "^5.1.6"

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"engines": {
99
"node": ">=16"
1010
},
11-
"packageManager": "yarn@3.6.0",
11+
"packageManager": "yarn@3.6.1",
1212
"workspaces": [
1313
"package/",
1414
"examples/*"
@@ -23,15 +23,15 @@
2323
"test": "turbo run test"
2424
},
2525
"devDependencies": {
26-
"@typescript-eslint/eslint-plugin": "^5.60.1",
27-
"@typescript-eslint/parser": "^5.60.1",
28-
"eslint": "^8.43.0",
26+
"@typescript-eslint/eslint-plugin": "^6.3.0",
27+
"@typescript-eslint/parser": "^6.3.0",
28+
"eslint": "^8.46.0",
2929
"eslint-import-resolver-typescript": "^3.5.5",
3030
"eslint-plugin-etc": "^2.0.3",
31-
"eslint-plugin-import": "^2.27.5",
32-
"eslint-plugin-jsdoc": "^46.4.2",
33-
"eslint-plugin-sonarjs": "^0.19.0",
34-
"turbo": "^1.10.6",
31+
"eslint-plugin-import": "^2.28.0",
32+
"eslint-plugin-jsdoc": "^46.4.6",
33+
"eslint-plugin-sonarjs": "^0.20.0",
34+
"turbo": "^1.10.12",
3535
"typescript": "^5.1.6"
3636
}
3737
}

package/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,16 @@
3636
},
3737
"devDependencies": {
3838
"@types/mocha": "^10.0.1",
39-
"@types/node": "^20.3.2",
40-
"@types/sinon": "^10.0.15",
41-
"all-contributors-cli": "^6.26.0",
39+
"@types/node": "^20.4.8",
40+
"@types/sinon": "^10.0.16",
41+
"all-contributors-cli": "^6.26.1",
4242
"mocha": "^10.2.0",
43-
"semantic-release": "^21.0.6",
43+
"semantic-release": "^21.0.7",
4444
"semantic-release-yarn": "^2.0.0",
4545
"sinon": "^15.2.0",
4646
"ts-node": "^10.9.1",
4747
"typedoc": "^0.24.8",
48-
"typedoc-plugin-markdown": "^3.15.3",
48+
"typedoc-plugin-markdown": "^3.15.4",
4949
"typedoc-plugin-merge-modules": "^5.0.1",
5050
"typescript": "^5.1.6"
5151
},

package/src/lib/Assertion.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import { prettify } from "./helpers/messages";
77

88
import { AssertionError } from "assert";
99

10+
// eslint-disable-next-line @typescript-eslint/ban-types
1011
export interface Constructor<T> extends Function {
1112
prototype: T;
1213
}

package/test/lib/Assertion.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ describe("[Unit] Assertion.test.ts", () => {
251251

252252
assert.deepStrictEqual(test.toBeTruthy(), test);
253253
assert.throws(() => test.not.toBeTruthy(), {
254-
message: `Expected <${value}> NOT to be a truthy value`,
254+
message: `Expected <${String(value)}> NOT to be a truthy value`,
255255
name: AssertionError.name,
256256
});
257257
});
@@ -294,7 +294,7 @@ describe("[Unit] Assertion.test.ts", () => {
294294
const test = new Assertion(value);
295295

296296
assert.throws(() => test.toBeFalsy(), {
297-
message: `Expected <${value}> to be a falsy value`,
297+
message: `Expected <${String(value)}> to be a falsy value`,
298298
name: AssertionError.name,
299299
});
300300
assert.deepStrictEqual(test.not.toBeFalsy(), test);

0 commit comments

Comments
 (0)