2018-08-25 11:51:57 -04:00
|
|
|
module github.com/gohugoio/hugo
|
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/BurntSushi/locker v0.0.0-20171006230638-a6e239ea1c69
|
2018-12-20 14:22:03 -05:00
|
|
|
github.com/BurntSushi/toml v0.3.1
|
2020-01-07 10:20:43 -05:00
|
|
|
github.com/PuerkitoBio/purell v1.1.1
|
2018-08-25 11:58:04 -04:00
|
|
|
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
|
2020-11-20 03:30:05 -05:00
|
|
|
github.com/alecthomas/chroma v0.8.2
|
2018-12-27 04:58:34 -05:00
|
|
|
github.com/alecthomas/repr v0.0.0-20181024024818-d37bc2a10ba1 // indirect
|
2019-08-03 11:27:40 -04:00
|
|
|
github.com/armon/go-radix v1.0.0
|
2021-01-28 01:13:45 -05:00
|
|
|
github.com/aws/aws-sdk-go v1.36.33
|
2019-02-02 06:04:42 -05:00
|
|
|
github.com/bep/debounce v1.2.0
|
2020-04-04 17:24:33 -04:00
|
|
|
github.com/bep/gitmap v1.1.2
|
2021-02-06 11:51:08 -05:00
|
|
|
github.com/bep/godartsass v0.12.0
|
2020-09-08 04:31:04 -04:00
|
|
|
github.com/bep/golibsass v0.7.0
|
2020-01-07 10:20:43 -05:00
|
|
|
github.com/bep/tmc v0.5.1
|
2020-12-18 12:20:12 -05:00
|
|
|
github.com/cli/safeexec v1.0.0
|
2019-08-26 13:12:41 -04:00
|
|
|
github.com/disintegration/gift v1.2.1
|
2020-11-20 03:30:05 -05:00
|
|
|
github.com/dlclark/regexp2 v1.4.0 // indirect
|
2018-12-20 14:22:03 -05:00
|
|
|
github.com/dustin/go-humanize v1.0.0
|
2021-02-16 10:12:27 -05:00
|
|
|
github.com/evanw/esbuild v0.8.46
|
2019-05-30 15:15:47 -04:00
|
|
|
github.com/fortytw2/leaktest v1.3.0
|
2020-11-06 03:04:55 -05:00
|
|
|
github.com/frankban/quicktest v1.11.2
|
2020-09-09 16:12:57 -04:00
|
|
|
github.com/fsnotify/fsnotify v1.4.9
|
2020-11-26 01:37:57 -05:00
|
|
|
github.com/getkin/kin-openapi v0.32.0
|
2020-06-30 10:11:05 -04:00
|
|
|
github.com/ghodss/yaml v1.0.0
|
2021-02-14 12:30:59 -05:00
|
|
|
github.com/gobuffalo/flect v0.2.2
|
2018-08-25 11:51:57 -04:00
|
|
|
github.com/gobwas/glob v0.2.3
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
github.com/gohugoio/testmodBuilder/mods v0.0.0-20190520184928-c56af20f2e95
|
2021-02-14 12:37:44 -05:00
|
|
|
github.com/google/go-cmp v0.5.4
|
2020-09-09 16:13:04 -04:00
|
|
|
github.com/gorilla/websocket v1.4.2
|
2020-09-14 02:25:37 -04:00
|
|
|
github.com/jdkato/prose v1.2.0
|
2020-10-07 11:41:37 -04:00
|
|
|
github.com/kylelemons/godebug v1.1.0
|
2020-12-30 15:19:40 -05:00
|
|
|
github.com/kyokomi/emoji/v2 v2.2.7
|
2020-09-01 10:19:08 -04:00
|
|
|
github.com/magefile/mage v1.10.0
|
2020-05-09 09:25:28 -04:00
|
|
|
github.com/mattn/go-isatty v0.0.12
|
2018-08-25 11:51:57 -04:00
|
|
|
github.com/miekg/mmark v1.3.6
|
2018-09-07 03:49:29 -04:00
|
|
|
github.com/mitchellh/hashstructure v1.0.0
|
2020-09-10 01:56:14 -04:00
|
|
|
github.com/mitchellh/mapstructure v1.3.3
|
2020-01-07 10:20:43 -05:00
|
|
|
github.com/muesli/smartcrop v0.3.0
|
2018-08-25 11:58:04 -04:00
|
|
|
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646 // indirect
|
2019-06-02 05:11:46 -04:00
|
|
|
github.com/nicksnyder/go-i18n/v2 v2.1.1
|
2021-01-02 14:52:37 -05:00
|
|
|
github.com/niklasfasching/go-org v1.4.0
|
2020-01-07 10:20:43 -05:00
|
|
|
github.com/olekukonko/tablewriter v0.0.4
|
2020-10-08 03:37:40 -04:00
|
|
|
github.com/pelletier/go-toml v1.8.1
|
2020-05-09 09:25:28 -04:00
|
|
|
github.com/pkg/errors v0.9.1
|
2020-09-14 02:25:02 -04:00
|
|
|
github.com/rogpeppe/go-internal v1.6.2
|
2020-03-10 06:19:34 -04:00
|
|
|
github.com/russross/blackfriday v1.5.3-0.20200218234912-41c5fccfd6f6
|
2019-08-29 04:18:51 -04:00
|
|
|
github.com/rwcarlsen/goexif v0.0.0-20190401172101-9e8deecbddbd
|
2020-09-10 01:55:53 -04:00
|
|
|
github.com/sanity-io/litter v1.3.0
|
2021-01-17 20:35:33 -05:00
|
|
|
github.com/spf13/afero v1.5.1
|
2020-01-07 10:20:43 -05:00
|
|
|
github.com/spf13/cast v1.3.1
|
2020-10-24 05:39:53 -04:00
|
|
|
github.com/spf13/cobra v1.1.1
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
github.com/spf13/fsync v0.9.0
|
2019-03-13 05:42:43 -04:00
|
|
|
github.com/spf13/jwalterweatherman v1.1.0
|
2020-01-07 10:20:43 -05:00
|
|
|
github.com/spf13/pflag v1.0.5
|
2020-09-11 01:59:07 -04:00
|
|
|
github.com/spf13/viper v1.7.1
|
2020-10-07 04:46:19 -04:00
|
|
|
github.com/tdewolff/minify/v2 v2.6.2
|
2021-02-08 04:53:34 -05:00
|
|
|
github.com/yuin/goldmark v1.3.2
|
2020-04-23 11:08:49 -04:00
|
|
|
github.com/yuin/goldmark-highlighting v0.0.0-20200307114337-60d527fdb691
|
2020-12-04 22:43:03 -05:00
|
|
|
gocloud.dev v0.20.0
|
2020-01-07 10:20:43 -05:00
|
|
|
golang.org/x/image v0.0.0-20191214001246-9130b4cfad52
|
2021-01-02 14:52:37 -05:00
|
|
|
golang.org/x/net v0.0.0-20201224014010-6772e930b67b
|
2021-02-14 12:37:44 -05:00
|
|
|
golang.org/x/sync v0.0.0-20201207232520-09787c993a3a
|
2020-10-28 02:31:56 -04:00
|
|
|
golang.org/x/text v0.3.4
|
2021-02-14 12:37:44 -05:00
|
|
|
google.golang.org/api v0.40.0
|
2019-09-01 11:27:21 -04:00
|
|
|
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
|
2020-01-07 10:20:43 -05:00
|
|
|
gopkg.in/ini.v1 v1.51.1 // indirect
|
2020-11-26 01:37:31 -05:00
|
|
|
gopkg.in/yaml.v2 v2.4.0
|
2018-08-25 11:51:57 -04:00
|
|
|
)
|
2018-09-07 03:49:29 -04:00
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
go 1.12
|