Skip to content

Commit 1103870

Browse files
chore(deps-dev): Bump semantic-release from 19.0.5 to 20.0.2 (#380)
* chore(deps-dev): Bump semantic-release from 19.0.5 to 20.0.2 Bumps [semantic-release](https://github.com/semantic-release/semantic-release) from 19.0.5 to 20.0.2. - [Release notes](https://github.com/semantic-release/semantic-release/releases) - [Commits](semantic-release/semantic-release@v19.0.5...v20.0.2) --- updated-dependencies: - dependency-name: semantic-release dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * style: run prettier * ci: use node 18 for semantic-release Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Christian Hagendorn <[email protected]>
1 parent 9aa0dee commit 1103870

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/testcafe-testing-library.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
steps:
3333
- uses: actions/setup-node@v3
3434
with:
35-
node-version: 16
35+
node-version: 18
3636
- uses: actions/checkout@v3
3737
- run: npm install
3838
- run: npm run build

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"kcd-scripts": "^12.3.0",
3535
"npm-run-all": "^4.1.5",
3636
"prettier": "^2.7.1",
37-
"semantic-release": "^19.0.5",
37+
"semantic-release": "^20.0.2",
3838
"testcafe": ">=2.0.0",
3939
"ts-jest": "^29.0.3",
4040
"typescript": "^4.8.4"

src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ function isSelector(sel: SelectorArg): sel is Selector {
7878

7979
const bindFunction = <T extends QueryName>(queryName: T) => {
8080
const query = queryName.replace("find", "query") as T;
81-
return (matcher: Matcher, options?: Parameters<typeof queries[T]>[2]) => {
81+
return (matcher: Matcher, options?: Parameters<(typeof queries)[T]>[2]) => {
8282
return Selector(
8383
() =>
8484
window.TestingLibraryDom[query](document.body, matcher, options) as

0 commit comments

Comments
 (0)