Skip to content

Commit 3014d01

Browse files
authored
Merge pull request #3538 from afbjorklund/website-hugo
Update docsy to version 0.11.0 and hugo to 0.133.1
2 parents 8be84a2 + c4f2855 commit 3014d01

File tree

6 files changed

+141
-312
lines changed

6 files changed

+141
-312
lines changed

website/Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,15 @@
33
# See also: package.json
44
NPM ?= npm
55

6-
build serve: _output/docsy
6+
build serve: _output/docsy node_modules/.bin/hugo
77
$(NPM) run $@
88

99
_output/docsy:
1010
$(MAKE) -C .. docsy
1111

12+
node_modules/.bin/hugo:
13+
$(NPM) install
14+
1215
clean:
1316
$(NPM) run $@
1417
rm -Rf _output

website/go.mod

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
module github.com/lima-vm/lima/website
22

3-
go 1.20
3+
go 1.23.0
44

55
require (
6-
github.com/FortAwesome/Font-Awesome v0.0.0-20230327165841-0698449d50f2 // indirect
7-
github.com/google/docsy v0.7.1 // indirect
8-
github.com/twbs/bootstrap v5.2.3+incompatible // indirect
6+
github.com/google/docsy v0.11.0
7+
)
8+
9+
require (
10+
github.com/FortAwesome/Font-Awesome v0.0.0-20240716171331-37eff7fa00de // indirect
11+
github.com/google/docsy/dependencies v0.7.2 // indirect
12+
github.com/twbs/bootstrap v5.3.6+incompatible // indirect
913
)

website/go.sum

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
github.com/FortAwesome/Font-Awesome v0.0.0-20230327165841-0698449d50f2 h1:Uv1z5EqCfmiK4IHUwT0m3h/u/WCk+kpRfxvAZhpC7Gc=
2-
github.com/FortAwesome/Font-Awesome v0.0.0-20230327165841-0698449d50f2/go.mod h1:IUgezN/MFpCDIlFezw3L8j83oeiIuYoj28Miwr/KUYo=
3-
github.com/google/docsy v0.7.1 h1:DUriA7Nr3lJjNi9Ulev1SfiG1sUYmvyDeU4nTp7uDxY=
4-
github.com/google/docsy v0.7.1/go.mod h1:JCmE+c+izhE0Rvzv3y+AzHhz1KdwlA9Oj5YBMklJcfc=
5-
github.com/google/docsy/dependencies v0.7.1/go.mod h1:gihhs5gmgeO+wuoay4FwOzob+jYJVyQbNaQOh788lD4=
6-
github.com/twbs/bootstrap v5.2.3+incompatible h1:lOmsJx587qfF7/gE7Vv4FxEofegyJlEACeVV+Mt7cgc=
7-
github.com/twbs/bootstrap v5.2.3+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0=
1+
github.com/FortAwesome/Font-Awesome v0.0.0-20240716171331-37eff7fa00de h1:JvHOfdSqvArF+7cffH9oWU8oLhn6YFYI60Pms8M/6tI=
2+
github.com/FortAwesome/Font-Awesome v0.0.0-20240716171331-37eff7fa00de/go.mod h1:IUgezN/MFpCDIlFezw3L8j83oeiIuYoj28Miwr/KUYo=
3+
github.com/google/docsy v0.11.0 h1:QnV40cc28QwS++kP9qINtrIv4hlASruhC/K3FqkHAmM=
4+
github.com/google/docsy v0.11.0/go.mod h1:hGGW0OjNuG5ZbH5JRtALY3yvN8ybbEP/v2iaK4bwOUI=
5+
github.com/google/docsy/dependencies v0.7.2 h1:+t5ufoADQAj4XneFphz4A+UU0ICAxmNaRHVWtMYXPSI=
6+
github.com/google/docsy/dependencies v0.7.2/go.mod h1:gihhs5gmgeO+wuoay4FwOzob+jYJVyQbNaQOh788lD4=
7+
github.com/twbs/bootstrap v5.3.6+incompatible h1:efmXVyq839m5QQ0+JBUdQQ1TrmoBqvQ5kRhUueKsH+4=
8+
github.com/twbs/bootstrap v5.3.6+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0=

website/hugo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,6 @@ github_subdir = "website"
116116
# or specify a new value if you want to reference another branch in your GitHub links
117117
github_branch= "master"
118118

119-
# Enable Algolia DocSearch
120-
algolia_docsearch = false
121-
122119
# Enable Lunr.js offline search
123120
offlineSearch = true
124121

0 commit comments

Comments
 (0)