Skip to content

Commit

Permalink
chore: update dev dependencies (#94)
Browse files Browse the repository at this point in the history
* chore: update typescript and type defs

* chore: update husky dependency and test script

* chore: update rollup dependencies

* chore: upgrade eslint deps

Co-authored-by: Justin Schrader <[email protected]>
  • Loading branch information
icd2k3 and jschrader-nr authored Mar 11, 2020
1 parent ec060f7 commit aab967d
Show file tree
Hide file tree
Showing 3 changed files with 665 additions and 484 deletions.
27 changes: 15 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,23 +41,23 @@
"@babel/preset-typescript": "^7.8.3",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"@types/react": "^16.9.19",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@types/react": "^16.9.23",
"@types/react-router-dom": "^5.1.3",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"babel-eslint": "^10.0.2",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.1.0",
"coveralls": "^3.0.9",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^1.7.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"husky": "^4.2.1",
"jest": "^25.1.0",
"js-yaml": "^3.13.1",
Expand All @@ -66,10 +66,13 @@
"react-dom": "16.13.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"rollup": "^1.29.1",
"rollup-plugin-babel": "^4.3.3",
"rollup": "^2.0.3",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-uglify": "^6.0.2",
"typescript": "^3.7.5"
"typescript": "^3.8.3"
},
"resolutions": {
"@types/react": "^16.9.23"
},
"keywords": [
"react",
Expand Down
3 changes: 3 additions & 0 deletions scripts/test-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@

set -e

printf "\n====\nTesting CJS dist build\n====\n" && \
TEST_BUILD=cjs yarn test --coverage=0 && \
printf "\n====\nTesting UMD dist build\n====\n" && \
TEST_BUILD=umd yarn test --coverage=0 && \
printf "\n====\nTesting ES dist build\n====\n" && \
TEST_BUILD=es yarn test --coverage=0
Loading

0 comments on commit aab967d

Please sign in to comment.