Skip to content

Cleanup repo #123

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
* text=auto
*.js text eol=lf
* text=auto eol=lf
8 changes: 0 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,17 +1,9 @@
node_modules
coverage
dist
.opt-in
.opt-out
.DS_Store
.eslintcache
.idea/

# these cause more harm than good
# when working with contributors
package-lock.json
yarn.lock

# cypress recordings during a test run are temporary files
/cypress/videos/
/cypress/screenshots/
3 changes: 1 addition & 2 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
package.json
node_modules
dist
coverage
dist
11 changes: 0 additions & 11 deletions .prettierrc

This file was deleted.

1 change: 1 addition & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = require('kcd-scripts/prettier')
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@
"description": "Simple and complete custom Cypress commands and utilities that encourage good testing practices.",
"main": "dist/index.js",
"engines": {
"node": ">=10"
"node": ">=10.18"
},
"scripts": {
"build": "kcd-scripts build",
"lint": "kcd-scripts lint",
"setup": "npm install && npm run validate -s",
"test": "npm-run-all --parallel test:unit test:cypress",
"test:cypress": "npm run test:cypress:run",
"test:cypress:open": "cypress open",
"test:cypress:run": "cypress run",
"test:unit": "kcd-scripts test --no-watch",
"test:unit:watch": "kcd-scripts test",
"test:cypress:run": "cypress run",
"test:cypress:open": "cypress open",
"test:cypress": "npm run test:cypress:run",
"test:cypress:dev": "npm run test:cypress:open",
"validate": "kcd-scripts validate build,lint,test",
"setup": "npm install && npm run validate -s"
"validate": "kcd-scripts validate build,lint,test"
},
"husky": {
"hooks": {
Expand All @@ -38,7 +38,7 @@
"end-to-end",
"e2e"
],
"author": "Kent C. Dodds <[email protected]> (http://kentcdodds.com/)",
"author": "Kent C. Dodds <[email protected]> (https://kentcdodds.com)",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.8.4",
Expand Down Expand Up @@ -68,7 +68,7 @@
],
"repository": {
"type": "git",
"url": "https://github.com/kentcdodds/cypress-testing-library.git"
"url": "https://github.com/kentcdodds/cypress-testing-library"
},
"bugs": {
"url": "https://github.com/kentcdodds/cypress-testing-library/issues"
Expand Down