Meta: Move all theme dependencies to module imports
This commit is contained in:
parent
8125f9035c
commit
f97e815e06
3 changed files with 18 additions and 6 deletions
6
go.mod
6
go.mod
|
@ -1,3 +1,9 @@
|
|||
module github.com/erynofwales/hugo-test-site/v2
|
||||
|
||||
go 1.22.5
|
||||
|
||||
require (
|
||||
github.com/erynofwales/hugo-commandbar/v2 v2.0.0-20240807181222-5d2b0e1883cd // indirect
|
||||
github.com/erynofwales/hugo-resource-builders/v2 v2.0.0-20240807181356-8ae8136b8a70 // indirect
|
||||
github.com/erynofwales/hugo-theme-termlite/v2 v2.0.0-20240807183649-c348571be6af // indirect
|
||||
)
|
||||
|
|
10
go.sum
Normal file
10
go.sum
Normal file
|
@ -0,0 +1,10 @@
|
|||
github.com/erynofwales/hugo-commandbar/v2 v2.0.0-20240807181222-5d2b0e1883cd h1:BMaSDj5tVXlTglL0pJCk3RvjhKLuWSrLHC8nHuxKqKI=
|
||||
github.com/erynofwales/hugo-commandbar/v2 v2.0.0-20240807181222-5d2b0e1883cd/go.mod h1:RYcxU4aU5m7u+phpIezmicHPRO6lcc/wUwDyYgMm59U=
|
||||
github.com/erynofwales/hugo-resource-builders/v2 v2.0.0-20240803231744-42f70cc8fb1d h1:m/HK/5sbD+hLfW61dXNL0py93dBKy3kKf40zw4Fpnlo=
|
||||
github.com/erynofwales/hugo-resource-builders/v2 v2.0.0-20240803231744-42f70cc8fb1d/go.mod h1:5sWk4NdGyGeXVA88py/84BRcoULSMI3/OnqlziPg9AE=
|
||||
github.com/erynofwales/hugo-resource-builders/v2 v2.0.0-20240807181356-8ae8136b8a70 h1:T5hZlCOxwAzJ/okWc+CIJl58o6xfzLbzkrcpsEiUd9k=
|
||||
github.com/erynofwales/hugo-resource-builders/v2 v2.0.0-20240807181356-8ae8136b8a70/go.mod h1:5sWk4NdGyGeXVA88py/84BRcoULSMI3/OnqlziPg9AE=
|
||||
github.com/erynofwales/hugo-theme-termlite/v2 v2.0.0-20240807183033-64d002ded2d2 h1:AjjcCp1V33ava85yxQ/9B6ySZvIJAbDnZtgsv/CFlHA=
|
||||
github.com/erynofwales/hugo-theme-termlite/v2 v2.0.0-20240807183033-64d002ded2d2/go.mod h1:8d/b0caCkqtULYGIuv8gwLAFrZd8DyQillIoi+P2vSM=
|
||||
github.com/erynofwales/hugo-theme-termlite/v2 v2.0.0-20240807183649-c348571be6af h1:M+u/Jm1tppXvzJa/0O+T43noVpoLc8OO708v2L6EcKY=
|
||||
github.com/erynofwales/hugo-theme-termlite/v2 v2.0.0-20240807183649-c348571be6af/go.mod h1:8d/b0caCkqtULYGIuv8gwLAFrZd8DyQillIoi+P2vSM=
|
|
@ -26,8 +26,8 @@ module:
|
|||
extended: false
|
||||
min: "0.116.0"
|
||||
imports:
|
||||
- path: github.com/erynofwales/hugo-theme-termlite
|
||||
- path: github.com/erynofwales/hugo-commandbar
|
||||
- path: github.com/erynofwales/hugo-theme-termlite/v2
|
||||
- path: github.com/erynofwales/hugo-commandbar/v2
|
||||
|
||||
permalinks:
|
||||
page:
|
||||
|
@ -36,7 +36,3 @@ permalinks:
|
|||
section:
|
||||
blog: "/blog/"
|
||||
tests: "/tests/"
|
||||
|
||||
theme:
|
||||
- commandbar
|
||||
- termlite
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue