Skip to content

chore: migrate to kcd #502

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 18 commits into from
Dec 6, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
node_modules
coverage
dist
lib
.docz
site
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
node_modules
coverage
dist
lib
.docz
site
2 changes: 1 addition & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
node_modules
coverage
dist
lib
.docz
site
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@testing-library/react-hooks",
"version": "0.0.0-semantically-released",
"description": "Simple and complete React hooks testing utilities that encourage good testing practices.",
"main": "dist/index.js",
"main": "lib/index.js",
"keywords": [
"testing",
"react",
Expand All @@ -11,7 +11,7 @@
"integration"
],
"files": [
"dist",
"lib",
"src",
"pure.js",
"dont-cleanup-after-each.js"
Expand All @@ -26,7 +26,7 @@
"setup": "npm install && npm run validate -s",
"validate": "kcd-scripts validate",
"prepare": "npm run build",
"build": "kcd-scripts build",
"build": "kcd-scripts build --out-dir lib",
"lint": "kcd-scripts lint",
"coverage": "codecov",
"test": "kcd-scripts test",
Expand Down