mirror of
https://github.com/denoland/deno.git
synced 2024-11-28 16:20:57 -05:00
cff6e280c7
Closes #26425 ## Overview This PR adds support for specifying multiple environment files as arguments when using the Deno CLI. Subsequent files override pre-existing variables defined in previous files. If the same variable is defined in the environment and in the file, the value from the environment takes precedence. ## Example Usage ```bash deno run --allow-env --env-file --env-file=".env.one" --env-file=".env.two" script.ts ``` --------- Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
3 lines
116 B
TypeScript
3 lines
116 B
TypeScript
console.log(Deno.env.get("FOO"));
|
|
console.log(Deno.env.get("ANOTHER_FOO"));
|
|
console.log(Deno.env.get("MULTILINE"));
|