Skip to content

Commit e125995

Browse files
chore: update all deps (#168)
Co-authored-by: Nicholas Boll <[email protected]>
1 parent ab16ee4 commit e125995

File tree

5 files changed

+10
-31
lines changed

5 files changed

+10
-31
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,7 @@ Thanks goes to these people ([emoji key][emojis]):
275275

276276
<!-- markdownlint-enable -->
277277
<!-- prettier-ignore-end -->
278+
278279
<!-- ALL-CONTRIBUTORS-LIST:END -->
279280

280281
This project follows the [all-contributors][all-contributors] specification.

package.json

+5-6
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"test:cypress:run": "cypress run",
2020
"test:unit": "kcd-scripts test --no-watch",
2121
"test:unit:watch": "kcd-scripts test",
22-
"typecheck": "dtslint ./types/",
22+
"typecheck": "kcd-scripts typecheck --build types",
2323
"validate": "kcd-scripts validate build,lint,test,typecheck"
2424
},
2525
"files": [
@@ -41,14 +41,13 @@
4141
"license": "MIT",
4242
"dependencies": {
4343
"@babel/runtime": "^7.12.5",
44-
"@testing-library/dom": "^7.26.6"
44+
"@testing-library/dom": "^7.28.1"
4545
},
4646
"devDependencies": {
47-
"cypress": "^5.6.0",
48-
"dtslint": "^4.0.5",
49-
"kcd-scripts": "^7.0.3",
47+
"cypress": "^6.0.1",
48+
"kcd-scripts": "^7.5.1",
5049
"npm-run-all": "^4.1.5",
51-
"typescript": "^4.0.5"
50+
"typescript": "^4.1.2"
5251
},
5352
"peerDependencies": {
5453
"cypress": "^2.1.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0"

types/test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// <reference types="Cypress" />
2-
import {configure} from '@testing-library/cypress'
3-
import '@testing-library/cypress/add-commands'
2+
import {configure} from '.'
3+
import './add-commands'
44

55
configure({testIdAttribute: 'data-myown-testid'})
66

types/tsconfig.json

+2-14
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,4 @@
11
{
2-
"compilerOptions": {
3-
"module": "commonjs",
4-
"lib": ["es6", "dom"],
5-
"noImplicitAny": true,
6-
"noImplicitThis": true,
7-
"strictFunctionTypes": true,
8-
"strictNullChecks": true,
9-
"baseUrl": ".",
10-
"noEmit": true,
11-
"types": [],
12-
"paths": {
13-
"@testing-library/cypress": ["."]
14-
}
15-
}
2+
"extends": "../node_modules/kcd-scripts/shared-tsconfig.json",
3+
"include": ["."]
164
}

types/tslint.json

-9
This file was deleted.

0 commit comments

Comments
 (0)