Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for Capacitor 5/Angular 16 peer dependencies error #458

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ _Bad software is everywhere, and we're tired of it. Sentry is on a mission to he
## Installation

```bash
yarn add @sentry/capacitor @sentry/angular --exact
#Angular 12 and newer:
npm install --save @sentry/capacitor @sentry/angular-ivy

#Angular 10 and 11:
npm install --save @sentry/capacitor @sentry/angular
```

## Usage
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
"license": "MIT",
"peerDependencies": {
"@capacitor/core": ">=3.0.0",
"@sentry/angular": "7.64.0",
"@sentry/react": "7.64.0",
"@sentry/vue": "7.64.0"
},
Expand Down