mirror of
https://github.com/tendermint/tendermint.git
synced 2026-07-06 00:04:50 +00:00
99c51b354c
Bumps [watchpack](https://github.com/webpack/watchpack) from 2.2.0 to 2.3.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/webpack/watchpack/releases">watchpack's releases</a>.</em></p> <blockquote> <h2>v2.3.0</h2> <h1>Features</h1> <ul> <li>allow to grab separate file and directory time info objects</li> <li>allow functions passed to the <code>ignored</code> option</li> </ul> <h1>Bugfixes</h1> <ul> <li>ignore EACCESS errors during initial scan</li> </ul> <h1>Performance</h1> <ul> <li>improve performance of watcher update</li> </ul> <h1>Contributing</h1> <ul> <li>CI tests node.js 17 too</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/webpack/watchpack/commit/b903dd384da582ae5f1e6ca71586fed3d991de7f"><code>b903dd3</code></a> 2.3.0</li> <li><a href="https://github.com/webpack/watchpack/commit/c82a595128e75efb3b0b8f0d1a819b4bf95119bf"><code>c82a595</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/webpack/watchpack/issues/211">#211</a> from webpack/bugfix/missing-info</li> <li><a href="https://github.com/webpack/watchpack/commit/1e560268d3409760c6a68779a157bf30893484c2"><code>1e56026</code></a> fix missing time info in files</li> <li><a href="https://github.com/webpack/watchpack/commit/89d5f4884c414aafede5ca26a5fe0ecfe9c6cb11"><code>89d5f48</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/webpack/watchpack/issues/205">#205</a> from markjm/markjm/split</li> <li><a href="https://github.com/webpack/watchpack/commit/f1f35863303c1938d8c74f57160e61f9de94ff8d"><code>f1f3586</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/webpack/watchpack/issues/210">#210</a> from webpack/ci/no-macos-polling</li> <li><a href="https://github.com/webpack/watchpack/commit/8d14e94274843d30a6c95a0bd602ad79fe58b720"><code>8d14e94</code></a> Merge branch 'main' into markjm/split</li> <li><a href="https://github.com/webpack/watchpack/commit/e71b62ba1f3d9be6d7b95083e85f79b811e2e094"><code>e71b62b</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/webpack/watchpack/issues/197">#197</a> from markjm/markjm/watch-change</li> <li><a href="https://github.com/webpack/watchpack/commit/a3b2b82ec7df1e86119653cea113a5a2bb78030c"><code>a3b2b82</code></a> provide additional method instead of changing existing one</li> <li><a href="https://github.com/webpack/watchpack/commit/aab36974181d6971c0d7a81499f1df87c7802e88"><code>aab3697</code></a> disable testing polling for macos ci</li> <li><a href="https://github.com/webpack/watchpack/commit/523793ef5dcdc38cc62045079a9500068c6908bd"><code>523793e</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/webpack/watchpack/issues/208">#208</a> from webpack/perf/update-watchers</li> <li>Additional commits viewable in <a href="https://github.com/webpack/watchpack/compare/v2.2.0...v2.3.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details>
23 lines
531 B
JSON
23 lines
531 B
JSON
{
|
|
"name": "docs",
|
|
"version": "1.0.0",
|
|
"description": "Tendermint Core Documentation",
|
|
"main": "index.js",
|
|
"dependencies": {
|
|
"vuepress-theme-cosmos": "^1.0.182"
|
|
},
|
|
"devDependencies": {
|
|
"watchpack": "^2.3.0"
|
|
},
|
|
"scripts": {
|
|
"preserve": "./pre.sh",
|
|
"serve": "trap 'exit 0' SIGINT; vuepress dev --no-cache",
|
|
"postserve": "./post.sh",
|
|
"prebuild": "./pre.sh",
|
|
"build": "trap 'exit 0' SIGINT; vuepress build --no-cache",
|
|
"postbuild": "./post.sh"
|
|
},
|
|
"author": "",
|
|
"license": "ISC"
|
|
}
|