Skip to content

Commit 8d8f796

Browse files
docs(readme): fix organization prefix in documentation (#5)
1 parent 9ba0746 commit 8d8f796

File tree

2 files changed

+4
-13
lines changed

2 files changed

+4
-13
lines changed

CHANGELOG.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,3 @@
99
* force initial release to NPM ([#2](https://github.com/neurio/react-native-local-network-permission/issues/2)) ([12c8333](https://github.com/neurio/react-native-local-network-permission/commit/12c8333ac8d46c906687dc3c42d890fd6b4a5648))
1010
* initial commit ([#1](https://github.com/neurio/react-native-local-network-permission/issues/1)) ([4572518](https://github.com/neurio/react-native-local-network-permission/commit/4572518056e0cf93029217eb3a66d1a83183a3fa))
1111
* use generac as organization ([#4](https://github.com/neurio/react-native-local-network-permission/issues/4)) ([f762ccb](https://github.com/neurio/react-native-local-network-permission/commit/f762ccba36b2e9946269bce8c796feb46732160d))
12-
13-
# 1.0.0 (2023-12-18)
14-
15-
16-
### Features
17-
18-
* enable public release to NPM ([#3](https://github.com/neurio/react-native-local-network-permission/issues/3)) ([f009a22](https://github.com/neurio/react-native-local-network-permission/commit/f009a221ff25cf22747aa7a7f23293f81fb6ba95))
19-
* force initial release to NPM ([#2](https://github.com/neurio/react-native-local-network-permission/issues/2)) ([12c8333](https://github.com/neurio/react-native-local-network-permission/commit/12c8333ac8d46c906687dc3c42d890fd6b4a5648))
20-
* initial commit ([#1](https://github.com/neurio/react-native-local-network-permission/issues/1)) ([4572518](https://github.com/neurio/react-native-local-network-permission/commit/4572518056e0cf93029217eb3a66d1a83183a3fa))

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ web.
77

88
Add this library to your project:
99

10-
`npm install @neurio/react-native-local-network-permission`
10+
`npm install @generac/react-native-local-network-permission`
1111

12-
`yarn add @neurio/react-native-local-network-permission`
12+
`yarn add @generac/react-native-local-network-permission`
1313

1414
### iOS manual configuration
1515

@@ -68,7 +68,7 @@ This library is correctly autolinked on React Native. It can be used in both Rea
6868
import {
6969
checkLocalNetworkAccess,
7070
requestLocalNetworkAccess,
71-
} from '@neurio/react-native-local-network-permission';
71+
} from '@generac/react-native-local-network-permission';
7272

7373
//you need to make sure the local network permission dialog popup once
7474
const result = await requestLocalNetworkAccess();
@@ -84,7 +84,7 @@ If you need to mock this library in your Jest tests, you can use the following c
8484
you need to reference in your `jest.config.js` under `setupFilesAfterEnv`:
8585

8686
```javascript
87-
jest.mock('@neurio/react-native-local-network-permission', () => ({
87+
jest.mock('@generac/react-native-local-network-permission', () => ({
8888
checkLocalNetworkAccess: jest.fn(),
8989
requestLocalNetworkAccess: jest.fn(),
9090
}),

0 commit comments

Comments
 (0)