Skip to content
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