diff --git a/CHANGELOG.md b/CHANGELOG.md index de9ee45f..77a1533a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## Unreleased + +### Fixes + +- Add sentry-angular-ivy to optional dependencies ([#469](https://github.com/getsentry/sentry-capacitor/pull/469)) + ## 0.13.0-beta.1 ### Fixes diff --git a/README.md b/README.md index a5e53493..2c233711 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,10 @@ _Bad software is everywhere, and we're tired of it. Sentry is on a mission to he ## Installation ```bash +# Angular 12 and newer: +yarn add @sentry/capacitor @sentry/angular-ivy --exact + +# Angular 10 and 11: yarn add @sentry/capacitor @sentry/angular --exact ``` diff --git a/package.json b/package.json index 45f2a092..f2744b9f 100644 --- a/package.json +++ b/package.json @@ -40,11 +40,15 @@ "license": "MIT", "peerDependencies": { "@capacitor/core": ">=3.0.0", + "@sentry/angular-ivy": "7.70.0-beta.1", "@sentry/angular": "7.70.0-beta.1", "@sentry/react": "7.70.0-beta.1", "@sentry/vue": "7.70.0-beta.1" }, "peerDependenciesMeta": { + "@sentry/angular-ivy": { + "optional": true + }, "@sentry/angular": { "optional": true },