-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: upgrade packages to the latest versions
- Loading branch information
1 parent
b1e485e
commit 0105830
Showing
2 changed files
with
1,470 additions
and
1,144 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,12 +3,16 @@ | |
"description": "📦 useIsMountedRef is a React Hook to check when the component is mounted.", | ||
"author": "Helder Burato Berto <[email protected]> (https://helderburato.com/)", | ||
"license": "MIT", | ||
"version": "1.0.1", | ||
"version": "1.1.0", | ||
"main": "dist/use-is-mounted-ref.cjs.js", | ||
"module": "dist/use-is-mounted-ref.es.js", | ||
"jsnext:main": "dist/use-is-mounted-ref.es.js", | ||
"types": "dist/index.d.ts", | ||
"files": ["dist", "LICENSE", "README.md"], | ||
"files": [ | ||
"dist", | ||
"LICENSE", | ||
"README.md" | ||
], | ||
"scripts": { | ||
"build": "rm -fr ./dist && rollup -c", | ||
"format": "prettier --write \"src/**/*.{ts,tsx}\"", | ||
|
@@ -19,7 +23,13 @@ | |
"commit": "git-cz", | ||
"prepublishOnly": "yarn build" | ||
}, | ||
"keywords": ["react", "hook", "mounted", "unmounted", "ref"], | ||
"keywords": [ | ||
"react", | ||
"hook", | ||
"mounted", | ||
"unmounted", | ||
"ref" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/helderburato/use-is-mounted-ref.git" | ||
|
@@ -32,44 +42,44 @@ | |
"react": "^16.0.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "7.11.5", | ||
"@babel/polyfill": "7.11.5", | ||
"@babel/preset-env": "7.11.5", | ||
"@babel/preset-react": "7.10.4", | ||
"@babel/register": "7.11.5", | ||
"@babel/runtime": "7.11.2", | ||
"@commitlint/cli": "9.1.2", | ||
"@commitlint/config-conventional": "9.1.2", | ||
"@testing-library/react-hooks": "3.4.1", | ||
"@types/jest": "26.0.13", | ||
"@types/react": "16.9.49", | ||
"@babel/core": "7.12.3", | ||
"@babel/polyfill": "7.12.1", | ||
"@babel/preset-env": "7.12.1", | ||
"@babel/preset-react": "7.12.5", | ||
"@babel/register": "7.12.1", | ||
"@babel/runtime": "7.12.5", | ||
"@commitlint/cli": "11.0.0", | ||
"@commitlint/config-conventional": "11.0.0", | ||
"@testing-library/react-hooks": "3.4.2", | ||
"@types/jest": "26.0.15", | ||
"@types/react": "16.9.56", | ||
"babel-eslint": "10.1.0", | ||
"babel-jest": "26.3.0", | ||
"babel-loader": "8.1.0", | ||
"babel-jest": "26.6.3", | ||
"babel-loader": "8.2.1", | ||
"babel-preset-minify": "0.5.1", | ||
"commitizen": "4.2.1", | ||
"commitizen": "4.2.2", | ||
"cz-conventional-changelog": "3.3.0", | ||
"eslint": "7.8.1", | ||
"eslint-config-airbnb": "18.2.0", | ||
"eslint-config-prettier": "6.11.0", | ||
"eslint-plugin-import": "2.22.0", | ||
"eslint-plugin-jest": "23.20.0", | ||
"eslint-plugin-jsx-a11y": "6.3.1", | ||
"eslint": "7.13.0", | ||
"eslint-config-airbnb": "18.2.1", | ||
"eslint-config-prettier": "6.15.0", | ||
"eslint-plugin-import": "2.22.1", | ||
"eslint-plugin-jest": "24.1.3", | ||
"eslint-plugin-jsx-a11y": "6.4.1", | ||
"eslint-plugin-prettier": "3.1.4", | ||
"eslint-plugin-react": "7.20.6", | ||
"eslint-plugin-react-hooks": "4.1.0", | ||
"husky": "4.2.5", | ||
"jest": "26.4.2", | ||
"prettier": "2.1.1", | ||
"react": "16.13.1", | ||
"react-dom": "16.13.1", | ||
"react-test-renderer": "16.13.1", | ||
"rollup": "2.26.9", | ||
"eslint-plugin-react": "7.21.5", | ||
"eslint-plugin-react-hooks": "4.2.0", | ||
"husky": "4.3.0", | ||
"jest": "26.6.3", | ||
"prettier": "2.1.2", | ||
"react": "17.0.1", | ||
"react-dom": "17.0.1", | ||
"react-test-renderer": "17.0.1", | ||
"rollup": "2.33.2", | ||
"rollup-plugin-replace": "2.2.0", | ||
"rollup-plugin-typescript2": "0.27.2", | ||
"rollup-plugin-typescript2": "0.29.0", | ||
"rollup-plugin-uglify": "6.0.4", | ||
"ts-jest": "26.3.0", | ||
"typescript": "4.0.2" | ||
"ts-jest": "26.4.4", | ||
"typescript": "4.0.5" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
|
@@ -79,7 +89,9 @@ | |
} | ||
}, | ||
"commitlint": { | ||
"extends": ["@commitlint/config-conventional"] | ||
"extends": [ | ||
"@commitlint/config-conventional" | ||
] | ||
}, | ||
"config": { | ||
"commitizen": { | ||
|
Oops, something went wrong.