diff options
Diffstat (limited to 'ext/node/build.rs')
-rw-r--r-- | ext/node/build.rs | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/ext/node/build.rs b/ext/node/build.rs deleted file mode 100644 index e9b960cab..000000000 --- a/ext/node/build.rs +++ /dev/null @@ -1,10 +0,0 @@ -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. - -fn main() { - // we use a changing variable name to make it harder to depend on this - let crate_version = env!("CARGO_PKG_VERSION"); - println!( - "cargo:rustc-env=NODE_GLOBAL_THIS_NAME=__DENO_NODE_GLOBAL_THIS_{}__", - crate_version.replace('.', "_") - ); -} |