-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
ref(angular): Update Angular SDK docs for @sentry/angular-ivy
#6356
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
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@sentry/angular-ivy
@sentry/angular-ivy
- update version compatibility table - different tabs for angular 12+ and 10/11 - update verify include w/ NG-specific example - add filenames to all code examples - streamline getting started - fix a few wording issues/typos
d7c5bdf
to
6712083
Compare
```bash | ||
# Using yarn | ||
# Using yarn (Angular 12+) | ||
yarn add @sentry/angular-ivy @sentry/tracing | ||
# Using yarn (Angular 10 and 11) | ||
yarn add @sentry/angular @sentry/tracing | ||
|
||
# Using npm | ||
# Using npm (Angular 12+) | ||
npm install --save @sentry/angular-ivy @sentry/tracing | ||
# Using npm (Angular 10 and 11) | ||
npm install --save @sentry/angular @sentry/tracing |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know this is ugly but afaik we can't use tabs in the onboarding wizard :(
src/platform-includes/performance/enable-automatic-instrumentation/javascript.mdx
Outdated
Show resolved
Hide resolved
Co-authored-by: Andrea Canciani <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Made some suggestions.
src/platform-includes/getting-started-install/javascript.angular.mdx
Outdated
Show resolved
Hide resolved
src/platform-includes/getting-started-install/javascript.angular.mdx
Outdated
Show resolved
Hide resolved
src/platform-includes/getting-started-verify/javascript.angular.mdx
Outdated
Show resolved
Hide resolved
Co-authored-by: Liza Mock <[email protected]>
To ensure first-class compatibility with Angular's "new" rendering engine, Ivy, we needed to create a new SDK package that's compiled differently than the original
@sentry/angular
package. This new SDK is compatible with Angular 12 and newer and hence we're going to make it the default SDK in the docs going forward.This PR
ref: getsentry/sentry-javascript#7265