Skip to content

Commit fcaceb6

Browse files
committed
Make original package more obvious
1 parent baf602c commit fcaceb6

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,21 @@
22

33
- ⚠️ **Don't fork this repository.** Use the "Use this template" green GitHub
44
button.
5-
- Put your bindings in `src/ReactNativeSomething` & rename accordingly or use
5+
- Put your bindings in `src/ReactNativeXxxxxxxxxx` & rename accordingly or use
66
`bsconfig.json` `"namespace"` field (more on this below),
77
- Update all occurences of
88

99
- `@reason-react-native/__template__`
1010
- `https://github.com/reason-react-native/__template__`
1111
- `__template__`
12-
- `@react-native-community/something`
13-
- `https://github.com/react-native-community/something`
14-
- `ReactNativeSomething`. If you have more than a file exposed, you should
12+
- `react-native-XXXXXXXXXX`
13+
- `https://github.com/OWNER/react-native-XXXXXXXXXX`
14+
- `ReactNativeXxxxxxxxxx`. If you have more than a file exposed, you should
1515
consider using ReScript custom namespace by adjusting `bsconfig.json`
1616
and adding a `"namespace": "react-native-something"` (note that it will be
17-
converted to `ReactNativeSomething`)
17+
converted to `ReactNativeXxxxxxxxxx`)
1818

19-
- Add your `@react-native-community/something` (adjusted) in `peerDependencies`
19+
- Add your `react-native-XXXXXXXXXX` (adjusted) in `peerDependencies`
2020
& `devDependencies` section
2121
- Adjust the changelog (and/or clean it)
2222
- Remove this part ⬆ & keep everything below ⬇
@@ -30,17 +30,17 @@
3030
[![Chat](https://img.shields.io/discord/235176658175262720.svg?logo=discord&colorb=blue)](https://reason-react-native.github.io/discord/)
3131

3232
[ReScript](https://rescript-lang.org) / [Reason](https://reasonml.github.io) bindings for
33-
[`@react-native-community/something`](https://github.com/react-native-community/something).
33+
[`react-native-XXXXXXXXXX`](https://github.com/OWNER/react-native-XXXXXXXXXX).
3434

35-
Exposed as `ReactNativeSomething` module.
35+
Exposed as `ReactNativeXxxxxxxxxx` module.
3636

3737
`@reason-react-native/__template__` X.y.\* means it's compatible with
38-
`@react-native-community/something` X.y.\*
38+
`react-native-XXXXXXXXXX` X.y.\*
3939

4040
## Installation
4141

4242
When
43-
[`@react-native-community/something`](https://github.com/react-native-community/something)
43+
[`react-native-XXXXXXXXXX`](https://github.com/OWNER/react-native-XXXXXXXXXX)
4444
is properly installed & configured by following their installation instructions,
4545
you can install the bindings:
4646

@@ -70,13 +70,13 @@ yarn add @reason-react-native/__template__
7070

7171
### Types
7272

73-
#### `ReactNativeSomething.t`
73+
#### `ReactNativeXxxxxxxxxx.t`
7474

7575
...
7676

7777
### Methods
7878

79-
#### `ReactNativeSomething.method`
79+
#### `ReactNativeXxxxxxxxxx.method`
8080

8181
...
8282

File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
type t;
22

3-
[@bs.module "@react-native-community/something"]
3+
[@bs.module "react-native-XXXXXXXXXX"]
44
external method: unit => unit = "method";

0 commit comments

Comments
 (0)