mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
d43b43ca78
Instead of using core/snapshot_creator.rs, instead two crates are introduced which allow building the snapshot during build.rs. Rollup is removed and replaced with our own bundler. This removes the Node build dependency. Modules in //js now use Deno-style imports with file extensions, rather than Node style extensionless imports. This improves incremental build time when changes are made to //js files by about 40 seconds.
27 lines
795 B
TypeScript
27 lines
795 B
TypeScript
// 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;
|
|
}
|
|
|
|
// 'build' is injected by rollup.config.js at compile time.
|
|
export const build: BuildInfo = {
|
|
// These string will be replaced by rollup
|
|
/* eslint-disable-next-line @typescript-eslint/no-explicit-any */
|
|
arch: `DENO_REPLACE_ARCH` as any,
|
|
/* eslint-disable-next-line @typescript-eslint/no-explicit-any */
|
|
os: `DENO_REPLACE_OS` as any
|
|
};
|
|
|
|
// TODO(kevinkassimo): deprecate Deno.platform
|
|
export const platform = build;
|