summaryrefslogtreecommitdiff
path: root/tests/registry/npm/@denotest/bin/0.6.0
diff options
context:
space:
mode:
Diffstat (limited to 'tests/registry/npm/@denotest/bin/0.6.0')
-rw-r--r--tests/registry/npm/@denotest/bin/0.6.0/cli-cjs.js5
-rw-r--r--tests/registry/npm/@denotest/bin/0.6.0/cli.mjs5
-rw-r--r--tests/registry/npm/@denotest/bin/0.6.0/package.json4
3 files changed, 14 insertions, 0 deletions
diff --git a/tests/registry/npm/@denotest/bin/0.6.0/cli-cjs.js b/tests/registry/npm/@denotest/bin/0.6.0/cli-cjs.js
new file mode 100644
index 000000000..7b6ba2724
--- /dev/null
+++ b/tests/registry/npm/@denotest/bin/0.6.0/cli-cjs.js
@@ -0,0 +1,5 @@
+const process = require("process");
+
+for (const arg of process.argv.slice(2)) {
+ console.log(arg);
+}
diff --git a/tests/registry/npm/@denotest/bin/0.6.0/cli.mjs b/tests/registry/npm/@denotest/bin/0.6.0/cli.mjs
new file mode 100644
index 000000000..0ae8e9190
--- /dev/null
+++ b/tests/registry/npm/@denotest/bin/0.6.0/cli.mjs
@@ -0,0 +1,5 @@
+import process from "node:process";
+
+for (const arg of process.argv.slice(2)) {
+ console.log(arg);
+}
diff --git a/tests/registry/npm/@denotest/bin/0.6.0/package.json b/tests/registry/npm/@denotest/bin/0.6.0/package.json
new file mode 100644
index 000000000..a9ff2d946
--- /dev/null
+++ b/tests/registry/npm/@denotest/bin/0.6.0/package.json
@@ -0,0 +1,4 @@
+{
+ "name": "@denotest/bin",
+ "version": "0.6.0"
+}