diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-09-08 22:01:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-08 22:01:48 +0200 |
commit | 6c179daff07fe60d478142ea86231a34dc9ee1fd (patch) | |
tree | 39ff8701af61eec0674827b4ef62de1d4087e407 /cli/tests/testdata/npm/env_var_re_export/main.js | |
parent | 93cbac69e8a53fbb393fc7a2f12654b223cf01ad (diff) |
fix(npm): recursive translation of reexports, remove window global in node code (#15806)
Co-authored-by: David Sherret <dsherret@gmail.com>
Diffstat (limited to 'cli/tests/testdata/npm/env_var_re_export/main.js')
-rw-r--r-- | cli/tests/testdata/npm/env_var_re_export/main.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/tests/testdata/npm/env_var_re_export/main.js b/cli/tests/testdata/npm/env_var_re_export/main.js new file mode 100644 index 000000000..ed91487a0 --- /dev/null +++ b/cli/tests/testdata/npm/env_var_re_export/main.js @@ -0,0 +1,3 @@ +import { getEnv } from "npm:@denotest/env-var-re-export"; + +console.log(getEnv()); |