mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
Bump the debouncer dependency
No practical difference.
This commit is contained in:
parent
8b2ef83bb1
commit
719251c1af
3 changed files with 5 additions and 5 deletions
6
Gopkg.lock
generated
6
Gopkg.lock
generated
|
@ -60,8 +60,8 @@
|
||||||
[[projects]]
|
[[projects]]
|
||||||
name = "github.com/bep/debounce"
|
name = "github.com/bep/debounce"
|
||||||
packages = ["."]
|
packages = ["."]
|
||||||
revision = "4d81ca71858e0119497d5d0a9972ea030c279c48"
|
revision = "844797fa1dd9ba969d71b62797ff19d1e49d4eac"
|
||||||
version = "v1.0.0"
|
version = "v1.1.0"
|
||||||
|
|
||||||
[[projects]]
|
[[projects]]
|
||||||
branch = "master"
|
branch = "master"
|
||||||
|
@ -430,6 +430,6 @@
|
||||||
[solve-meta]
|
[solve-meta]
|
||||||
analyzer-name = "dep"
|
analyzer-name = "dep"
|
||||||
analyzer-version = 1
|
analyzer-version = 1
|
||||||
inputs-digest = "9dbe78252ae637a71ec335bde396053bcb59ea97da8de5ad2b0ae6f03b559729"
|
inputs-digest = "fd36c6a8d8a616d5a0932d67c87f863eb95c7d02aeeaa25f81fd063428587518"
|
||||||
solver-name = "gps-cdcl"
|
solver-name = "gps-cdcl"
|
||||||
solver-version = 1
|
solver-version = 1
|
||||||
|
|
|
@ -148,4 +148,4 @@
|
||||||
|
|
||||||
[[constraint]]
|
[[constraint]]
|
||||||
name = "github.com/bep/debounce"
|
name = "github.com/bep/debounce"
|
||||||
version = "^1.0.0"
|
version = "^1.1.0"
|
||||||
|
|
|
@ -103,7 +103,7 @@ func newCommandeer(running bool, doWithCommandeer func(c *commandeer) error, sub
|
||||||
// The time value used is tested with mass content replacements in a fairly big Hugo site.
|
// The time value used is tested with mass content replacements in a fairly big Hugo site.
|
||||||
// It is better to wait for some seconds in those cases rather than get flooded
|
// It is better to wait for some seconds in those cases rather than get flooded
|
||||||
// with rebuilds.
|
// with rebuilds.
|
||||||
rebuildDebouncer, _ = debounce.New(4 * time.Second)
|
rebuildDebouncer, _, _ = debounce.New(4 * time.Second)
|
||||||
}
|
}
|
||||||
|
|
||||||
c := &commandeer{
|
c := &commandeer{
|
||||||
|
|
Loading…
Reference in a new issue