From 80cadec2087c0fcdb310c53de00e38e1af4305ca Mon Sep 17 00:00:00 2001 From: Thomas Heymann Date: Fri, 25 Aug 2017 09:23:15 +0100 Subject: [PATCH] BREAKING: do not preserve symlinks as per Node's default behaviour --- lib/resolve-id.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/resolve-id.js b/lib/resolve-id.js index 5d9546f4..5819a2af 100644 --- a/lib/resolve-id.js +++ b/lib/resolve-id.js @@ -24,6 +24,7 @@ module.exports = function(id, base, options) { else if (!pkg.main || !/\.css$/.test(pkg.main)) pkg.main = "index.css" return pkg }, + preserveSymlinks: false, } return resolveModule(`./${id}`, resolveOpts)