Skip to content

Commit 2caed70

Browse files
committed
chore: rename to react-native-builder-bob
1 parent 4061d63 commit 2caed70

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @react-native-community/bob
1+
# react-native-builder-bob
22

33
[![Version][version-badge]][package]
44
[![Build Status][build-badge]][build]
@@ -48,7 +48,7 @@ Bob wraps tools such as `babel` and `typescript` to simplify these common tasks
4848
To create new project with Bob, run the following:
4949

5050
```sh
51-
npx @react-native-community/bob create react-native-awesome-module
51+
npx react-native-builder-bob create react-native-awesome-module
5252
```
5353

5454
This will ask you few questions about your project and generate a new project in a folder named `react-native-awesome-module`.
@@ -60,7 +60,7 @@ The difference from [create-react-native-module](https://github.com/brodybits/cr
6060
First, install Bob in your project. Open a Terminal in your project, and run:
6161

6262
```sh
63-
yarn add --dev @react-native-community/bob
63+
yarn add --dev react-native-builder-bob
6464
```
6565

6666
To configure your project to use Bob, open a Terminal and run `yarn bob init` for automatic configuration.
@@ -70,7 +70,7 @@ To configure your project manually, follow these steps:
7070
1. In your `package.json`, specify the targets to build for:
7171

7272
```json
73-
"@react-native-community/bob": {
73+
"react-native-builder-bob": {
7474
"source": "src",
7575
"output": "lib",
7676
"targets": [
@@ -128,7 +128,7 @@ And we're done 🎉
128128

129129
## Options
130130

131-
The options can be specified in the `package.json` file under the `@react-native-community/bob` property, or in a `bob.config.js` file in your project directory.
131+
The options can be specified in the `package.json` file under the `react-native-builder-bob` property, or in a `bob.config.js` file in your project directory.
132132

133133
### `source`
134134

@@ -251,9 +251,9 @@ MIT
251251

252252
<!-- badges -->
253253

254-
[version-badge]: https://img.shields.io/npm/v/@react-native-community/bob.svg?style=flat-square
255-
[package]: https://www.npmjs.com/package/@react-native-community/bob
256-
[build-badge]: https://img.shields.io/circleci/project/github/callstack/react-native-builder-bob/master.svg?style=flat-square
254+
[version-badge]: https://img.shields.io/npm/v/react-native-builder-bob.svg?style=flat-square
255+
[package]: https://www.npmjs.com/package/react-native-builder-bob
256+
[build-badge]: https://img.shields.io/circleci/project/github/callstack/react-native-builder-bob/main.svg?style=flat-square
257257
[build]: https://circleci.com/gh/callstack/react-native-builder-bob
258-
[license-badge]: https://img.shields.io/npm/l/@react-native-community/bob.svg?style=flat-square
258+
[license-badge]: https://img.shields.io/npm/l/react-native-builder-bob.svg?style=flat-square
259259
[license]: https://opensource.org/licenses/MIT

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"name": "@react-native-community/bob",
2+
"name": "react-native-builder-bob",
33
"version": "0.16.2",
44
"description": "CLI to build JavaScript files for React Native libraries",
5-
"repository": "[email protected]:react-native-community/bob.git",
6-
"homepage": "https://github.com/react-native-community/bob/blob/master/README.md",
5+
"repository": "[email protected]:callstack/react-native-builder-bob.git",
6+
"homepage": "https://github.com/callstack/react-native-builder-bob/blob/main/README.md",
77
"author": "Satyajit Sahoo <[email protected]>",
88
"license": "MIT",
99
"main": "src/index.js",

templates/common/$package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@
4848
},
4949
"devDependencies": {
5050
"@commitlint/config-conventional": "^8.3.4",
51-
"@react-native-community/bob": "^<%- bob.version %>",
5251
"@react-native-community/eslint-config": "^2.0.0",
5352
"@release-it/conventional-changelog": "^1.1.4",
5453
"@types/jest": "^26.0.0",
@@ -64,6 +63,7 @@
6463
"prettier": "^2.0.5",
6564
"react": "16.11.0",
6665
"react-native": "0.62.2",
66+
"react-native-builder-bob": "^<%- bob.version %>",
6767
"release-it": "^13.5.8",
6868
"typescript": "^3.8.3"
6969
},
@@ -133,7 +133,7 @@
133133
"trailingComma": "es5",
134134
"useTabs": false
135135
},
136-
"@react-native-community/bob": {
136+
"react-native-builder-bob": {
137137
"source": "src",
138138
"output": "lib",
139139
"targets": [

0 commit comments

Comments
 (0)