diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-08-15 22:47:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-15 23:47:16 +0200 |
commit | 2bb013f9baa927fc7b392766b0182b91380b9aa8 (patch) | |
tree | ca8a7ea961b50213adf0904d724974c317cefb55 /runtime/js/99_main.js | |
parent | 5ec3c5c3a46ca95f355a4520676b85ac619ca102 (diff) |
refactor: `version` module exports a single const struct (#25014)
This commit rewrites the internal `version` module that exported
various information about the current executable. Instead of exporting
several consts, we are now exporting a single const structure that
contains all the necessary information.
This is the first step towards cleaning up how we use this information
and should allow us to use SUI to be able to patch this information
in already produced binary making it easier to cut new releases.
---------
Co-authored-by: Divy Srivastava <dj.srivastava23@gmail.com>
Diffstat (limited to 'runtime/js/99_main.js')
-rw-r--r-- | runtime/js/99_main.js | 53 |
1 files changed, 27 insertions, 26 deletions
diff --git a/runtime/js/99_main.js b/runtime/js/99_main.js index 5e25a3818..013f4996f 100644 --- a/runtime/js/99_main.js +++ b/runtime/js/99_main.js @@ -672,7 +672,6 @@ ObjectDefineProperties(finalDenoNs, { }); const { - denoVersion, tsVersion, v8Version, target, @@ -697,21 +696,22 @@ function bootstrapMainRuntime(runtimeOptions, warmup = false) { } const { - 0: location_, - 1: unstableFlag, - 2: unstableFeatures, - 3: inspectFlag, - 5: hasNodeModulesDir, - 6: argv0, - 7: nodeDebug, - 8: shouldDisableDeprecatedApiWarning, - 9: shouldUseVerboseDeprecatedApiWarning, - 10: future, - 11: mode, - 12: servePort, - 13: serveHost, - 14: serveIsMain, - 15: serveWorkerCount, + 0: denoVersion, + 1: location_, + 2: unstableFlag, + 3: unstableFeatures, + 4: inspectFlag, + 6: hasNodeModulesDir, + 7: argv0, + 8: nodeDebug, + 9: shouldDisableDeprecatedApiWarning, + 10: shouldUseVerboseDeprecatedApiWarning, + 11: future, + 12: mode, + 13: servePort, + 14: serveHost, + 15: serveIsMain, + 16: serveWorkerCount, } = runtimeOptions; if (mode === executionModes.serve) { @@ -970,16 +970,17 @@ function bootstrapWorkerRuntime( } const { - 0: location_, - 1: unstableFlag, - 2: unstableFeatures, - 4: enableTestingFeaturesFlag, - 5: hasNodeModulesDir, - 6: argv0, - 7: nodeDebug, - 8: shouldDisableDeprecatedApiWarning, - 9: shouldUseVerboseDeprecatedApiWarning, - 10: future, + 0: denoVersion, + 1: location_, + 2: unstableFlag, + 3: unstableFeatures, + 5: enableTestingFeaturesFlag, + 6: hasNodeModulesDir, + 7: argv0, + 8: nodeDebug, + 9: shouldDisableDeprecatedApiWarning, + 10: shouldUseVerboseDeprecatedApiWarning, + 11: future, } = runtimeOptions; // TODO(iuioiua): remove in Deno v2. This allows us to dynamically delete |