transpile sass: Fixes typo

This commit is contained in:
Andreas Deininger 2023-07-06 08:51:32 +02:00 committed by Bjørn Erik Pedersen
parent e4a8a21f7e
commit f96fa68053
2 changed files with 6 additions and 6 deletions

View File

@ -102,7 +102,7 @@ jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
env: env:
HUGO_VERSION: 0.114.0 HUGO_VERSION: 0.115.1
steps: steps:
- name: Install Hugo CLI - name: Install Hugo CLI
run: | run: |

View File

@ -133,8 +133,8 @@ To install Dart Sass for your builds on GitLab Pages, the `.gitlab-ci.yml` file
```yaml ```yaml
variables: variables:
HUGO_VERSION: 0.114.0 HUGO_VERSION: 0.115.1
DART_SASS_VERSION: 1.63.5 DART_SASS_VERSION: 1.63.6
GIT_DEPTH: 0 GIT_DEPTH: 0
GIT_STRATEGY: clone GIT_STRATEGY: clone
GIT_SUBMODULE_STRATEGY: recursive GIT_SUBMODULE_STRATEGY: recursive
@ -167,8 +167,8 @@ To install Dart Sass for your builds on Netlify, the `netlify.toml` file should
```toml ```toml
[build.environment] [build.environment]
HUGO_VERSION = "0.114.0" HUGO_VERSION = "0.115.1"
DART_SASS_VERSION = "1.63.5" DART_SASS_VERSION = "1.63.6"
TZ = "America/Los_Angeles" TZ = "America/Los_Angeles"
[build] [build]
@ -184,7 +184,7 @@ command = """\
### Example ### Example
To tranpile with Dart Sass, set `transpiler` to `dartsass` in the options map passed to `resources.ToCSS`. For example: To transpile with Dart Sass, set `transpiler` to `dartsass` in the options map passed to `resources.ToCSS`. For example:
```go-html-template ```go-html-template
{{ $options := dict "transpiler" "dartsass" "targetPath" "css/style.css" }} {{ $options := dict "transpiler" "dartsass" "targetPath" "css/style.css" }}