diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2023-11-20 05:00:05 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-20 14:00:05 +0100 |
commit | 86450f4e5963f7842973d816c2a7ae622a68b296 (patch) | |
tree | 01d63eef418ca9db7356292ceca699b564bb7077 /runtime/ops/bootstrap.rs | |
parent | 0205cff83413371b6f85454c595ffe7058f44de2 (diff) |
chore: fix `__runtime_js_sources` feature flag (#21265)
Diffstat (limited to 'runtime/ops/bootstrap.rs')
-rw-r--r-- | runtime/ops/bootstrap.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/ops/bootstrap.rs b/runtime/ops/bootstrap.rs index 066488d09..64536e721 100644 --- a/runtime/ops/bootstrap.rs +++ b/runtime/ops/bootstrap.rs @@ -29,7 +29,7 @@ deno_core::extension!( }, ); -#[derive(Serialize)] +#[derive(Serialize, Default)] #[serde(rename_all = "camelCase")] pub struct SnapshotOptions { pub deno_version: String, |