Skip to content

Commit d40376b

Browse files
committed
Merge tag '1.0.0' back into develop
2 parents d328ea0 + e5147d7 commit d40376b

File tree

3 files changed

+22
-9
lines changed

3 files changed

+22
-9
lines changed

README.md

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,24 @@
1-
# use-async-effekt
1+
# use-async-effekt-hooks
22

3-
React hooks for async effects and memoization with proper dependency tracking.
3+
React hooks for async effects and memoization with proper dependency tracking and linting support.
4+
5+
![CI](https://github.com/davemecha/use-async-effekt/actions/workflows/test.yml/badge.svg)
6+
![npm](https://img.shields.io/npm/v/use-async-effekt-hooks)
7+
![codecov](https://codecov.io/gh/davemecha/use-async-effekt/branch/main/graph/badge.svg)
8+
![npm downloads](https://img.shields.io/npm/dw/use-async-effekt-hooks)
9+
![MIT](https://img.shields.io/npm/l/use-async-effekt-hooks)
10+
![bundle size](https://img.shields.io/bundlephobia/minzip/use-async-effekt-hooks)
11+
12+
![bundle size](https://img.shields.io/bundlephobia/minzip/use-async-effekt-hooks)
13+
![Types](https://img.shields.io/npm/types/use-async-effekt-hooks)
14+
![react 16-19](https://img.shields.io/badge/react-16‒19-brightgreen?logo=react)
15+
![GitHub stars](https://img.shields.io/github/stars/davemecha/use-async-effekt?style=social)
16+
![issues](https://img.shields.io/github/issues/davemecha/use-async-effekt)
417

518
## Installation
619

720
```bash
8-
npm install use-async-effekt
21+
npm install use-async-effekt-hooks
922
```
1023

1124
## Hooks
@@ -31,7 +44,7 @@ The hook provides:
3144
#### Basic Usage (Without Waiting)
3245

3346
```typescript
34-
import { useAsyncEffekt } from "use-async-effekt";
47+
import { useAsyncEffekt } from "use-async-effekt-hooks";
3548
import { useState } from "react";
3649

3750
function MyComponent() {

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "use-async-effekt",
3-
"version": "0.1.0",
4-
"description": "React hooks for async effects and memoization with proper dependency tracking",
2+
"name": "use-async-effekt-hooks",
3+
"version": "1.0.0",
4+
"description": "React hooks for async effects and memoization with proper dependency tracking and linting support",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
77
"files": [

0 commit comments

Comments
 (0)