Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump websocket-extensions from 0.1.3 to 0.1.4 #1

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 47 additions & 18 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,25 +44,54 @@ <h1>BlogSearch Demo Page</h1>
</nav>

<div class="container">
Precompiled databases:
<div class="btn-group btn-group-toggle" data-toggle="buttons">
<label class="btn btn-primary active">
<input type="radio" checked="" dbPath="reactjs.org.crawler-example.db.wasm">
reactjs.org (using blogsearch-crawler)
</input>
</label>
<label class="btn btn-primary">
<input type="radio" dbPath="reactjs.org.gatsby-example.db.wasm">
reactjs.org (using gatsby-plugin-blogsearch)
</input>
</label>
<label class="btn btn-primary">
<input type="radio" dbPath="circleci-docs.jekyll-example.db.wasm">
CircleCI documentation (using jekyll-blogsearch)
</input>
</label>
<h2>
Example Index files
</h2>

<div class="row mb-3">
<div class="col-sm">
<a href="https://github.com/reactjs/reactjs.org">React JS Documentation</a>, 255 Pages, Gatsby<br>
<small>
built by <a href="https://github.com/kbumsik/blogsearch/tree/master/gatsby-plugin-blogsearch">the gatsby plugin for BlogSearch</a>
</small>
</div>
<div class="col-sm btn-group">
<button type="button" class="btn btn-primary" dbPath="reactjs.org.gatsby-example.db.wasm">Full<br><small>1.09MB (2.57MB uncompressed)</small></button>
<button type="button" class="btn btn-primary" dbPath="reactjs.org.gatsby-example.slim.db.wasm">Slim<br><small>644KB (980KB uncompressed)</small></button>
</div>
</div>

<div class="row mb-3">
<div class="col-sm">
<a href="https://github.com/kubernetes/website">Kubernetes Documentation</a>, 626 Pages, Hugo<br>
<small>
built by <a href="https://github.com/kbumsik/blogsearch/tree/master/blogsearch-crawler">the generic crawler for BlogSearch</a>
</small>
</div>
<div class="col-sm btn-group">
<button type="button" class="btn btn-primary" dbPath="kubernetes.io.crawler-example.db.wasm">Full<br><small>3.43MB (8.31MB uncompressed)</small></button>
<button type="button" class="btn btn-primary" dbPath="kubernetes.io.crawler-example.slim.db.wasm">Slim<br><small>1.82MB (2.71MB uncompressed)</small></button>
</div>
</div>

<div class="row mb-3">
<div class="col-sm">
<a href="https://github.com/circleci/circleci-docs">CircleCI documentation</a>, 645 Pages, Jekyll<br>
<small>
built by <a href="https://github.com/kbumsik/blogsearch/tree/master/jekyll-blogsearch">the Jekyll plugin for BlogSearch</a>
</small>
</div>
<div class="col-sm btn-group">
<button type="button" class="btn btn-primary" dbPath="circleci-docs.jekyll-example.db.wasm">Full<br><small>2.05MB (5.76MB uncompressed)</small></button>
<button type="button" class="btn btn-primary" dbPath="circleci-docs.jekyll-example.slim.db.wasm">Slim<br><small>1MB (2.04MB uncompressed)</small></button>
</div>
</div>

<div class="row mb-3">
<div class="col-sm input-group">
<label>Your own BlogSearch index file (for testing): <input type='file' id='dbfile' aria-describedby="btnGroupAddon"></label>
</div>
</div>
<label>Your own BlogSearch database file: <input type='file' id='dbfile'></label>
</div>

<script src="https://cdn.jsdelivr.net/npm/blogsearch@latest/dist/blogsearch.umd.js"></script>
Expand Down
36 changes: 24 additions & 12 deletions examples/demo/public/blogsearch.umd.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,41 +39,53 @@ <h2>

<div class="row mb-3">
<div class="col-sm">
reactjs.org (using blogsearch-crawler)
<a href="https://github.com/reactjs/reactjs.org">React JS Documentation</a>, 229 Pages, Gatsby<br>
<small>
built by <a href="https://github.com/kbumsik/blogsearch/tree/master/blogsearch-crawler">the generic crawler for BlogSearch</a>
</small>
</div>
<div class="col-sm btn-group">
<button type="button" class="btn btn-primary" dbPath="reactjs.org.crawler-example.db.wasm">Full</button>
<button type="button" class="btn btn-primary" dbPath="reactjs.org.crawler-example.slim.db.wasm">Slim</button>
<button type="button" class="btn btn-primary" dbPath="reactjs.org.crawler-example.db.wasm">Full<br><small>1.06MB (2.47MB uncompressed)</small></button>
<button type="button" class="btn btn-primary" dbPath="reactjs.org.crawler-example.slim.db.wasm">Slim<br><small>566KB (884KB uncompressed)</small></button>
</div>
</div>

<div class="row mb-3">
<div class="col-sm">
kubernetes.io (using blogsearch-crawler)
<a href="https://github.com/kubernetes/website">Kubernetes Documentation</a>, 626 Pages, Hugo<br>
<small>
built by <a href="https://github.com/kbumsik/blogsearch/tree/master/blogsearch-crawler">the generic crawler for BlogSearch</a>
</small>
</div>
<div class="col-sm btn-group">
<button type="button" class="btn btn-primary" dbPath="kubernetes.io.crawler-example.db.wasm">Full</button>
<button type="button" class="btn btn-primary" dbPath="kubernetes.io.crawler-example.slim.db.wasm">Slim</button>
<button type="button" class="btn btn-primary" dbPath="kubernetes.io.crawler-example.db.wasm">Full<br><small>3.43MB (8.31MB uncompressed)</small></button>
<button type="button" class="btn btn-primary" dbPath="kubernetes.io.crawler-example.slim.db.wasm">Slim<br><small>1.82MB (2.71MB uncompressed)</small></button>
</div>
</div>

<div class="row mb-3">
<div class="col-sm">
reactjs.org (using gatsby-plugin-blogsearch)
<a href="https://github.com/reactjs/reactjs.org">React JS Documentation</a>, 255 Pages, Gatsby<br>
<small>
built by <a href="https://github.com/kbumsik/blogsearch/tree/master/gatsby-plugin-blogsearch">the gatsby plugin for BlogSearch</a>
</small>
</div>
<div class="col-sm btn-group">
<button type="button" class="btn btn-primary" dbPath="reactjs.org.gatsby-example.db.wasm">Full</button>
<button type="button" class="btn btn-primary" dbPath="reactjs.org.gatsby-example.slim.db.wasm">Slim</button>
<button type="button" class="btn btn-primary" dbPath="reactjs.org.gatsby-example.db.wasm">Full<br><small>1.09MB (2.57MB uncompressed)</small></button>
<button type="button" class="btn btn-primary" dbPath="reactjs.org.gatsby-example.slim.db.wasm">Slim<br><small>644KB (980KB uncompressed)</small></button>
</div>
</div>

<div class="row mb-3">
<div class="col-sm">
CircleCI documentation (using jekyll-blogsearch)
<a href="https://github.com/circleci/circleci-docs">CircleCI documentation</a>, 645 Pages, Jekyll<br>
<small>
built by <a href="https://github.com/kbumsik/blogsearch/tree/master/jekyll-blogsearch">the Jekyll plugin for BlogSearch</a>
</small>
</div>
<div class="col-sm btn-group">
<button type="button" class="btn btn-primary" dbPath="circleci-docs.jekyll-example.db.wasm">Full</button>
<button type="button" class="btn btn-primary" dbPath="circleci-docs.jekyll-example.slim.db.wasm">Slim</button>
<button type="button" class="btn btn-primary" dbPath="circleci-docs.jekyll-example.db.wasm">Full<br><small>2.05MB (5.76MB uncompressed)</small></button>
<button type="button" class="btn btn-primary" dbPath="circleci-docs.jekyll-example.slim.db.wasm">Slim<br><small>1MB (2.04MB uncompressed)</small></button>
</div>
</div>

Expand Down
16 changes: 13 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1889,6 +1889,16 @@ block-stream@*:
dependencies:
inherits "~2.0.0"

blogsearch-crawler@^0.0.2:
version "0.0.2"
resolved "https://registry.yarnpkg.com/blogsearch-crawler/-/blogsearch-crawler-0.0.2.tgz#7ddeb5608449591e4621452c85dbf5b00f97b826"
integrity sha512-mySZ+CaSTh4ock3NIoF+5gB15PuZhgr+6I90c/mKjh1FbrVdD6syFMMUz4qqK3AdMHHa40GAGzlV9mLsSginXw==
dependencies:
glob "^7.1.6"
puppeteer "^2.0.0"
sqlite "^3.0.3"
sqlite3 "^4.1.1"

bluebird@^3.5.5:
version "3.7.2"
resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f"
Expand Down Expand Up @@ -9200,9 +9210,9 @@ websocket-driver@>=0.5.1:
websocket-extensions ">=0.1.1"

websocket-extensions@>=0.1.1:
version "0.1.3"
resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.3.tgz#5d2ff22977003ec687a4b87073dfbbac146ccf29"
integrity sha512-nqHUnMXmBzT0w570r2JpJxfiSD1IzoI+HGVdd3aZ0yNi3ngvQ4jv1dtHt5VGxfI2yj5yqImPhOK4vmIh2xMbGg==
version "0.1.4"
resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.4.tgz#7f8473bc839dfd87608adb95d7eb075211578a42"
integrity sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==

whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3:
version "1.0.5"
Expand Down