Skip to content

Commit

Permalink
SCSS: rename files to avoid conflict with jekyll (#35)
Browse files Browse the repository at this point in the history
It seems something has changed in jekyll or its dependencies, such that,
without this chane `jekyll serve` fails:

jekyll/converters/scss.rb:175:in `rescue in convert': expected "{".
(Jekyll::Converters::Scss::SyntaxError)

It is unclear precisely why this change is required, but it looks as
though it disambiguates between the same-named files used elsewhere.
  • Loading branch information
ThomasAdam authored Apr 9, 2024
1 parent 70c312a commit 1187e5b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion css/fvwm3-carousel.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@

// Import partials from `_sass`
@import
"fvwm3-carousel"
"_fvwm3-carousel"
;
6 changes: 3 additions & 3 deletions css/fvwm3.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

// Import partials from `_sass`
@import
"fvwmvars",
"fvwm3",
"fvwmwindow"
"_fvwmvars",
"_fvwm3",
"_fvwmwindow"
;
4 changes: 2 additions & 2 deletions css/monokai.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@

// Import partials from `_sass`
@import
"fvwmvars",
"monokai"
"_fvwmvars",
"_monokai"
;

0 comments on commit 1187e5b

Please sign in to comment.