mirror of
https://github.com/dolthub/dolt.git
synced 2026-02-10 03:09:35 -06:00
We are using babel-plugin-transform-inline-environment-variables which replaces `process.env.FOO` with the value of the `FOO` environment variable at compile time. However, due to our pipeline we end with something like: ```js var NAME = 'NOMS_VERSION_NEXT'; process.env[NAME] ``` which does not get replaced in development mode. If it was a const the transformer could replace it but var bindings can change.