use-debouncy
Advanced tools
Comparing version 2.0.1 to 2.0.2
@@ -0,1 +1,8 @@ | ||
## [2.0.2](https://github.com/eavam/use-debouncy/compare/v2.0.1...v2.0.2) (2020-07-04) | ||
### Bug Fixes | ||
* change size limit and add info about side effects ([8df54bb](https://github.com/eavam/use-debouncy/commit/8df54bb3139446f122c73c2dc8c536249e8d4726)) | ||
## [2.0.1](https://github.com/eavam/use-debouncy/compare/v2.0.0...v2.0.1) (2020-07-02) | ||
@@ -2,0 +9,0 @@ |
{ | ||
"name": "use-debouncy", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"author": "Egor Avakumov", | ||
@@ -26,2 +26,3 @@ "description": "🌀Small (120 bytes) debounce effect hook for React with TypeScript support", | ||
"module": "lib/index.es.js", | ||
"sideEffects": false, | ||
"scripts": { | ||
@@ -50,4 +51,4 @@ "size": "size-limit", | ||
"@semantic-release/release-notes-generator": "9.0.1", | ||
"@size-limit/preset-small-lib": "4.5.2", | ||
"@size-limit/time": "4.5.2", | ||
"@size-limit/preset-small-lib": "4.5.3", | ||
"@size-limit/time": "4.5.3", | ||
"@testing-library/react-hooks": "3.3.0", | ||
@@ -60,3 +61,3 @@ "@types/jest": "26.0.3", | ||
"@typescript-eslint/parser": "3.5.0", | ||
"eslint": "7.3.1", | ||
"eslint": "7.4.0", | ||
"eslint-config-prettier": "6.11.0", | ||
@@ -83,3 +84,3 @@ "eslint-plugin-import": "2.22.0", | ||
"semantic-release": "17.1.1", | ||
"size-limit": "4.5.2", | ||
"size-limit": "4.5.3", | ||
"ts-jest": "26.1.1", | ||
@@ -97,20 +98,12 @@ "tslib": "2.0.0", | ||
{ | ||
"limit": "150 B", | ||
"path": [ | ||
"lib/index.js" | ||
], | ||
"import": "{ createStore }", | ||
"running": true, | ||
"gzip": true, | ||
"brotli": false | ||
"name": "use-debouncy", | ||
"limit": "120 B", | ||
"path": "lib/index.js", | ||
"import": "{ useDebouncy }" | ||
}, | ||
{ | ||
"limit": "150 B", | ||
"path": [ | ||
"lib/index.es.js" | ||
], | ||
"import": "{ createStore }", | ||
"running": true, | ||
"gzip": true, | ||
"brotli": false | ||
"name": "use-debouncy ES6", | ||
"limit": "120 B", | ||
"path": "lib/index.es.js", | ||
"import": "{ useDebouncy }" | ||
} | ||
@@ -117,0 +110,0 @@ ], |
22439