mirror of
https://github.com/denoland/deno.git
synced 2024-11-04 08:54:20 -05:00
c9ef182886
- Fixes cargo publish on deno_typescript, deno_cli_snapshots, and deno_cli. - Combines cli_snapshots and js into one directory. - Extracts TS version at compile time rather than runtime - Bumps version awkwardly - it was necessary to test end-to-end publishing. Sorry. - Adds git submodule deno_typescript/typescript
7 lines
240 B
Rust
7 lines
240 B
Rust
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
pub const DENO: &str = env!("CARGO_PKG_VERSION");
|
|
pub const TYPESCRIPT: &str = deno_cli_snapshots::TS_VERSION;
|
|
|
|
pub fn v8() -> &'static str {
|
|
deno::v8_version()
|
|
}
|