forked from gohugoio/hugo
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes gohugoio#12626 Closes gohugoio#7499 Closes gohugoio#12874
- Loading branch information
Showing
38 changed files
with
3,230 additions
and
921 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{{ range $i, $e := .Scripts -}} | ||
{{ if eq .Export "*" }} | ||
{{ printf "import %s as Script%d from %q;" .Export $i .Import }} | ||
{{ else }} | ||
{{ printf "import { %s as Script%d } from %q;" .Export $i .Import }} | ||
{{ end }} | ||
{{ end -}} | ||
{{ range $i, $e := .Runners }} | ||
{{ printf "import { %s as Run%d } from %q;" .Export $i .Import }} | ||
{{ end }} | ||
{{/* */}} | ||
{{ if .Runners }} | ||
let scripts = []; | ||
{{ range $i, $e := .Scripts -}} | ||
scripts.push({{ .RunnerJSON $i }}); | ||
{{ end -}} | ||
{{/* */}} | ||
{{ range $i, $e := .Runners }} | ||
{{ $id := printf "Run%d" $i }} | ||
{{ $id }}(scripts); | ||
{{ end }} | ||
{{ end }} |
Oops, something went wrong.