Skip to content

Commit 5ab38de

Browse files
authoredDec 10, 2024··
Fix Sass imports on the form index.{scss,sass}
Fixes #13123
1 parent 7b69218 commit 5ab38de

File tree

4 files changed

+30
-24
lines changed

4 files changed

+30
-24
lines changed
 

‎resources/resource_transformers/tocss/dartsass/dartsass_integration_test.go

+14-12
Original file line numberDiff line numberDiff line change
@@ -577,23 +577,25 @@ disableKinds = ['page','section','rss','sitemap','taxonomy','term']
577577
[[module.mounts]]
578578
source = 'assets'
579579
target = 'assets'
580-
581-
[[module.imports]]
582-
path = "github.com/gohugoio/hugoTestModule2"
583-
584-
[[module.imports.mounts]]
580+
[[module.mounts]]
585581
source = "miscellaneous/sass"
586582
target = "assets/sass"
587-
-- go.mod --
588-
module hugo-github-issue-12849
589583
-- layouts/index.html --
590584
{{ $opts := dict "transpiler" "dartsass" "outputStyle" "compressed" }}
591585
{{ (resources.Get "sass/main.scss" | toCSS $opts).Content }}
592586
-- assets/sass/main.scss --
593-
@use "foo"; // directory with index file from OS file system
594-
@use "bar"; // directory with index file from module mount
595-
-- assets/sass/foo/_index.scss --
596-
.foo {color: red;}
587+
@use "foo1"; // directory with _index file from OS file system
588+
@use "bar1"; // directory with _index file from module mount
589+
@use "foo2"; // directory with index file from OS file system
590+
@use "bar2"; // directory with index file from module mount
591+
-- assets/sass/foo1/_index.scss --
592+
.foo1 {color: red;}
593+
-- miscellaneous/sass/bar1/_index.scss --
594+
.bar1 {color: blue;}
595+
-- assets/sass/foo2/index.scss --
596+
.foo2 {color: red;}
597+
-- miscellaneous/sass/bar2/index.scss --
598+
.bar2 {color: blue;}
597599
`
598600

599601
b := hugolib.NewIntegrationTestBuilder(
@@ -603,7 +605,7 @@ module hugo-github-issue-12849
603605
TxtarString: files,
604606
}).Build()
605607

606-
b.AssertFileContent("public/index.html", ".foo{color:red}.bar{color:green}")
608+
b.AssertFileContent("public/index.html", ".foo1{color:red}.bar1{color:blue}.foo2{color:red}.bar2{color:blue}")
607609
}
608610

609611
func TestIgnoreDeprecationWarnings(t *testing.T) {

‎resources/resource_transformers/tocss/dartsass/transform.go

+1
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@ func (t importResolver) CanonicalizeURL(url string) (string, error) {
170170
"_%s.sass", "%s.sass",
171171
"_%s.css", "%s.css",
172172
"%s/_index.scss", "%s/_index.sass",
173+
"%s/index.scss", "%s/index.sass",
173174
}
174175
}
175176

‎resources/resource_transformers/tocss/scss/scss_integration_test.go

+14-12
Original file line numberDiff line numberDiff line change
@@ -432,23 +432,25 @@ disableKinds = ['page','section','rss','sitemap','taxonomy','term']
432432
[[module.mounts]]
433433
source = 'assets'
434434
target = 'assets'
435-
436-
[[module.imports]]
437-
path = "github.com/gohugoio/hugoTestModule2"
438-
439-
[[module.imports.mounts]]
435+
[[module.mounts]]
440436
source = "miscellaneous/sass"
441437
target = "assets/sass"
442-
-- go.mod --
443-
module hugo-github-issue-12849
444438
-- layouts/index.html --
445439
{{ $opts := dict "transpiler" "libsass" "outputStyle" "compressed" }}
446440
{{ (resources.Get "sass/main.scss" | toCSS $opts).Content }}
447441
-- assets/sass/main.scss --
448-
@import "foo"; // directory with index file from OS file system
449-
@import "bar"; // directory with index file from module mount
450-
-- assets/sass/foo/_index.scss --
451-
.foo {color: red;}
442+
@import "foo1"; // directory with _index file from OS file system
443+
@import "bar1"; // directory with _index file from module mount
444+
@import "foo2"; // directory with index file from OS file system
445+
@import "bar2"; // directory with index file from module mount
446+
-- assets/sass/foo1/_index.scss --
447+
.foo1 {color: red;}
448+
-- miscellaneous/sass/bar1/_index.scss --
449+
.bar1 {color: blue;}
450+
-- assets/sass/foo2/index.scss --
451+
.foo2 {color: red;}
452+
-- miscellaneous/sass/bar2/index.scss --
453+
.bar2 {color: blue;}
452454
`
453455

454456
b := hugolib.NewIntegrationTestBuilder(
@@ -458,5 +460,5 @@ module hugo-github-issue-12849
458460
TxtarString: files,
459461
}).Build()
460462

461-
b.AssertFileContent("public/index.html", ".foo{color:red}.bar{color:green}")
463+
b.AssertFileContent("public/index.html", ".foo1{color:red}.bar1{color:blue}.foo2{color:red}.bar2{color:blue}")
462464
}

‎resources/resource_transformers/tocss/scss/tocss.go

+1
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ func (t *toCSSTransformation) Transform(ctx *resources.ResourceTransformationCtx
109109
"_%s.scss", "%s.scss",
110110
"_%s.sass", "%s.sass",
111111
"%s/_index.scss", "%s/_index.sass",
112+
"%s/index.scss", "%s/index.sass",
112113
}
113114
}
114115

0 commit comments

Comments
 (0)
Please sign in to comment.