0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-01 12:16:11 -05:00

test from PR comment

This commit is contained in:
Ranadeep Biswas 2025-02-01 10:28:38 +01:00
parent 38fe31783b
commit 9c62f56cc4
No known key found for this signature in database
6 changed files with 13 additions and 0 deletions

View file

@ -0,0 +1,4 @@
{
"args": "run main.mts",
"output": "3\n"
}

View file

@ -0,0 +1,3 @@
import { add } from "package/add";
console.log(add(1, 2));

View file

@ -0,0 +1 @@
module.exports.add = require("./internal.cjs").add;

View file

@ -0,0 +1 @@
module.exports.add = (a, b) => a + b;

View file

@ -0,0 +1,3 @@
{
"type": "module"
}

View file

@ -0,0 +1 @@
{}