From 66fd6f286641d4d2491d7b4bb314bd7e7eff16d8 Mon Sep 17 00:00:00 2001 From: Matt Mastracci Date: Wed, 13 Mar 2024 21:23:37 -0600 Subject: fix(cli): unbreak extension example and fix __runtime_js_sources (#22906) Better example to close https://github.com/denoland/deno/issues/22600 --------- Signed-off-by: Matt Mastracci --- runtime/examples/extension_with_esm/bootstrap.js | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 runtime/examples/extension_with_esm/bootstrap.js (limited to 'runtime/examples/extension_with_esm/bootstrap.js') diff --git a/runtime/examples/extension_with_esm/bootstrap.js b/runtime/examples/extension_with_esm/bootstrap.js deleted file mode 100644 index 7cbff9cb3..000000000 --- a/runtime/examples/extension_with_esm/bootstrap.js +++ /dev/null @@ -1,5 +0,0 @@ -// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. -function hello() { - console.log("Hello from extension!"); -} -globalThis.Extension = { hello }; -- cgit v1.2.3