@rollup/plugin-node-resolve
Advanced tools
Comparing version 7.1.2 to 7.1.3
# @rollup/plugin-node-resolve ChangeLog | ||
## v7.1.3 | ||
_2020-04-12_ | ||
### Bugfixes | ||
- fix: resolve symlinked entry point properly (#291) | ||
## v7.1.2 | ||
@@ -4,0 +12,0 @@ |
@@ -287,3 +287,9 @@ import { dirname, resolve, extname, normalize, sep } from 'path'; | ||
return resolveId(importSpecifierList[i], resolveOptions); | ||
return resolveId(importSpecifierList[i], resolveOptions).then(result => { | ||
if (!resolveOptions.preserveSymlinks) { | ||
result = realpathSync(result); | ||
} | ||
return result; | ||
}); | ||
}); | ||
@@ -290,0 +296,0 @@ |
@@ -292,3 +292,9 @@ 'use strict'; | ||
return resolveId(importSpecifierList[i], resolveOptions); | ||
return resolveId(importSpecifierList[i], resolveOptions).then(result => { | ||
if (!resolveOptions.preserveSymlinks) { | ||
result = fs.realpathSync(result); | ||
} | ||
return result; | ||
}); | ||
}); | ||
@@ -295,0 +301,0 @@ |
{ | ||
"name": "@rollup/plugin-node-resolve", | ||
"version": "7.1.2", | ||
"version": "7.1.3", | ||
"publishConfig": { | ||
@@ -58,4 +58,4 @@ "access": "public" | ||
"devDependencies": { | ||
"@babel/core": "^7.8.3", | ||
"@babel/preset-env": "^7.8.3", | ||
"@babel/core": "^7.9.0", | ||
"@babel/preset-env": "^7.9.0", | ||
"@rollup/plugin-json": "^4.0.1", | ||
@@ -62,0 +62,0 @@ "es5-ext": "^0.10.53", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
54866
1035