mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 16:16:21 -04:00
update /stats and /privacy, bump Inter font to v3.14, long cache on /vendor
This commit is contained in:
parent
fba0eef0d6
commit
6138c422b9
@ -49,6 +49,6 @@ All original code in this repository (like my [Hugo theme](layouts/)) is publish
|
|||||||
External assets include:
|
External assets include:
|
||||||
|
|
||||||
- [**Twemoji**](https://twemoji.twitter.com/): Copyright (c) 2020 Twitter, Inc. and other contributors. [Licensed under CC-BY-4.0.](https://github.com/twitter/twemoji/blob/v13.0.1/LICENSE-GRAPHICS)
|
- [**Twemoji**](https://twemoji.twitter.com/): Copyright (c) 2020 Twitter, Inc. and other contributors. [Licensed under CC-BY-4.0.](https://github.com/twitter/twemoji/blob/v13.0.1/LICENSE-GRAPHICS)
|
||||||
- [**Inter**](https://rsms.me/inter/): Copyright (c) 2016-2020 The Inter Project Authors. [Licensed under the SIL Open Font License, Version 1.1.](https://github.com/rsms/inter/blob/v3.13/LICENSE.txt)
|
- [**Inter**](https://rsms.me/inter/): Copyright (c) 2016-2020 The Inter Project Authors. [Licensed under the SIL Open Font License, Version 1.1.](https://github.com/rsms/inter/blob/v3.14/LICENSE.txt)
|
||||||
- [**Hack**](https://sourcefoundry.org/hack/): Copyright (c) 2018 Source Foundry Authors. [Licensed under the MIT License.](https://github.com/source-foundry/Hack/blob/v3.003/LICENSE.md)
|
- [**Hack**](https://sourcefoundry.org/hack/): Copyright (c) 2018 Source Foundry Authors. [Licensed under the MIT License.](https://github.com/source-foundry/Hack/blob/v3.003/LICENSE.md)
|
||||||
- [**Comic Neue**](http://comicneue.com/): Copyright (c) 2014 The Comic Neue Project Authors. [Licensed under the SIL Open Font License, Version 1.1.](https://github.com/crozynski/comicneue/blob/v2.5/OFL.txt)
|
- [**Comic Neue**](http://comicneue.com/): Copyright (c) 2014 The Comic Neue Project Authors. [Licensed under the SIL Open Font License, Version 1.1.](https://github.com/crozynski/comicneue/blob/v2.5/OFL.txt)
|
||||||
|
@ -1,17 +1,20 @@
|
|||||||
@charset "UTF-8";
|
@charset "UTF-8";
|
||||||
|
|
||||||
// Web fonts
|
// Web fonts
|
||||||
$webfont-sans: "Inter", sans-serif;
|
$webfont-sans: "Inter";
|
||||||
$webfont-sans-variable: "Inter var", sans-serif;
|
$webfont-sans-variable: "Inter var";
|
||||||
$webfont-mono: "Hack", monospace;
|
$webfont-mono: "Hack";
|
||||||
|
|
||||||
// System fonts
|
// System fonts
|
||||||
// https://markdotto.com/2018/02/07/github-system-fonts/
|
// https://markdotto.com/2018/02/07/github-system-fonts/
|
||||||
$system-fonts: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell",
|
$system-fonts-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji",
|
||||||
"Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
"Segoe UI Emoji", "Segoe UI Symbol";
|
||||||
$system-fonts-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
|
||||||
$system-fonts-monospace: "SFMono-Regular", "Consolas", "Liberation Mono", "Menlo", "Courier", monospace;
|
$system-fonts-monospace: "SFMono-Regular", "Consolas", "Liberation Mono", "Menlo", "Courier", monospace;
|
||||||
|
|
||||||
|
$font-stack-static: $webfont-sans, $system-fonts-sans;
|
||||||
|
$font-stack-var: $webfont-sans-variable, $system-fonts-sans;
|
||||||
|
$font-stack-mono: $webfont-mono, $system-fonts-monospace;
|
||||||
|
|
||||||
// Width at which to switch to mobile styles
|
// Width at which to switch to mobile styles
|
||||||
$responsive-width: 830px;
|
$responsive-width: 830px;
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ body {
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
|
|
||||||
font-family: $webfont-sans;
|
font-family: $font-stack-static;
|
||||||
font-kerning: normal;
|
font-kerning: normal;
|
||||||
font-variant-ligatures: normal;
|
font-variant-ligatures: normal;
|
||||||
font-feature-settings: "kern", "liga", "calt", "clig", "ss01";
|
font-feature-settings: "kern", "liga", "calt", "clig", "ss01";
|
||||||
@ -18,7 +18,7 @@ body {
|
|||||||
// stylelint-disable-next-line plugin/no-unsupported-browser-features
|
// stylelint-disable-next-line plugin/no-unsupported-browser-features
|
||||||
@supports (font-variation-settings: normal) {
|
@supports (font-variation-settings: normal) {
|
||||||
body {
|
body {
|
||||||
font-family: $webfont-sans-variable;
|
font-family: $font-stack-var;
|
||||||
font-optical-sizing: auto;
|
font-optical-sizing: auto;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -92,6 +92,14 @@ strong {
|
|||||||
letter-spacing: 0.008em; // not sure why the discrepancy between weights
|
letter-spacing: 0.008em; // not sure why the discrepancy between weights
|
||||||
}
|
}
|
||||||
|
|
||||||
|
code,
|
||||||
|
pre,
|
||||||
|
.monospace {
|
||||||
|
font-family: $font-stack-mono;
|
||||||
|
font-size: 0.95em;
|
||||||
|
letter-spacing: normal;
|
||||||
|
}
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
padding-left: 1.5em;
|
padding-left: 1.5em;
|
||||||
|
@ -1,12 +1,5 @@
|
|||||||
@charset "UTF-8";
|
@charset "UTF-8";
|
||||||
|
|
||||||
code,
|
|
||||||
pre {
|
|
||||||
font-family: $webfont-mono;
|
|
||||||
font-size: 0.95em;
|
|
||||||
letter-spacing: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
// all code
|
// all code
|
||||||
code {
|
code {
|
||||||
letter-spacing: 0;
|
letter-spacing: 0;
|
||||||
|
@ -6,11 +6,11 @@
|
|||||||
$unicode-subset: U+0000-00FF, U+2000-206F, U+20A0-20CF, U+2190-21FF, U+2200-22FF, U+2122;
|
$unicode-subset: U+0000-00FF, U+2000-206F, U+20A0-20CF, U+2190-21FF, U+2200-22FF, U+2122;
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* Inter typeface v3.13 - https://rsms.me/inter/
|
* Inter typeface v3.14 - https://rsms.me/inter/
|
||||||
*
|
*
|
||||||
* Copyright (c) 2016-2020 The Inter Project Authors.
|
* Copyright (c) 2016-2020 The Inter Project Authors.
|
||||||
* Licensed under the SIL Open Font License, Version 1.1:
|
* Licensed under the SIL Open Font License, Version 1.1:
|
||||||
* https://github.com/rsms/inter/blob/v3.13/LICENSE.txt
|
* https://github.com/rsms/inter/blob/v3.14/LICENSE.txt
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Variable
|
// Variable
|
||||||
|
@ -34,7 +34,6 @@ div.layout-home {
|
|||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
&#key {
|
&#key {
|
||||||
font-family: $webfont-mono;
|
|
||||||
font-size: 0.65em;
|
font-size: 0.65em;
|
||||||
word-spacing: -0.3em;
|
word-spacing: -0.3em;
|
||||||
margin-right: 0.1em;
|
margin-right: 0.1em;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
title: "Jake Jarvis – Front-End Web Developer in Boston, MA 👨💻"
|
title: "Jake Jarvis – Front-End Web Developer in Boston, MA 👨💻"
|
||||||
date: 2020-08-10 10:17:58-0400
|
date: 2020-08-18 09:22:25-0400
|
||||||
type: home
|
type: home
|
||||||
sitemap:
|
sitemap:
|
||||||
priority: 1.0
|
priority: 1.0
|
||||||
@ -33,4 +33,4 @@ Over the years, some of these side projects
|
|||||||
<a href="https://gigaom.com/2009/10/06/fresh-faces-in-tech-10-kid-entrepreneurs-to-watch/6/" title=""Fresh Faces in Tech: 10 Kid Entrepreneurs to Watch" on Gigaom" id="news-6" target="_blank" rel="noopener">media</a>
|
<a href="https://gigaom.com/2009/10/06/fresh-faces-in-tech-10-kid-entrepreneurs-to-watch/6/" title=""Fresh Faces in Tech: 10 Kid Entrepreneurs to Watch" on Gigaom" id="news-6" target="_blank" rel="noopener">media</a>
|
||||||
<a href="https://adage.com/article/small-agency-diary/client-ceo-s-son/116723/" title=""Your Next Client? The CEO's Son" on Advertising Age" id="news-7" target="_blank" rel="noopener">outlets</a>.
|
<a href="https://adage.com/article/small-agency-diary/client-ceo-s-son/116723/" title=""Your Next Client? The CEO's Son" on Advertising Age" id="news-7" target="_blank" rel="noopener">outlets</a>.
|
||||||
|
|
||||||
You can find my work on <a href="https://github.com/jakejarvis" title="Jake Jarvis on GitHub" id="github" target="_blank" rel="me noopener">GitHub</a> and <a href="https://www.linkedin.com/in/jakejarvis/" title="Jake Jarvis on LinkedIn" id="linkedin" target="_blank" rel="me noopener">LinkedIn</a>, my thoughts on <a href="https://twitter.com/jakejarvis" title="Jake Jarvis on Twitter" id="twitter" target="_blank" rel="me noopener">Twitter</a>, and my vintage <a href="/resume.pdf" title="View PDF Resume" id="resume">PDF résumé here</a>. I'm always open to connect over <a href="mailto:jake@jarv.is" title="Send Email" id="email">email</a> <sup id="key"><a class="no-underline" href="https://keybase.io/jakejarvis/pgp_keys.asc?fingerprint=3bc6e5776bf379d36f6714802b0c9cf251e69a39" title="My Public Key" id="pgp" target="_blank" rel="pgpkey authn noopener">🔐 2B0C 9CF2 51E6 9A39</a></sup>, <a href="https://twitter.com/messages/compose?recipient_id=229769022" title="Send Direct Message on Twitter" id="dm" target="_blank" rel="noopener">DM</a>, or <a href="sms:+1-617-917-3737" title="Send SMS to +1 (617) 917-3737" id="sms">SMS</a> too!
|
You can find my work on <a href="https://github.com/jakejarvis" title="Jake Jarvis on GitHub" id="github" target="_blank" rel="me noopener">GitHub</a> and <a href="https://www.linkedin.com/in/jakejarvis/" title="Jake Jarvis on LinkedIn" id="linkedin" target="_blank" rel="me noopener">LinkedIn</a>, my thoughts on <a href="https://twitter.com/jakejarvis" title="Jake Jarvis on Twitter" id="twitter" target="_blank" rel="me noopener">Twitter</a>, and my vintage <a href="/resume.pdf" title="View PDF Resume" id="resume">PDF résumé here</a>. I'm always open to connect over <a href="mailto:jake@jarv.is" title="Send Email" id="email">email</a> <sup id="key" class="monospace"><a class="no-underline" href="https://keybase.io/jakejarvis/pgp_keys.asc?fingerprint=3bc6e5776bf379d36f6714802b0c9cf251e69a39" title="My Public Key" id="pgp" target="_blank" rel="pgpkey authn noopener">🔐 2B0C 9CF2 51E6 9A39</a></sup>, <a href="https://twitter.com/messages/compose?recipient_id=229769022" title="Send Direct Message on Twitter" id="dm" target="_blank" rel="noopener">DM</a>, or <a href="sms:+1-617-917-3737" title="Send SMS to +1 (617) 917-3737" id="sms">SMS</a> too!
|
||||||
|
@ -11,7 +11,7 @@ Okay, this is an easy one. 😉
|
|||||||
|
|
||||||
## Analytics
|
## Analytics
|
||||||
|
|
||||||
This website uses [**Simple Analytics**](https://simpleanalytics.com/?ref=jarv.is) to track pageviews **without collecting any personally identifiable information,** including IP addresses, cookies, and browser fingerprints. Only the following [information](https://docs.simpleanalytics.com/what-we-collect?ref=jarv.is) is collected and recorded by them:
|
This website uses [**Simple Analytics**](https://simpleanalytics.com/?ref=jarv.is) to count pageviews **without collecting any personally identifiable information,** such as IP addresses, cookies, and browser fingerprints. Only the [following information](https://docs.simpleanalytics.com/what-we-collect?ref=jarv.is) is collected and recorded by them:
|
||||||
|
|
||||||
- URL visited
|
- URL visited
|
||||||
- Timestamp of visit
|
- Timestamp of visit
|
||||||
|
@ -15,12 +15,14 @@ css: |
|
|||||||
}
|
}
|
||||||
---
|
---
|
||||||
|
|
||||||
This website uses [**Simple Analytics**](https://simpleanalytics.com/?ref=jarv.is) to track pageviews **without collecting any personally identifiable information,** including IP addresses, cookies, and browser fingerprints.
|
This website uses [**Simple Analytics**](https://simpleanalytics.com/?ref=jarv.is) to tally pageviews without tracking you.
|
||||||
|
|
||||||
|
Cookies and fingerprinting are never used and your IP address is hidden behind [a serverless function](https://github.com/jakejarvis/jarv.is/blob/main/functions/send_view.js) when your ping is anonymously proxied to Simple Analytics' API on your behalf. Refer to the [**Privacy Policy**](/privacy/) for a complete list of information sent.
|
||||||
|
|
||||||
In that case, why not share them? 😊 Pageviews for the past month are graphed below and more information (top pages, referrers, etc.) can be found [on a publicly-accessible dashboard.](https://simpleanalytics.com/jarv.is?utm_source=jarv.is&utm_content=badge)
|
In that case, why not share them? 😊 Pageviews for the past month are graphed below and more information (top pages, referrers, etc.) can be found [on a publicly-accessible dashboard.](https://simpleanalytics.com/jarv.is?utm_source=jarv.is&utm_content=badge)
|
||||||
|
|
||||||
<!-- markdownlint-disable MD033 -->
|
<!-- markdownlint-disable MD033 -->
|
||||||
<p class="center"><a class="no-underline" href="https://simpleanalytics.com/jarv.is?utm_source=jarv.is&utm_content=badge" target="_blank" rel="noopener"><img src="https://simpleanalyticsbadge.com/jarv.is?counter=true" width="210" height="50" alt="Powered by Simple Analytics" referrerpolicy="no-referrer" crossorigin="anonymous"></a></p>
|
<p class="center"><a class="no-underline" href="https://simpleanalytics.com/jarv.is?utm_source=jarv.is&utm_content=badge" target="_blank" rel="noopener"><img src="/stats/badge.svg" width="210" height="50" alt="Powered by Simple Analytics"></a></p>
|
||||||
|
|
||||||
<iframe id="sa-graph" src="https://simpleanalytics.com/jarv.is?color=FF4F64&embed=true" scrolling="no" title="Simple Analytics graph"></iframe>
|
<iframe id="sa-graph" src="https://simpleanalytics.com/jarv.is?color=FF4F64&embed=true" scrolling="no" title="Simple Analytics graph"></iframe>
|
||||||
<!-- markdownlint-enable MD033 -->
|
<!-- markdownlint-enable MD033 -->
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
# Cache static assets (webfonts, emojis, etc.) for a long time (1 month)
|
||||||
|
/vendor/*
|
||||||
|
Cache-Control: max-age=2628000
|
||||||
|
|
||||||
# Recommended MIME type for PWA manifests:
|
# Recommended MIME type for PWA manifests:
|
||||||
# https://github.com/w3c/manifest/issues/689
|
# https://github.com/w3c/manifest/issues/689
|
||||||
/site.webmanifest
|
/site.webmanifest
|
||||||
|
@ -31,4 +31,4 @@
|
|||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<a id="blm-banner" href="https://support.eji.org/give/153413/#!/donation/checkout" title="Support the Equal Justice Initiative." target="_blank" rel="noopener noreferrer nofollow">#BlackLivesMatter ✊🏾</a>
|
<a id="blm-banner" href="https://support.eji.org/give/153413/#!/donation/checkout" title="Support the Equal Justice Initiative" target="_blank" rel="noopener noreferrer nofollow">#BlackLivesMatter ✊🏾</a>
|
||||||
|
@ -101,6 +101,10 @@
|
|||||||
from = "/keybase.txt"
|
from = "/keybase.txt"
|
||||||
to = "/.well-known/keybase.txt"
|
to = "/.well-known/keybase.txt"
|
||||||
status = 301
|
status = 301
|
||||||
|
[[redirects]]
|
||||||
|
from = "/stats/badge.svg"
|
||||||
|
to = "https://simpleanalyticsbadge.com/jarv.is?counter=true"
|
||||||
|
status = 200
|
||||||
|
|
||||||
# Moved these random sites/projects elsewhere (mostly GitHub Pages) to keep
|
# Moved these random sites/projects elsewhere (mostly GitHub Pages) to keep
|
||||||
# this repo and domain squeaky clean:
|
# this repo and domain squeaky clean:
|
||||||
|
BIN
static/vendor/fonts/inter-bold-italic-subset.woff
vendored
BIN
static/vendor/fonts/inter-bold-italic-subset.woff
vendored
Binary file not shown.
BIN
static/vendor/fonts/inter-bold-italic-subset.woff2
vendored
BIN
static/vendor/fonts/inter-bold-italic-subset.woff2
vendored
Binary file not shown.
BIN
static/vendor/fonts/inter-bold-subset.woff
vendored
BIN
static/vendor/fonts/inter-bold-subset.woff
vendored
Binary file not shown.
BIN
static/vendor/fonts/inter-bold-subset.woff2
vendored
BIN
static/vendor/fonts/inter-bold-subset.woff2
vendored
Binary file not shown.
BIN
static/vendor/fonts/inter-italic-subset.var.woff2
vendored
BIN
static/vendor/fonts/inter-italic-subset.var.woff2
vendored
Binary file not shown.
BIN
static/vendor/fonts/inter-medium-italic-subset.woff
vendored
BIN
static/vendor/fonts/inter-medium-italic-subset.woff
vendored
Binary file not shown.
BIN
static/vendor/fonts/inter-medium-italic-subset.woff2
vendored
BIN
static/vendor/fonts/inter-medium-italic-subset.woff2
vendored
Binary file not shown.
BIN
static/vendor/fonts/inter-medium-subset.woff
vendored
BIN
static/vendor/fonts/inter-medium-subset.woff
vendored
Binary file not shown.
BIN
static/vendor/fonts/inter-medium-subset.woff2
vendored
BIN
static/vendor/fonts/inter-medium-subset.woff2
vendored
Binary file not shown.
BIN
static/vendor/fonts/inter-regular-italic-subset.woff
vendored
BIN
static/vendor/fonts/inter-regular-italic-subset.woff
vendored
Binary file not shown.
Binary file not shown.
BIN
static/vendor/fonts/inter-regular-subset.woff
vendored
BIN
static/vendor/fonts/inter-regular-subset.woff
vendored
Binary file not shown.
BIN
static/vendor/fonts/inter-regular-subset.woff2
vendored
BIN
static/vendor/fonts/inter-regular-subset.woff2
vendored
Binary file not shown.
BIN
static/vendor/fonts/inter-subset.var.woff2
vendored
BIN
static/vendor/fonts/inter-subset.var.woff2
vendored
Binary file not shown.
48
yarn.lock
48
yarn.lock
@ -907,9 +907,9 @@
|
|||||||
integrity sha1-aaI6OtKcrwCX8G7aWbNh7i8GOfY=
|
integrity sha1-aaI6OtKcrwCX8G7aWbNh7i8GOfY=
|
||||||
|
|
||||||
"@types/node@*":
|
"@types/node@*":
|
||||||
version "14.0.27"
|
version "14.6.0"
|
||||||
resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.27.tgz#a151873af5a5e851b51b3b065c9e63390a9e0eb1"
|
resolved "https://registry.yarnpkg.com/@types/node/-/node-14.6.0.tgz#7d4411bf5157339337d7cff864d9ff45f177b499"
|
||||||
integrity sha512-kVrqXhbclHNHGu9ztnAwSncIgJv/FaxmzXJvGXNdcCpV1b8u1/Mi6z6m0vwy0LzKeXFTPLH0NzwmoJ3fNCIq0g==
|
integrity sha512-mikldZQitV94akrc4sCcSjtJfsTKt4p+e/s0AGscVA6XArQ9kFclP+ZiYUMnq987rc6QlYxXv/EivqlfSLxpKA==
|
||||||
|
|
||||||
"@types/normalize-package-data@^2.4.0":
|
"@types/normalize-package-data@^2.4.0":
|
||||||
version "2.4.0"
|
version "2.4.0"
|
||||||
@ -1136,9 +1136,9 @@ ajv-keywords@^3.1.0, ajv-keywords@^3.4.1:
|
|||||||
integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==
|
integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==
|
||||||
|
|
||||||
ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.2:
|
ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.2:
|
||||||
version "6.12.3"
|
version "6.12.4"
|
||||||
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.3.tgz#18c5af38a111ddeb4f2697bd78d68abc1cabd706"
|
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.4.tgz#0614facc4522127fa713445c6bfd3ebd376e2234"
|
||||||
integrity sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA==
|
integrity sha512-eienB2c9qVQs2KWexhkrdMLVDoIQCz5KSeLxwg9Lzk4DOfBtIK9PQwwufcsn1jjGuf9WZmqPMbGxOzfcuphJCQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
fast-deep-equal "^3.1.1"
|
fast-deep-equal "^3.1.1"
|
||||||
fast-json-stable-stringify "^2.0.0"
|
fast-json-stable-stringify "^2.0.0"
|
||||||
@ -1507,9 +1507,9 @@ bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.4.0:
|
|||||||
integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==
|
integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==
|
||||||
|
|
||||||
bn.js@^5.1.1:
|
bn.js@^5.1.1:
|
||||||
version "5.1.2"
|
version "5.1.3"
|
||||||
resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.2.tgz#c9686902d3c9a27729f43ab10f9d79c2004da7b0"
|
resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.3.tgz#beca005408f642ebebea80b042b4d18d2ac0ee6b"
|
||||||
integrity sha512-40rZaf3bUNKTVYu9sIeeEGOg7g14Yvnj9kH7b50EiwX0Q7A6umbvfI5tvHaOERH0XigqKkfLkFQxzb4e6CIXnA==
|
integrity sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ==
|
||||||
|
|
||||||
body-parser@1.19.0, body-parser@^1.19.0:
|
body-parser@1.19.0, body-parser@^1.19.0:
|
||||||
version "1.19.0"
|
version "1.19.0"
|
||||||
@ -1808,14 +1808,14 @@ camelcase@^5.0.0, camelcase@^5.3.1:
|
|||||||
integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
|
integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
|
||||||
|
|
||||||
caniuse-db@^1.0.30001090:
|
caniuse-db@^1.0.30001090:
|
||||||
version "1.0.30001113"
|
version "1.0.30001115"
|
||||||
resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30001113.tgz#a4ad3a3cc93d95d3218d0b833868b0fa436cbca0"
|
resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30001115.tgz#fe52adf78535b8956b3df8b36870593b12cba7a1"
|
||||||
integrity sha512-JOGTJXdeXlTokXq79+cAuQp8OmaYXtuK82bJpar9JvEyAag5qRHcMwDbCOvSSwGjEOJcRli9Bs+58Kflitul8g==
|
integrity sha512-g1ZFLCOzTIk6QKTqqxRYV3GlW9SfeSAh2J1HYmeuj6YVnOBe7uCHybWJyWVlhCwjtQtq9B84WN1hIQMa3D5ghg==
|
||||||
|
|
||||||
caniuse-lite@^1.0.30000887, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001111:
|
caniuse-lite@^1.0.30000887, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001111:
|
||||||
version "1.0.30001113"
|
version "1.0.30001115"
|
||||||
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001113.tgz#22016ab55b5a8b04fa00ca342d9ee1b98df48065"
|
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001115.tgz#c04cd828883ba47f6f776312e0817bcc9040cfa4"
|
||||||
integrity sha512-qMvjHiKH21zzM/VDZr6oosO6Ri3U0V2tC015jRXjOecwQCJtsU5zklTNTk31jQbIOP8gha0h1ccM/g0ECP+4BA==
|
integrity sha512-NZrG0439ePYna44lJX8evHX2L7Z3/z3qjVLnHgbBb/duNEnGo348u+BQS5o4HTWcrb++100dHFrU36IesIrC1Q==
|
||||||
|
|
||||||
caw@^2.0.0, caw@^2.0.1:
|
caw@^2.0.0, caw@^2.0.1:
|
||||||
version "2.0.1"
|
version "2.0.1"
|
||||||
@ -2753,9 +2753,9 @@ ee-first@1.1.1:
|
|||||||
integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
|
integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
|
||||||
|
|
||||||
electron-to-chromium@^1.3.523:
|
electron-to-chromium@^1.3.523:
|
||||||
version "1.3.531"
|
version "1.3.534"
|
||||||
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.531.tgz#fe432e23c306f7b3579506de9ca63703ef086b9d"
|
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.534.tgz#fc7af8518dd00a5b22a24aed3f116b5d097e2330"
|
||||||
integrity sha512-cRdM9noPSUvZ2TCJByhFL78amPMjNZlGJG27EPuJZK0CwWzBfj3ei7hJh0hNsjvgC0BayRW8Bc06DTCELcMC9Q==
|
integrity sha512-7x2S3yUrspNHQOoPk+Eo+iHViSiJiEGPI6BpmLy1eT2KRNGCkBt/NUYqjfXLd1DpDCQp7n3+LfA1RkbG+LqTZQ==
|
||||||
|
|
||||||
elliptic@^6.5.3:
|
elliptic@^6.5.3:
|
||||||
version "6.5.3"
|
version "6.5.3"
|
||||||
@ -4821,9 +4821,9 @@ lint-staged@^10.2.11:
|
|||||||
stringify-object "^3.3.0"
|
stringify-object "^3.3.0"
|
||||||
|
|
||||||
listr2@^2.1.0:
|
listr2@^2.1.0:
|
||||||
version "2.5.1"
|
version "2.6.0"
|
||||||
resolved "https://registry.yarnpkg.com/listr2/-/listr2-2.5.1.tgz#f265dddf916c8a9b475437b34ae85a7d8f495c7a"
|
resolved "https://registry.yarnpkg.com/listr2/-/listr2-2.6.0.tgz#788a3d202978a1b8582062952cbc49272c8e206a"
|
||||||
integrity sha512-qkNRW70SwfwWLD/eiaTf2tfgWT/ZvjmMsnEFJOCzac0cjcc8rYHDBr1eQhRxopj6lZO7Oa5sS/pZzS6q+BsX+w==
|
integrity sha512-nwmqTJYQQ+AsKb4fCXH/6/UmLCEDL1jkRAdSn9M6cEUzoRGrs33YD/3N86gAZQnGZ6hxV18XSdlBcJ1GTmetJA==
|
||||||
dependencies:
|
dependencies:
|
||||||
chalk "^4.1.0"
|
chalk "^4.1.0"
|
||||||
cli-truncate "^2.1.0"
|
cli-truncate "^2.1.0"
|
||||||
@ -4931,9 +4931,9 @@ lodash.pairs@^3.0.1:
|
|||||||
lodash.keys "^3.0.0"
|
lodash.keys "^3.0.0"
|
||||||
|
|
||||||
lodash@^4.17.11, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19:
|
lodash@^4.17.11, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19:
|
||||||
version "4.17.19"
|
version "4.17.20"
|
||||||
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b"
|
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52"
|
||||||
integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==
|
integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==
|
||||||
|
|
||||||
log-symbols@^2.2.0:
|
log-symbols@^2.2.0:
|
||||||
version "2.2.0"
|
version "2.2.0"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user