Skip to content

Commit 2b97914

Browse files
committed
1 parent fcaceb6 commit 2b97914

File tree

8 files changed

+29
-38
lines changed

8 files changed

+29
-38
lines changed

.gitattributes

Lines changed: 0 additions & 3 deletions
This file was deleted.

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ node_modules
99
# npm unused lock file (we use yarn.lock)
1010
package-lock.json
1111

12-
# ReScript / Reason / Ocaml artifacts
13-
#*.bs.js # we do want this files to ensure zero-cost
12+
# ReScript artifacts
13+
# *.bs.js # we do want this files to ensure zero-cost
1414
.bsb.lock
1515
**/lib/bs
1616
**/lib/ocaml

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Changelog of `@reason-react-native/__template__`
1+
# Changelog of `@rescript-react-native/__template__`
22

33
## X.Y.Z - 20YY-MM-DD
44

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019 @reason-react-native contributors
3+
Copyright (c) 2019 @rescript-react-native contributors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
`bsconfig.json` `"namespace"` field (more on this below),
77
- Update all occurences of
88

9-
- `@reason-react-native/__template__`
10-
- `https://github.com/reason-react-native/__template__`
9+
- `@rescript-react-native/__template__`
10+
- `https://github.com/rescript-react-native/__template__`
1111
- `__template__`
1212
- `react-native-XXXXXXXXXX`
1313
- `https://github.com/OWNER/react-native-XXXXXXXXXX`
@@ -23,18 +23,18 @@
2323

2424
---
2525

26-
# `@reason-react-native/__template__`
26+
# `@rescript-react-native/__template__`
2727

28-
[![Build Status](https://github.com/reason-react-native/__template__/workflows/Build/badge.svg)](https://github.com/reason-react-native/__template__/actions)
29-
[![Version](https://img.shields.io/npm/v/@reason-react-native/__template__.svg)](https://www.npmjs.com/@reason-react-native/__template__)
30-
[![Chat](https://img.shields.io/discord/235176658175262720.svg?logo=discord&colorb=blue)](https://reason-react-native.github.io/discord/)
28+
[![Build Status](https://github.com/rescript-react-native/__template__/workflows/Build/badge.svg)](https://github.com/rescript-react-native/__template__/actions)
29+
[![Version](https://img.shields.io/npm/v/@rescript-react-native/__template__.svg)](https://www.npmjs.com/@rescript-react-native/__template__)
30+
[![ReScript Forum](https://img.shields.io/discourse/posts?color=e6484f&label=ReScript%20Forum&server=https%3A%2F%2Fforum.rescript-lang.org)](https://forum.rescript-lang.org/)
3131

32-
[ReScript](https://rescript-lang.org) / [Reason](https://reasonml.github.io) bindings for
32+
[ReScript](https://rescript-lang.org) bindings for
3333
[`react-native-XXXXXXXXXX`](https://github.com/OWNER/react-native-XXXXXXXXXX).
3434

3535
Exposed as `ReactNativeXxxxxxxxxx` module.
3636

37-
`@reason-react-native/__template__` X.y.\* means it's compatible with
37+
`@rescript-react-native/__template__` X.y.\* means it's compatible with
3838
`react-native-XXXXXXXXXX` X.y.\*
3939

4040
## Installation
@@ -45,22 +45,22 @@ is properly installed & configured by following their installation instructions,
4545
you can install the bindings:
4646

4747
```console
48-
npm install @reason-react-native/__template__
48+
npm install @rescript-react-native/__template__
4949
# or
50-
yarn add @reason-react-native/__template__
50+
yarn add @rescript-react-native/__template__
5151
```
5252

53-
`@reason-react-native/__template__` should be added to `bs-dependencies` in your
53+
`@rescript-react-native/__template__` should be added to `bs-dependencies` in your
5454
`bsconfig.json`:
5555

5656
```diff
5757
{
5858
//...
5959
"bs-dependencies": [
60-
"reason-react",
61-
"reason-react-native",
60+
"@rescript/react",
61+
"rescript-react-native",
6262
// ...
63-
+ "@reason-react-native/__template__"
63+
+ "@rescript-react-native/__template__"
6464
],
6565
//...
6666
}
@@ -92,11 +92,11 @@ releases.
9292
## Contribute
9393

9494
Read the
95-
[contribution guidelines](https://github.com/reason-react-native/.github/blob/master/CONTRIBUTING.md)
95+
[contribution guidelines](https://github.com/rescript-react-native/.github/blob/master/CONTRIBUTING.md)
9696
before contributing.
9797

9898
## Code of Conduct
9999

100100
We want this community to be friendly and respectful to each other. Please read
101-
[our full code of conduct](https://github.com/reason-react-native/.github/blob/master/CODE_OF_CONDUCT.md)
101+
[our full code of conduct](https://github.com/rescript-react-native/.github/blob/master/CODE_OF_CONDUCT.md)
102102
so that you can understand what actions will and will not be tolerated.

bsconfig.json

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
{
2-
"name": "@reason-react-native/__template__",
3-
"refmt": 3,
4-
"reason": {
5-
"react-jsx": 3
6-
},
2+
"name": "@rescript-react-native/__template__",
3+
"reason": { "react-jsx": 3 },
74
"package-specs": {
85
"module": "commonjs",
96
"in-source": true

package.json

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
{
2-
"name": "@reason-react-native/__template__",
2+
"name": "@rescript-react-native/__template__",
33
"description": "ReScript bindings for react-native-XXXXXXXXXX",
44
"version": "0.0.0",
55
"publishConfig": {
66
"access": "public"
77
},
88
"peerDependencies": {},
9-
"repository": "https://github.com/reason-react-native/__template__.git",
9+
"repository": "https://github.com/rescript-react-native/__template__.git",
1010
"license": "MIT",
1111
"keywords": [
1212
"rescript",
13-
"reason",
14-
"reasonml",
15-
"bucklescript",
1613
"react-native"
1714
],
1815
"files": [
@@ -35,7 +32,7 @@
3532
"release": "npmpub"
3633
},
3734
"devDependencies": {
38-
"bs-platform": "^8.2.0",
35+
"bs-platform": "^9.0.0",
3936
"husky": "^4.0.0",
4037
"lint-staged": "^10.0.0",
4138
"npmpub": "^5.0.0",

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -246,10 +246,10 @@ braces@^3.0.1:
246246
dependencies:
247247
fill-range "^7.0.1"
248248

249-
bs-platform@^8.2.0:
250-
version "8.3.2"
251-
resolved "https://registry.yarnpkg.com/bs-platform/-/bs-platform-8.3.2.tgz#c307f1cc2d2397c3d088c7f3b62e9f493283cdcf"
252-
integrity sha512-iOTi5JIlNPoCPq31NS9ET79FLyCpwTL2JZbgHz35LzY9Bch1iDtbBR3FVGhRbjphxelAP4fLlFONfUNp5Y3a5g==
249+
bs-platform@^9.0.0:
250+
version "9.0.2"
251+
resolved "https://registry.yarnpkg.com/bs-platform/-/bs-platform-9.0.2.tgz#a6eac70eb8924a322556dacaccbfbc9b2a0d3a37"
252+
integrity sha512-Ye9JqJ4Oa7mcjjoOVRYI8Uc2Cf8N7jQLWDcdUplY7996d/YErSR7WitmV7XnSwr4EvdrbwjEsg1NxNjUQv3ChA==
253253

254254
callsites@^3.0.0:
255255
version "3.1.0"

0 commit comments

Comments
 (0)