We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a553a1b + a76c619 commit df01009Copy full SHA for df01009
.github/workflows/test.yml
@@ -13,7 +13,7 @@ jobs:
13
strategy:
14
matrix:
15
os: [macos-latest, windows-latest, ubuntu-latest]
16
- node-version: [20.x, 22.x]
+ node-version: [22.x, 24.x]
17
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
18
19
runs-on: ${{ matrix.os }}
layouts/partials/assets/server-headers.html
@@ -55,7 +55,9 @@
55
{{- end -}}
56
57
{{- if not (hasSuffix $key "-src") -}}
58
- {{- $settings = merge $settings (dict $key $vals) -}}
+ {{- $current := index $settings $key | default slice -}}
59
+ {{- $target := union $current $vals -}}
60
+ {{- $settings = merge $settings (dict $key $target) -}}
61
62
63
0 commit comments