summaryrefslogtreecommitdiff
path: root/tests/registry/npm/@denotest/bin/0.5.0
diff options
context:
space:
mode:
Diffstat (limited to 'tests/registry/npm/@denotest/bin/0.5.0')
-rw-r--r--tests/registry/npm/@denotest/bin/0.5.0/cli.mjs5
-rw-r--r--tests/registry/npm/@denotest/bin/0.5.0/package.json5
2 files changed, 10 insertions, 0 deletions
diff --git a/tests/registry/npm/@denotest/bin/0.5.0/cli.mjs b/tests/registry/npm/@denotest/bin/0.5.0/cli.mjs
new file mode 100644
index 000000000..0ae8e9190
--- /dev/null
+++ b/tests/registry/npm/@denotest/bin/0.5.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.5.0/package.json b/tests/registry/npm/@denotest/bin/0.5.0/package.json
new file mode 100644
index 000000000..1b077a52e
--- /dev/null
+++ b/tests/registry/npm/@denotest/bin/0.5.0/package.json
@@ -0,0 +1,5 @@
+{
+ "name": "@denotest/bin",
+ "version": "0.5.0",
+ "bin": "./cli.mjs"
+}