Skip to content

Commit

Permalink
feat(deps): Update dependencies 2023.08.07 (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseLion authored Aug 8, 2023
1 parent 3dcacf4 commit f4900ee
Show file tree
Hide file tree
Showing 12 changed files with 1,343 additions and 1,238 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
with:
source: ./
destination: ./_site
- uses: actions/upload-pages-artifact@v1
- uses: actions/upload-pages-artifact@v2

deploy:
environment:
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.3.1
20.5.0
312 changes: 156 additions & 156 deletions .yarn/releases/yarn-3.6.0.cjs → .yarn/releases/yarn-3.6.1.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ plugins:
- path: .yarn/plugins/@yarnpkg/plugin-engines.cjs
spec: "https://raw.githubusercontent.com/devoto13/yarn-plugin-engines/main/bundles/%40yarnpkg/plugin-engines.js"

yarnPath: .yarn/releases/yarn-3.6.0.cjs
yarnPath: .yarn/releases/yarn-3.6.1.cjs
8 changes: 4 additions & 4 deletions examples/jest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"devDependencies": {
"@examples/symbol-plugin": "workspace:^",
"@stackbuilders/assertive-ts": "workspace:^",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.2",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.8",
"jest": "^29.6.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/mocha/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"@examples/symbol-plugin": "workspace:^",
"@stackbuilders/assertive-ts": "workspace:^",
"@types/mocha": "^10.0.1",
"@types/node": "^20.3.2",
"@types/node": "^20.4.8",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"engines": {
"node": ">=16"
},
"packageManager": "yarn@3.6.0",
"packageManager": "yarn@3.6.1",
"workspaces": [
"package/",
"examples/*"
Expand All @@ -23,15 +23,15 @@
"test": "turbo run test"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "^8.43.0",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.46.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-etc": "^2.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^46.4.2",
"eslint-plugin-sonarjs": "^0.19.0",
"turbo": "^1.10.6",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsdoc": "^46.4.6",
"eslint-plugin-sonarjs": "^0.20.0",
"turbo": "^1.10.12",
"typescript": "^5.1.6"
}
}
10 changes: 5 additions & 5 deletions package/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,16 @@
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^20.3.2",
"@types/sinon": "^10.0.15",
"all-contributors-cli": "^6.26.0",
"@types/node": "^20.4.8",
"@types/sinon": "^10.0.16",
"all-contributors-cli": "^6.26.1",
"mocha": "^10.2.0",
"semantic-release": "^21.0.6",
"semantic-release": "^21.0.7",
"semantic-release-yarn": "^2.0.0",
"sinon": "^15.2.0",
"ts-node": "^10.9.1",
"typedoc": "^0.24.8",
"typedoc-plugin-markdown": "^3.15.3",
"typedoc-plugin-markdown": "^3.15.4",
"typedoc-plugin-merge-modules": "^5.0.1",
"typescript": "^5.1.6"
},
Expand Down
1 change: 1 addition & 0 deletions package/src/lib/Assertion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { prettify } from "./helpers/messages";

import { AssertionError } from "assert";

// eslint-disable-next-line @typescript-eslint/ban-types
export interface Constructor<T> extends Function {
prototype: T;
}
Expand Down
4 changes: 2 additions & 2 deletions package/test/lib/Assertion.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ describe("[Unit] Assertion.test.ts", () => {

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

assert.throws(() => test.toBeFalsy(), {
message: `Expected <${value}> to be a falsy value`,
message: `Expected <${String(value)}> to be a falsy value`,
name: AssertionError.name,
});
assert.deepStrictEqual(test.not.toBeFalsy(), test);
Expand Down
2 changes: 1 addition & 1 deletion package/test/lib/ObjectAssertion.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ describe("[Unit] ObjectAssertion.test.ts", () => {

assert.deepStrictEqual(test.toContainValue(value), test);
assert.throws(() => test.not.toContainValue(value), {
message: `Expected the object NOT to contain the provided value <${value}>`,
message: `Expected the object NOT to contain the provided value <${prettify(value)}>`,
name: AssertionError.name,
});
});
Expand Down
Loading

0 comments on commit f4900ee

Please sign in to comment.