mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 20:38:55 +00:00
233e5f6fea
Saves some keystrokes and easy to remember ``` cargo b --features hmr ```
20 lines
425 B
Rust
20 lines
425 B
Rust
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
use log::debug;
|
|
|
|
#[cfg(not(feature = "hmr"))]
|
|
static CLI_SNAPSHOT: &[u8] =
|
|
include_bytes!(concat!(env!("OUT_DIR"), "/CLI_SNAPSHOT.bin"));
|
|
|
|
pub fn deno_isolate_init() -> Option<&'static [u8]> {
|
|
debug!("Deno isolate init with snapshots.");
|
|
#[cfg(not(feature = "hmr"))]
|
|
{
|
|
Some(CLI_SNAPSHOT)
|
|
}
|
|
#[cfg(feature = "hmr")]
|
|
{
|
|
None
|
|
}
|
|
}
|