Skip to content

Commit 45a0997

Browse files
authored
bs-react-intl-extractor -> rescript-react-intl-extractor (#74)
1 parent 2867a7a commit 45a0997

File tree

8 files changed

+221
-138
lines changed

8 files changed

+221
-138
lines changed

.github/workflows/get_filenames.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const { version } = JSON.parse(packageJson);
66

77
const exeName = getExeName();
88
const platform = getPlatformName();
9-
const artifactName = `bs-react-intl-extractor-${version}-${platform}`;
9+
const artifactName = `rescript-react-intl-extractor-${version}-${platform}`;
1010

1111
// For passing output to subsequent GitHub actions
1212
console.log(`::set-output name=exe_name::${exeName}`);
@@ -32,8 +32,8 @@ function getExeName() {
3232

3333
switch (platform) {
3434
case "win32":
35-
return "bs-react-intl-extractor.exe";
35+
return "rescript-react-intl-extractor.exe";
3636
default:
37-
return "bs-react-intl-extractor";
37+
return "rescript-react-intl-extractor";
3838
}
3939
}

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ _esy
77
_release
88
*.byte
99
*.native
10-
bs-react-intl-extractor.install
10+
rescript-react-intl-extractor.install
1111
.DS_Store

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
1-
# bs-react-intl-extractor
1+
# rescript-react-intl-extractor
22

33
Extracts messages for localization from [ReScript] or [Reason] source files.
4-
This assumes that you are using the [bs-react-intl] 2.x bindings for [react-intl].
4+
This assumes that you are using the [rescript-react-intl] 2.x bindings for [react-intl].
55

6-
[![NPM](https://nodei.co/npm/bs-react-intl-extractor-bin.png?compact=true)](https://nodei.co/npm/bs-react-intl-extractor-bin/)
7-
![Build Status](https://github.com/cknitt/bs-react-intl-extractor/workflows/CI/badge.svg)
6+
[![NPM](https://nodei.co/npm/rescript-react-intl-extractor-bin.png?compact=true)](https://nodei.co/npm/rescript-react-intl-extractor-bin/)
7+
![Build Status](https://github.com/cca-io/rescript-react-intl-extractor/workflows/CI/badge.svg)
88

99
## Installation
1010

1111
Binaries for macOS, Linux and Windows can be installed via npm or yarn. For global installation, run
1212

1313
```sh
14-
npm install -g bs-react-intl-extractor-bin
14+
npm install -g rescript-react-intl-extractor-bin
1515
```
1616

1717
Alternatively, the binaries are also available for download on the [releases page].
1818

1919
## Usage
2020

2121
```sh
22-
bs-react-intl-extractor [--allow-duplicates] [path...]
22+
rescript-react-intl-extractor [--allow-duplicates] [path...]
2323
```
2424

2525
where `path` is a ReScript (`*.res`) or Reason (`*.re`) source file or a directory containing such source files. Multiple files/directories may be specified.
@@ -149,7 +149,7 @@ Run the tests:
149149

150150
[rescript]: https://rescript-lang.org/
151151
[reason]: https://reasonml.github.io
152-
[bs-react-intl]: https://github.com/alexfedoseev/bs-react-intl
152+
[rescript-react-intl]: https://github.com/cca-io/rescript-react-intl
153153
[react-intl]: https://github.com/yahoo/react-intl
154-
[releases page]: https://github.com/cknitt/bs-react-intl-extractor/releases
154+
[releases page]: https://github.com/cca-io/rescript-react-intl-extractor/releases
155155
[esy]: https://esy.sh

docker/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Docker image for running esy and building bs-react-intl-extractor on Linux.
1+
Docker image for running esy and building rescript-react-intl-extractor on Linux.

dune-project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
(lang dune 2.0)
2-
(name bs-react-intl-extractor)
2+
(name rescript-react-intl-extractor)

0 commit comments

Comments
 (0)