diff options
Diffstat (limited to 'runtime/js')
-rw-r--r-- | runtime/js/99_main.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/runtime/js/99_main.js b/runtime/js/99_main.js index 1d3cce8de..dee4efaa0 100644 --- a/runtime/js/99_main.js +++ b/runtime/js/99_main.js @@ -85,7 +85,6 @@ import { workerRuntimeGlobalProperties, } from "ext:runtime/98_global_scope_worker.js"; import { SymbolAsyncDispose, SymbolDispose } from "ext:deno_web/00_infra.js"; - // deno-lint-ignore prefer-primordials if (Symbol.dispose) throw "V8 supports Symbol.dispose now, no need to shim it!"; ObjectDefineProperties(Symbol, { @@ -173,6 +172,10 @@ function warnOnDeprecatedApi(apiName, stack, ...suggestions) { ); console.error(); + console.error( + "See the Deno 1 to 2 Migration Guide for more information at https://docs.deno.com/runtime/manual/advanced/migrate_deprecations", + ); + console.error(); if (stackLines.length > 0) { console.error("Stack trace:"); for (let i = 0; i < stackLines.length; i++) { |