blob: 636f9a0825ba2f448b5d9a22dd7307cfa8a83b0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
// Do not add unsupported platforms.
/** Build related information */
export interface BuildInfo {
/** The operating system CPU architecture. */
arch: "x64";
/** The operating system platform. */
os: "mac" | "win" | "linux";
/** The GN build arguments */
gnArgs: string;
}
// 'build' is injected by rollup.config.js at compile time.
export const build: BuildInfo = {
// tslint:disable:no-any
// These string will be replaced by rollup
arch: `ROLLUP_REPLACE_ARCH` as any,
os: `ROLLUP_REPLACE_OS` as any,
gnArgs: `ROLLUP_REPLACE_GN_ARGS`
// tslint:disable:any
};
// TODO(kevinkassimo): deprecate Deno.platform
export const platform = build;
|