diff --git a/docs/migration/v8-to-v9.md b/docs/migration/v8-to-v9.md index 77f1607e9169..ad706e05ff86 100644 --- a/docs/migration/v8-to-v9.md +++ b/docs/migration/v8-to-v9.md @@ -163,6 +163,10 @@ Object.defineProperty(exports, '__esModule', { value: true }); The SDK no longer contains these statements. Let us know if this is causing issues in your setup by opening an issue on GitHub. +### `@sentry/deno` + +- The Sentry import from the deno registry has changed from `import * as Sentry from 'https://deno.land/x/sentry/index.mjs'` to `import * as Sentry from 'https://deno.land/x/sentry/build/index.mjs'` + ## 6. Type Changes In v8, types have been exported from `@sentry/types`, while implementations have been exported from other classes. diff --git a/packages/deno/README.md b/packages/deno/README.md index 502778cf8abb..b1f0ac5ddb0d 100644 --- a/packages/deno/README.md +++ b/packages/deno/README.md @@ -26,7 +26,7 @@ and hook into the environment. Note that you can turn off almost all side effect ```javascript // Import from the Deno registry -import * as Sentry from 'https://deno.land/x/sentry/index.mjs'; +import * as Sentry from 'https://deno.land/x/sentry/build/index.mjs'; // or import from npm registry import * as Sentry from 'npm:@sentry/deno';