summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/npm/registry/@denotest/env-var-re-export/1.0.0/dev.cjs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2022-09-08 22:01:48 +0200
committerGitHub <noreply@github.com>2022-09-08 22:01:48 +0200
commit6c179daff07fe60d478142ea86231a34dc9ee1fd (patch)
tree39ff8701af61eec0674827b4ef62de1d4087e407 /cli/tests/testdata/npm/registry/@denotest/env-var-re-export/1.0.0/dev.cjs
parent93cbac69e8a53fbb393fc7a2f12654b223cf01ad (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/registry/@denotest/env-var-re-export/1.0.0/dev.cjs')
-rw-r--r--cli/tests/testdata/npm/registry/@denotest/env-var-re-export/1.0.0/dev.cjs5
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tests/testdata/npm/registry/@denotest/env-var-re-export/1.0.0/dev.cjs b/cli/tests/testdata/npm/registry/@denotest/env-var-re-export/1.0.0/dev.cjs
new file mode 100644
index 000000000..cf7b90970
--- /dev/null
+++ b/cli/tests/testdata/npm/registry/@denotest/env-var-re-export/1.0.0/dev.cjs
@@ -0,0 +1,5 @@
+module.exports = {
+ getEnv() {
+ return "dev";
+ },
+};