summaryrefslogtreecommitdiffstats
path: root/modules/module.go
AgeCommit message (Collapse)Author
2024-01-28all: Run gofumpt -l -w .Bjørn Erik Pedersen
2023-08-23Fix it so disable a module does not disable transitive dependency required ↵Bjørn Erik Pedersen
by others The motivation behind the original implementation was probably to show disabled modules when running `hugo mod graph`. Fixes #11376
2022-12-19modules: Adjust watch logic vs workspace use definitionsBjørn Erik Pedersen
2021-06-27modules: Use value type for module.TimeBjørn Erik Pedersen
Which is in line with how we do it elsewhere.
2021-06-27commands: Add version time to "hugo config mounts"Bjørn Erik Pedersen
2021-06-18Implement configuration in a directory for modulesBjørn Erik Pedersen
Fixes #8654
2019-09-03Make the "is this a Hugo Module" logic more lenientBjørn Erik Pedersen
Now we only try to load modules via Go if there is one or more modules imported in project config. Fixes #6299
2019-08-01Fix assorted typosXhmikosR
2019-07-24Add Hugo ModulesBjørn Erik Pedersen
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