From a7bb8ccce85c6e8bd619cce32d34a5d372ef85b7 Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Sat, 2 Mar 2019 09:33:28 +0900 Subject: Add Deno.version.gnArgs (#1845) To display specific build args passed to GN. --- js/version.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'js/version.ts') diff --git a/js/version.ts b/js/version.ts index 805e565a0..984550a74 100644 --- a/js/version.ts +++ b/js/version.ts @@ -3,12 +3,14 @@ interface Version { deno: string; v8: string; typescript: string; + gnArgs: string; } export const version: Version = { deno: "", v8: "", - typescript: "TS_VERSION" // This string will be replaced by rollup + typescript: "TS_VERSION", // This string will be replaced by rollup + gnArgs: `GN_ARGS` // This string will be replaced by rollup }; /** -- cgit v1.2.3