hugo_mod_graph.md (1458B)
1 --- 2 title: "hugo mod graph" 3 slug: hugo_mod_graph 4 url: /commands/hugo_mod_graph/ 5 --- 6 ## hugo mod graph 7 8 Print a module dependency graph. 9 10 ### Synopsis 11 12 Print a module dependency graph with information about module status (disabled, vendored). 13 Note that for vendored modules, that is the version listed and not the one from go.mod. 14 15 16 ``` 17 hugo mod graph [flags] 18 ``` 19 20 ### Options 21 22 ``` 23 -h, --help help for graph 24 ``` 25 26 ### Options inherited from parent commands 27 28 ``` 29 --clock string set the clock used by Hugo, e.g. --clock 2021-11-06T22:30:00.00+09:00 30 --config string config file (default is path/config.yaml|json|toml) 31 --configDir string config dir (default "config") 32 --debug debug output 33 -e, --environment string build environment 34 --ignoreVendorPaths string ignores any _vendor for module paths matching the given Glob pattern 35 --log enable Logging 36 --logFile string log File path (if set, logging enabled automatically) 37 --quiet build in quiet mode 38 -s, --source string filesystem path to read files relative from 39 --themesDir string filesystem path to themes directory 40 -v, --verbose verbose output 41 --verboseLog verbose logging 42 ``` 43 44 ### SEE ALSO 45 46 * [hugo mod](/commands/hugo_mod/) - Various Hugo Modules helpers. 47