diff options
Diffstat (limited to 'js/version.ts')
-rw-r--r-- | js/version.ts | 4 |
1 files changed, 3 insertions, 1 deletions
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 }; /** |