diff options
author | Matt Mastracci <matthew@mastracci.com> | 2024-03-13 21:23:37 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-14 04:23:37 +0100 |
commit | 66fd6f286641d4d2491d7b4bb314bd7e7eff16d8 (patch) | |
tree | b84aa4cac4c0a756539c91e5df4193d3636ae2bb /runtime/Cargo.toml | |
parent | 1f3c4c976313904d5df0b33b2cc0e282e62d1000 (diff) |
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 <matthew@mastracci.com>
Diffstat (limited to 'runtime/Cargo.toml')
-rw-r--r-- | runtime/Cargo.toml | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index c27ae1012..484266888 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -33,12 +33,8 @@ name = "deno_runtime" path = "lib.rs" [[example]] -name = "extension_with_esm" -path = "examples/extension_with_esm/main.rs" - -[[example]] -name = "extension_with_ops" -path = "examples/extension_with_ops/main.rs" +name = "extension" +path = "examples/extension/main.rs" [build-dependencies] deno_ast.workspace = true |