Skip to content

Commit

Permalink
Merge pull request #1780 from bugsnag/PLAT-8665-react-native-install-…
Browse files Browse the repository at this point in the history
…error

Plat 8665 react native install error
  • Loading branch information
gingerbenw authored Jun 30, 2022
2 parents 2d81a1f + 6bfdd21 commit ad1ed79
Show file tree
Hide file tree
Showing 17 changed files with 22 additions and 16 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## v7.17.2 (2022-06-30)

### Fixed

- (react-native) Fixed missing files when installing react-native [#1780](https://github.com/bugsnag/bugsnag-js/pull/1780)

## v7.17.1 (2022-06-29)

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Most updates to this repo will be made by Bugsnag employees. We are unable to ac

```sh
# Clone the repository
git clone [email protected]:bugsnag/bugsnag-js.git
git clone [email protected]:bugsnag/bugsnag-js.git --recursive
cd bugsnag-js

# Install top-level dependencies
Expand Down
2 changes: 1 addition & 1 deletion TESTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Clone and navigate to this repo:

```sh
git clone [email protected]:bugsnag/bugsnag-js.git
git clone [email protected]:bugsnag/bugsnag-js.git --recursive
cd bugsnag-js
```

Expand Down
2 changes: 1 addition & 1 deletion bin/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ if [[ -z ${VERSION:-} ]]; then error_missing_field "VERSION"; fi
if [[ -z ${AWS_ACCESS_KEY_ID:-} ]]; then error_missing_field "AWS_ACCESS_KEY_ID"; fi
if [[ -z ${AWS_SECRET_ACCESS_KEY:-} ]]; then error_missing_field "AWS_SECRET_ACCESS_KEY"; fi

git clone --single-branch \
git clone --single-branch --recursive \
--branch "$RELEASE_BRANCH" \
https://"$GITHUB_USER":"$GITHUB_ACCESS_TOKEN"@github.com/bugsnag/bugsnag-js.git

Expand Down
2 changes: 1 addition & 1 deletion examples/electron/electron-basic/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This example app was created with Electron forge.
Clone the repo and `cd` into the directory of this example:

```
git clone [email protected]:bugsnag/bugsnag-js.git
git clone [email protected]:bugsnag/bugsnag-js.git --recursive
cd bugsnag-js/examples/electron/electron-basic
```

Expand Down
2 changes: 1 addition & 1 deletion examples/electron/electron-bundled/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This example app was created with Electron forge.
Clone the repo and `cd` into the directory of this example:

```
git clone [email protected]:bugsnag/bugsnag-js.git
git clone [email protected]:bugsnag/bugsnag-js.git --recursive
cd bugsnag-js/examples/electron/electron-bundled
```

Expand Down
2 changes: 1 addition & 1 deletion examples/js/browser-cdn/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This is an example project showing how to use the CDN delivered version of `@bug
Clone the repo and `cd` into the directory of this example:

```
git clone [email protected]:bugsnag/bugsnag-js.git
git clone [email protected]:bugsnag/bugsnag-js.git --recursive
cd bugsnag-js/examples/js/browser-cdn
```

Expand Down
2 changes: 1 addition & 1 deletion examples/js/express/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This is an example project showing how to use `@bugsnag/js` with an Express appl
Clone the repo and `cd` into the directory of this example:

```
git clone [email protected]:bugsnag/bugsnag-js.git
git clone [email protected]:bugsnag/bugsnag-js.git --recursive
cd bugsnag-js/examples/js/express
```

Expand Down
2 changes: 1 addition & 1 deletion examples/js/koa/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This is an example project showing how to use `@bugsnag/js` with a Koa applicati
Clone the repo and `cd` into the directory of this example:

```
git clone [email protected]:bugsnag/bugsnag-js.git
git clone [email protected]:bugsnag/bugsnag-js.git --recursive
cd bugsnag-js/examples/js/koa
```

Expand Down
2 changes: 1 addition & 1 deletion examples/js/nuxtjs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ We recommend creating two projects in your dashboard, one for the server errors
Clone the repo and `cd` into the directory of this example:

```
git clone [email protected]:bugsnag/bugsnag-js.git
git clone [email protected]:bugsnag/bugsnag-js.git --recursive
cd bugsnag-js/examples/js/nuxtjs
```

Expand Down
2 changes: 1 addition & 1 deletion examples/js/plain-node/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This is an example project showing how to use `@bugsnag/js` with a basic Node.js
Clone the repo and `cd` into the directory of this example:

```
git clone [email protected]:bugsnag/bugsnag-js.git
git clone [email protected]:bugsnag/bugsnag-js.git --recursive
cd bugsnag-js/examples/js/plain-node
```

Expand Down
2 changes: 1 addition & 1 deletion examples/js/react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This project was bootstrapped with [`create-react-app`](https://github.com/faceb
Clone the repo and `cd` into the directory of this example:

```
git clone [email protected]:bugsnag/bugsnag-js.git
git clone [email protected]:bugsnag/bugsnag-js.git --recursive
cd bugsnag-js/examples/js/react
```
Take a look at…
Expand Down
2 changes: 1 addition & 1 deletion examples/js/restify/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This is an example project showing how to use `@bugsnag/js` with a Restify appli
Clone the repo and `cd` into the directory of this example:

```
git clone [email protected]:bugsnag/bugsnag-js.git
git clone [email protected]:bugsnag/bugsnag-js.git --recursive
cd bugsnag-js/examples/js/restify
```

Expand Down
2 changes: 1 addition & 1 deletion examples/js/vue/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This project was bootstrapped with [`Vue CLI`](https://cli.vuejs.org/).
Clone the repo and `cd` into the directory of this example:

```
git clone [email protected]:bugsnag/bugsnag-js.git
git clone [email protected]:bugsnag/bugsnag-js.git --recursive
cd bugsnag-js/examples/js/vue
```
Take a look at…
Expand Down
2 changes: 1 addition & 1 deletion examples/reactnative/rn063example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ For instructions on how to install and configure Bugsnag in your own application

1. Clone the repo and `cd` into the directory of this example:
```
git clone [email protected]:bugsnag/bugsnag-js.git
git clone [email protected]:bugsnag/bugsnag-js.git --recursive
cd bugsnag-js/examples/reactnative/rn063example
npm install
```
Expand Down
2 changes: 1 addition & 1 deletion examples/ts/angular/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This project was bootstrapped with [`Angular CLI`](https://github.com/angular/an
Clone the repo and `cd` into the directory of this example:

```
git clone [email protected]:bugsnag/bugsnag-js.git
git clone [email protected]:bugsnag/bugsnag-js.git --recursive
cd bugsnag-js/examples/ts/angular
```

Expand Down
2 changes: 1 addition & 1 deletion examples/ts/plain-node/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This is an example project showing how to use `@bugsnag/js` with a basic TypeScr
Clone the repo and `cd` into the directory of this example:

```
git clone [email protected]:bugsnag/bugsnag-js.git
git clone [email protected]:bugsnag/bugsnag-js.git --recursive
cd bugsnag-js/examples/ts/plain-node
```

Expand Down

0 comments on commit ad1ed79

Please sign in to comment.