Skip to content

Commit

Permalink
Merge pull request #86 from haensl/85
Browse files Browse the repository at this point in the history
#85: Update dependencies.
  • Loading branch information
haensl authored Aug 7, 2022
2 parents eef3e75 + a3cf45c commit 05ac0cf
Show file tree
Hide file tree
Showing 17 changed files with 7,258 additions and 6,439 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.11.2
* [#85: Update dependencies.](https://github.com/haensl/hooks/issues/85)
* [#83: Migrate to React@18.](https://github.com/haensl/hooks/issues/83)

## 1.11.1
* [#81: Update dependencies.](https://github.com/haensl/hooks/issues/81)

Expand Down
7,910 changes: 4,348 additions & 3,562 deletions package-lock.json

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@haensl/react-hooks",
"version": "1.11.1",
"version": "1.11.2",
"description": "Assorted React hooks.",
"main": "dist/hooks.cjs.js",
"module": "dist/hooks.esm.js",
Expand Down Expand Up @@ -136,13 +136,12 @@
"@haensl/eslint-config": "^1.3.0",
"@haensl/rollup-plugin-local-resolve": "^1.1.1",
"@rollup/plugin-babel": "^5.2.3",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.0.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/react": "^13.3.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.0.1",
"babel-jest": "^28.1.3",
"babel-preset-react-app": "^10.0.0",
"eslint": "^8.5.0",
"eslint-config-react-app": "^7.0.0",
Expand All @@ -151,12 +150,13 @@
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.4",
"jest": "^27.0.1",
"jest-junit": "^13.0.0",
"react": "^17.0.2",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-junit": "^14.0.0",
"react": "^18.2.0",
"react-app-polyfill": "^3.0.0",
"react-dom": "^17.0.2",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"rollup": "^2.38.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
Expand Down
2 changes: 1 addition & 1 deletion src/package-tests/cjs/cjs.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ describe('cjs module test', () => {
const windowSize = useWindowSize();

return (
<span>useWindoSize test. { windowSize }</span>
<span>useWindoSize test. { windowSize ? 'size' : 'no size' }</span>
);
};
});
Expand Down
Loading

0 comments on commit 05ac0cf

Please sign in to comment.