mirror of
https://github.com/denoland/deno.git
synced 2025-07-24 13:44:08 +00:00
Merge deno_cli_snapshots into deno_cli (#3064)
This commit is contained in:
parent
9049213867
commit
b81e5db17a
148 changed files with 38 additions and 83 deletions
27
cli/js/build.ts
Normal file
27
cli/js/build.ts
Normal file
|
@ -0,0 +1,27 @@
|
|||
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
||||
|
||||
export type OperatingSystem = "mac" | "win" | "linux";
|
||||
|
||||
export type Arch = "x64" | "arm64";
|
||||
|
||||
// Do not add unsupported platforms.
|
||||
/** Build related information */
|
||||
export interface BuildInfo {
|
||||
/** The CPU architecture. */
|
||||
arch: Arch;
|
||||
|
||||
/** The operating system. */
|
||||
os: OperatingSystem;
|
||||
}
|
||||
|
||||
export const build: BuildInfo = {
|
||||
arch: "" as Arch,
|
||||
os: "" as OperatingSystem
|
||||
};
|
||||
|
||||
export function setBuildInfo(os: OperatingSystem, arch: Arch): void {
|
||||
build.os = os;
|
||||
build.arch = arch;
|
||||
|
||||
Object.freeze(build);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue