diff options
author | Bjørn Erik Pedersen <[email protected]> | 2020-11-13 08:54:29 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-11-13 08:54:29 +0100 |
commit | 78f227b664d86c30fbb25f7a953b7ef8f2dacf13 (patch) | |
tree | 20c298b724513402830072a4d6768e6642851689 /resources/resource_transformers/tocss/scss/tocss.go | |
parent | 5e03f644a4507f51bdbcdb42b65ce4e99095374f (diff) | |
download | hugo-78f227b664d86c30fbb25f7a953b7ef8f2dacf13.tar.gz hugo-78f227b664d86c30fbb25f7a953b7ef8f2dacf13.zip |
js: Let ESBuild handle all imports from node_modules
This commit fixes some issues where modules in /assets share the same name as in node_modules.
This was not intended, and with this commit the node_modules-components should be isolated. If you want to redefine something inside node_modules, use the `defines` option.
Fixes #7948
Diffstat (limited to 'resources/resource_transformers/tocss/scss/tocss.go')
-rw-r--r-- | resources/resource_transformers/tocss/scss/tocss.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/resource_transformers/tocss/scss/tocss.go b/resources/resource_transformers/tocss/scss/tocss.go index 20f0efbb9..fc7a19f33 100644 --- a/resources/resource_transformers/tocss/scss/tocss.go +++ b/resources/resource_transformers/tocss/scss/tocss.go @@ -76,7 +76,7 @@ func (t *toCSSTransformation) Transform(ctx *resources.ResourceTransformationCtx if prev == "stdin" { prevDir = baseDir } else { - prevDir = t.c.sfs.MakePathRelative(filepath.Dir(prev)) + prevDir, _ = t.c.sfs.MakePathRelative(filepath.Dir(prev)) if prevDir == "" { // Not a member of this filesystem. Let LibSASS handle it. |