1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/cli/js/build.ts

25 lines
498 B
TypeScript
Raw Normal View History

2020-01-02 15:13:47 -05:00
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
export type OperatingSystem = "mac" | "win" | "linux";
export type Arch = "x64" | "arm64";
// Do not add unsupported platforms.
export interface BuildInfo {
arch: Arch;
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);
}