diff options
author | Liam Murphy <43807659+Liamolucko@users.noreply.github.com> | 2021-01-06 10:42:40 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-06 00:42:40 +0100 |
commit | 4c4791b5899afe585738ac0a15ba5c21d36952cc (patch) | |
tree | 92a0acb0abf54098ac5fd71016a4931c5f346e26 /std/node/tests | |
parent | 39bbbbce70c13575857b216b79ec21c37a923760 (diff) |
fix(std/node): resolve files in symlinked directories (#8840)
Diffstat (limited to 'std/node/tests')
l--------- | std/node/tests/cjs/dir | 1 | ||||
-rw-r--r-- | std/node/tests/cjs/subdir/dir/index.js | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/std/node/tests/cjs/dir b/std/node/tests/cjs/dir new file mode 120000 index 000000000..abec30059 --- /dev/null +++ b/std/node/tests/cjs/dir @@ -0,0 +1 @@ +./subdir/dir
\ No newline at end of file diff --git a/std/node/tests/cjs/subdir/dir/index.js b/std/node/tests/cjs/subdir/dir/index.js new file mode 100644 index 000000000..0b4d11386 --- /dev/null +++ b/std/node/tests/cjs/subdir/dir/index.js @@ -0,0 +1,4 @@ +// deno-lint-ignore-file no-undef +const C = require("../cjs_c"); + +module.exports = { C }; |