diff options
author | Bartek Iwańczuk <biwanczuk@gmail.com> | 2023-03-18 15:25:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-18 20:25:28 +0100 |
commit | f6c364fcf6d9eb341d982f7b2084166ca2d25822 (patch) | |
tree | eaaa9eefeca0a68efd09750626082761021d090f /runtime/build.rs | |
parent | 00f4c0df97a7b47495e077a8237142995cb78077 (diff) |
Revert "perf(core): use static specifier in ExtensionFileSource (#182… (#18270)
…64)"
This reverts commit 8af0c8351935ea7c6c0441055d5164908322c9d6.
Causes bench stage to fail on CI.
Diffstat (limited to 'runtime/build.rs')
-rw-r--r-- | runtime/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/build.rs b/runtime/build.rs index e655856b5..df5a0c299 100644 --- a/runtime/build.rs +++ b/runtime/build.rs @@ -248,7 +248,7 @@ mod startup_snapshot { deps = [runtime], customizer = |ext: &mut deno_core::ExtensionBuilder| { ext.esm(vec![ExtensionFileSource { - specifier: "ext:runtime_main/js/99_main.js", + specifier: "js/99_main.js".to_string(), code: deno_core::ExtensionFileSourceCode::IncludedInBinary( include_str!("js/99_main.js"), ), |