summaryrefslogtreecommitdiff
path: root/tests/registry
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2024-11-19 09:57:12 -0500
committerGitHub <noreply@github.com>2024-11-19 09:57:12 -0500
commit186b52731c6bb326c4d32905c5e732d082e83465 (patch)
tree043316c7fc58f18e29c42f35ebfbc6b68eddcca1 /tests/registry
parent661aa22c03f829489e2d9289dee0a8292a95227a (diff)
fix(node): handle resolving ".//<something>" in npm packages (#26920)
The issue was this package had an import like: `".//index.js"` and we resolved that as specified, but node normalizes it to `"./index.js"` so we have to copy node.
Diffstat (limited to 'tests/registry')
-rw-r--r--tests/registry/npm/@denotest/specifier-two-slashes/1.0.0/index.js2
-rw-r--r--tests/registry/npm/@denotest/specifier-two-slashes/1.0.0/other.js3
-rw-r--r--tests/registry/npm/@denotest/specifier-two-slashes/1.0.0/package.json6
3 files changed, 11 insertions, 0 deletions
diff --git a/tests/registry/npm/@denotest/specifier-two-slashes/1.0.0/index.js b/tests/registry/npm/@denotest/specifier-two-slashes/1.0.0/index.js
new file mode 100644
index 000000000..aca5ca1b8
--- /dev/null
+++ b/tests/registry/npm/@denotest/specifier-two-slashes/1.0.0/index.js
@@ -0,0 +1,2 @@
+// node.js will resolve this as ./other.js
+export * from ".//other.js"; \ No newline at end of file
diff --git a/tests/registry/npm/@denotest/specifier-two-slashes/1.0.0/other.js b/tests/registry/npm/@denotest/specifier-two-slashes/1.0.0/other.js
new file mode 100644
index 000000000..7d658310b
--- /dev/null
+++ b/tests/registry/npm/@denotest/specifier-two-slashes/1.0.0/other.js
@@ -0,0 +1,3 @@
+export function add(a, b) {
+ return a + b;
+}
diff --git a/tests/registry/npm/@denotest/specifier-two-slashes/1.0.0/package.json b/tests/registry/npm/@denotest/specifier-two-slashes/1.0.0/package.json
new file mode 100644
index 000000000..55e46b2fd
--- /dev/null
+++ b/tests/registry/npm/@denotest/specifier-two-slashes/1.0.0/package.json
@@ -0,0 +1,6 @@
+{
+ "name": "@denotest/specifier-two-slashes",
+ "version": "1.0.0",
+ "type": "module",
+ "main": "index.js"
+} \ No newline at end of file