Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo-mod-jslibs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-08-22 18:59:34 +0300
committerGitHub <noreply@github.com>2020-08-22 18:59:34 +0300
commita6c6f0e81d97f87b6fe2d3da310e93e3db79cdae (patch)
treecbf71ddd39d6bb32f1d03b9debda40154d328021
parentcaa7a63fa6f731c093ba3cab48734023810a86f3 (diff)
Update README.md
-rw-r--r--README.md21
1 files changed, 20 insertions, 1 deletions
diff --git a/README.md b/README.md
index 862cb68..e2622dd 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,26 @@ To use AlpineJS with Turbolinks you can just import the modules into your config
{{ partialCached "jslibs/turbolinks/script-src.html" "-" }}
```
-See each component's README for usage. The Hugo documentation has more information about [Hugo Modules](https://gohugo.io/hugo-modules/).
+See each component's README for usage.
## Versioning
+These modules have their own semver versioning scheme that does not match the upstream library they wrap. To see the current upstream versions, use:
+
+```bash
+hugo mod graph
+```
+
+To update one module:
+
+```
+hugo mod get -u github.com/gohugoio/hugo-mod-jslibs/instantpage
+```
+
+To update all:
+
+```
+hugo mod get -u
+```
+
+The Hugo documentation has more information about [Hugo Modules](https://gohugo.io/hugo-modules/), how versioning works etc.