@usefy/use-throttle 0.0.28 → 0.0.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +0 -13
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -368,19 +368,6 @@ This package maintains comprehensive test coverage to ensure reliability and sta
368
368
 
369
369
  </details>
370
370
 
371
- ### Running Tests
372
-
373
- ```bash
374
- # Run all tests
375
- pnpm test
376
-
377
- # Run tests in watch mode
378
- pnpm test:watch
379
-
380
- # Run tests with coverage report
381
- pnpm test --coverage
382
- ```
383
-
384
371
  ---
385
372
 
386
373
  ## License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@usefy/use-throttle",
3
- "version": "0.0.28",
3
+ "version": "0.0.30",
4
4
  "description": "A React hook for throttling values",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -17,7 +17,7 @@
17
17
  ],
18
18
  "sideEffects": false,
19
19
  "dependencies": {
20
- "@usefy/use-debounce": "0.0.28"
20
+ "@usefy/use-debounce": "0.0.30"
21
21
  },
22
22
  "peerDependencies": {
23
23
  "react": "^18.0.0 || ^19.0.0"