Skip to content
Merged
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
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
```javascript {tabTitle: JavaScript}
import * as Sentry from "https://deno.land/x/sentry/index.mjs";
import * as Sentry from "npm:@sentry/deno";

Sentry.init({
dsn: "___PUBLIC_DSN___",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
```javascript {tabTitle: JavaScript}
import * as Sentry from "https://deno.land/x/sentry/index.mjs";
import * as Sentry from "npm:@sentry/deno";

Sentry.init({
dsn: "___PUBLIC_DSN___",
Expand Down
2 changes: 1 addition & 1 deletion platform-includes/configuration/debug/javascript.deno.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
```javascript {tabTitle: JavaScript}
import * as Sentry from "https://deno.land/x/sentry/index.mjs";
import * as Sentry from "npm:@sentry/deno";

Sentry.init({
dsn: "___PUBLIC_DSN___",
Expand Down
2 changes: 1 addition & 1 deletion platform-includes/configuration/dedupe/javascript.deno.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
```javascript {tabTitle: JavaScript}
import * as Sentry from "https://deno.land/x/sentry/index.mjs";
import * as Sentry from "npm:@sentry/deno";

Sentry.init({
dsn: "___PUBLIC_DSN___",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
```javascript {tabTitle: JavaScript}
import * as Sentry from "https://deno.land/x/sentry/index.mjs";
import * as Sentry from "npm:@sentry/deno";

Sentry.init({
dsn: "___PUBLIC_DSN___",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
```javascript {tabTitle: JavaScript}
import * as Sentry from "https://deno.land/x/sentry/index.mjs";
import * as Sentry from "npm:@sentry/deno";

Sentry.init({
dsn: "___PUBLIC_DSN___",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
```javascript {tabTitle: JavaScript}
import * as Sentry from "https://deno.land/x/sentry/index.mjs";
import * as Sentry from "npm:@sentry/deno";

Sentry.init({
dsn: "___PUBLIC_DSN___",
Expand Down
2 changes: 1 addition & 1 deletion platform-includes/crons/setup/javascript.deno.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ _requires SDK version 7.88.0 or higher_
Use the `DenoCron` integration to monitor your [`Deno.cron`](https://deno.com/blog/cron) calls and get notified when a schedule job is missed (or doesn't start when expected), if it fails due to a problem in the runtime (such as an error), or if it fails by exceeding its maximum runtime.

```TypeScript
import * as Sentry from "https://deno.land/x/sentry/index.mjs";
import * as Sentry from "npm:@sentry/deno";

Sentry.init({
dsn: "___PUBLIC_DSN___",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Select which Sentry features you'd like to install in addition to Error Monitori
<OnboardingOptionButtons options={["error-monitoring", "performance"]} />

```javascript {tabTitle: Deno} {"onboardingOptions": {"performance": "5-9" }}
import * as Sentry from "https://deno.land/x/sentry/index.mjs";
import * as Sentry from "npm:@sentry/deno";

Sentry.init({
dsn: "___PUBLIC_DSN___",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
```javascript
// Import from the Deno registry
import * as Sentry from "https://deno.land/x/sentry/index.mjs";

// or import from npm registry
import * as Sentry from "npm:@sentry/deno";

Sentry.init({
Expand Down
Loading