Skip to content

Commit bb7b4c2

Browse files
TrySoundLarsDenBakker
authored andcommitted
fix(node-resolve): resolve symlinked entry point properly (rollup#291)
The regression appeared here uuidjs/uuid#402 (comment) after upgrading from `rollup-plugin-node-resolve` to `@rollup/plugin-node-solve` Dependencies entry points are resolved into symlinked path when browser field map contains paths resolved into real paths.
1 parent ee30d40 commit bb7b4c2

File tree

4 files changed

+24
-1
lines changed

4 files changed

+24
-1
lines changed

packages/node-resolve/src/util.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,12 @@ export function resolveImportSpecifiers(importSpecifierList, resolveOptions) {
171171
return value;
172172
}
173173

174-
return resolveId(importSpecifierList[i], resolveOptions);
174+
return resolveId(importSpecifierList[i], resolveOptions).then((result) => {
175+
if (!resolveOptions.preserveSymlinks) {
176+
result = realpathSync(result);
177+
}
178+
return result;
179+
});
175180
});
176181

177182
if (i < importSpecifierList.length - 1) {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export default 'not random string';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"name": "second",
3+
"main": "./index.js",
4+
"browser": {
5+
"./index.js": "./index.browser.js"
6+
}
7+
}

packages/node-resolve/test/symlinks.js

+10
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,16 @@ test.serial('resolves symlinked packages', async (t) => {
5353
t.is(module.exports.number1, module.exports.number2);
5454
});
5555

56+
test.serial('resolves symlinked packages with browser object', async (t) => {
57+
const bundle = await rollup({
58+
input: 'symlinked/first/index.js',
59+
onwarn: () => t.fail('No warnings were expected'),
60+
plugins: [nodeResolve({ browser: true })]
61+
});
62+
const { module } = await testBundle(t, bundle);
63+
t.is(module.exports.number1, 'not random string');
64+
});
65+
5666
test.serial('preserves symlinks if `preserveSymlinks` is true', async (t) => {
5767
const bundle = await rollup({
5868
input: 'symlinked/first/index.js',

0 commit comments

Comments
 (0)