summaryrefslogtreecommitdiff
path: root/tests/registry/npm/@denotest/node-lifecycle-scripts/1.0.0/preinstall.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/registry/npm/@denotest/node-lifecycle-scripts/1.0.0/preinstall.js')
-rw-r--r--tests/registry/npm/@denotest/node-lifecycle-scripts/1.0.0/preinstall.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/registry/npm/@denotest/node-lifecycle-scripts/1.0.0/preinstall.js b/tests/registry/npm/@denotest/node-lifecycle-scripts/1.0.0/preinstall.js
new file mode 100644
index 000000000..e3a59c753
--- /dev/null
+++ b/tests/registry/npm/@denotest/node-lifecycle-scripts/1.0.0/preinstall.js
@@ -0,0 +1,5 @@
+if ("Deno" in globalThis && typeof globalThis.Deno === 'object') {
+ console.log('deno preinstall.js');
+} else {
+ console.log('node preinstall.js');
+} \ No newline at end of file