diff options
| -rw-r--r-- | .gitignore | 4 | ||||
| -rw-r--r-- | .vscode/settings.json | 1 | ||||
| -rw-r--r-- | assets/glyphs.txt (renamed from src/glyphs.txt) | 2 | ||||
| -rw-r--r-- | assets/iosevka-term-ss09-bold.ttf (renamed from src/iosevka-term-ss09-bold.ttf) | bin | 1557444 -> 1557444 bytes | |||
| -rw-r--r-- | assets/iosevka-term-ss09-regular.ttf (renamed from src/iosevka-term-ss09-regular.ttf) | bin | 1541132 -> 1541132 bytes | |||
| -rw-r--r-- | assets/style.scss | 331 | ||||
| -rwxr-xr-x | build.sh | 24 | ||||
| -rw-r--r-- | content/index.md | 29 | ||||
| -rw-r--r-- | dist/index.html | 86 | ||||
| -rw-r--r-- | package.json | 7 | ||||
| -rw-r--r-- | postcss.config.js | 7 | ||||
| -rw-r--r-- | src/style.scss | 301 | ||||
| -rw-r--r-- | templates/base.html | 67 | ||||
| -rw-r--r-- | templates/pageHeader.html | 18 | ||||
| -rw-r--r-- | templates/pageHeaderSm.html | 11 | ||||
| -rwxr-xr-x | watch.sh | 5 | ||||
| -rw-r--r-- | yarn.lock | 1651 |
17 files changed, 2144 insertions, 400 deletions
| @@ -1,2 +1,2 @@ | |||
| 1 | dist/*.css | 1 | node_modules |
| 2 | dist/*.woff2 | 2 | dist |
diff --git a/.vscode/settings.json b/.vscode/settings.json index eaa1194..808b831 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json | |||
| @@ -1,4 +1,3 @@ | |||
| 1 | { | 1 | { |
| 2 | "editor.formatOnSave": true, | ||
| 3 | "git.enableCommitSigning": false | 2 | "git.enableCommitSigning": false |
| 4 | } | 3 | } |
diff --git a/src/glyphs.txt b/assets/glyphs.txt index ac0461a..0755cf9 100644 --- a/src/glyphs.txt +++ b/assets/glyphs.txt | |||
| @@ -1 +1 @@ | |||
| !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`´abcdefghijklmnopqrstuvwxyz{|}~äöüÄÖÜßẞ↓↙←↖↑↗→↘€»«„“”·…°’‾█▓▒░ ▀▄‐╭╮─│╰╯┌┐└┘├╱╲╳ʻ‘ | !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`´abcdefghijklmnopqrstuvwxyz{|}~äöüÄÖÜßẞ↓↙←↖↑↗→↘€»«„“”·…°’‾█▓▒░ ▀▄‐╭╮─│╰╯┌┐└┘├╱╲╳ʻ‘⋀ | ||
diff --git a/src/iosevka-term-ss09-bold.ttf b/assets/iosevka-term-ss09-bold.ttf index 85915cf..85915cf 100644 --- a/src/iosevka-term-ss09-bold.ttf +++ b/assets/iosevka-term-ss09-bold.ttf | |||
| Binary files differ | |||
diff --git a/src/iosevka-term-ss09-regular.ttf b/assets/iosevka-term-ss09-regular.ttf index 83ddee6..83ddee6 100644 --- a/src/iosevka-term-ss09-regular.ttf +++ b/assets/iosevka-term-ss09-regular.ttf | |||
| Binary files differ | |||
diff --git a/assets/style.scss b/assets/style.scss new file mode 100644 index 0000000..6889798 --- /dev/null +++ b/assets/style.scss | |||
| @@ -0,0 +1,331 @@ | |||
| 1 | $font-size: 17px; | ||
| 2 | $heading-font-size: 18px; | ||
| 3 | $line-height: 1.4; | ||
| 4 | |||
| 5 | $page-item-prefix-max-chars: 3ch; | ||
| 6 | $page-item-prefix-pad: 2ch; | ||
| 7 | $page-item-prefix-width: $page-item-prefix-max-chars + $page-item-prefix-pad; | ||
| 8 | |||
| 9 | $subcontent-indent: 4ch; | ||
| 10 | |||
| 11 | @function px-to-em($s, $b: $font-size) { | ||
| 12 | @return 1 / ($b / 1px) * ($s / 1px) * 1em; | ||
| 13 | } | ||
| 14 | |||
| 15 | @function str-repeat($s, $n) { | ||
| 16 | $r: ""; | ||
| 17 | @while $n > 0 { | ||
| 18 | $r: $r + $s; | ||
| 19 | $n: $n - 1; | ||
| 20 | } | ||
| 21 | @return $r; | ||
| 22 | } | ||
| 23 | |||
| 24 | :root { | ||
| 25 | --gray1: hsl(270, 0%, 9.7%); | ||
| 26 | --gray2: hsl(270, 1%, 29%); | ||
| 27 | --gray3: hsl(270, 2%, 54%); | ||
| 28 | --gray4: hsl(270, 2%, 73%); | ||
| 29 | --gray5: hsl(270, 2%, 83%); | ||
| 30 | --gray6: hsl(270, 2%, 100%); | ||
| 31 | |||
| 32 | --bg: var(--gray1); | ||
| 33 | --bg-plus: var(--gray2); | ||
| 34 | --fg-minus: var(--gray3); | ||
| 35 | --fg: var(--gray4); | ||
| 36 | --fg-plus: var(--gray6); | ||
| 37 | |||
| 38 | --select-bg: hsla(270, 2%, 100%, 0.996); | ||
| 39 | --select-fg: var(--gray1); | ||
| 40 | |||
| 41 | --code-fg: var(--fg-minus); | ||
| 42 | --code-block-fg: var(--fg-minus); | ||
| 43 | |||
| 44 | --page-item-prefix-fg: var(--fg-minus); | ||
| 45 | |||
| 46 | --link-idle-fg: var(--gray6); | ||
| 47 | --link-visited-fg: var(--gray5); | ||
| 48 | --link-hover-bg: var(--gray6); | ||
| 49 | --link-hover-fg: var(--gray1); | ||
| 50 | |||
| 51 | --heading: var(--fg-plus); | ||
| 52 | } | ||
| 53 | |||
| 54 | ::selection { | ||
| 55 | color: var(--select-fg); | ||
| 56 | background-color: var(--select-bg); | ||
| 57 | } | ||
| 58 | |||
| 59 | html, | ||
| 60 | pre, | ||
| 61 | code { | ||
| 62 | font-family: "Iosevka Term SS09"; | ||
| 63 | font-feature-settings: "calt" 0, "dlig" 1; | ||
| 64 | } | ||
| 65 | |||
| 66 | html { | ||
| 67 | font-size: px-to-em($font-size, 16px); | ||
| 68 | line-height: $line-height; | ||
| 69 | background-color: var(--bg); | ||
| 70 | color: var(--fg); | ||
| 71 | } | ||
| 72 | |||
| 73 | body { | ||
| 74 | margin: 2em; | ||
| 75 | padding: 0; | ||
| 76 | |||
| 77 | @media (max-width: 700px) { | ||
| 78 | margin: 1em; | ||
| 79 | } | ||
| 80 | } | ||
| 81 | |||
| 82 | main { | ||
| 83 | max-width: 80ch; | ||
| 84 | margin: 0 auto; | ||
| 85 | } | ||
| 86 | |||
| 87 | .c-page-header { | ||
| 88 | margin-bottom: $line-height * 2rem; | ||
| 89 | overflow: hidden; | ||
| 90 | |||
| 91 | &::after { | ||
| 92 | position: relative; | ||
| 93 | z-index: -10; | ||
| 94 | content: str-repeat("░", 120); | ||
| 95 | display: block; | ||
| 96 | height: $line-height; | ||
| 97 | margin-top: px-to-em(2px); | ||
| 98 | padding-top: px-to-em(2px); | ||
| 99 | color: var(--fg-minus); | ||
| 100 | border-top: 1px solid var(--fg-minus); | ||
| 101 | } | ||
| 102 | |||
| 103 | &--sm { | ||
| 104 | display: none; | ||
| 105 | } | ||
| 106 | |||
| 107 | @media (max-width: 700px) { | ||
| 108 | display: none; | ||
| 109 | |||
| 110 | &--sm, | ||
| 111 | &--nohide { | ||
| 112 | display: block; | ||
| 113 | } | ||
| 114 | } | ||
| 115 | } | ||
| 116 | |||
| 117 | code { | ||
| 118 | color: var(--code-fg); | ||
| 119 | } | ||
| 120 | |||
| 121 | pre { | ||
| 122 | margin: 0; | ||
| 123 | color: var(--code-block-fg); | ||
| 124 | |||
| 125 | strong { | ||
| 126 | font-weight: normal; | ||
| 127 | } | ||
| 128 | } | ||
| 129 | |||
| 130 | strong { | ||
| 131 | color: var(--fg-plus); | ||
| 132 | font-weight: bold; | ||
| 133 | } | ||
| 134 | |||
| 135 | ul, | ||
| 136 | ol { | ||
| 137 | margin: ($line-height * 1rem) 0 0; | ||
| 138 | padding: 0; | ||
| 139 | list-style: none; | ||
| 140 | |||
| 141 | > li { | ||
| 142 | position: relative; | ||
| 143 | padding-left: $subcontent-indent; | ||
| 144 | |||
| 145 | &::before { | ||
| 146 | position: absolute; | ||
| 147 | display: inline-block; | ||
| 148 | width: $subcontent-indent; | ||
| 149 | margin-left: -1 * $subcontent-indent; | ||
| 150 | color: var(--fg-minus); | ||
| 151 | } | ||
| 152 | } | ||
| 153 | } | ||
| 154 | |||
| 155 | ul { | ||
| 156 | > li::before { | ||
| 157 | content: "-"; | ||
| 158 | } | ||
| 159 | |||
| 160 | &.refs > li { | ||
| 161 | padding-left: 0; | ||
| 162 | |||
| 163 | &::before { | ||
| 164 | display: none; | ||
| 165 | } | ||
| 166 | } | ||
| 167 | } | ||
| 168 | |||
| 169 | ol { | ||
| 170 | counter-reset: cnt; | ||
| 171 | |||
| 172 | > li { | ||
| 173 | counter-increment: cnt; | ||
| 174 | |||
| 175 | &::before { | ||
| 176 | content: counter(cnt) "."; | ||
| 177 | } | ||
| 178 | } | ||
| 179 | } | ||
| 180 | |||
| 181 | h1, | ||
| 182 | h2, | ||
| 183 | h3 { | ||
| 184 | margin: ($line-height * 2rem) 0 0; | ||
| 185 | |||
| 186 | + h1, | ||
| 187 | + h2, | ||
| 188 | + h3 { | ||
| 189 | margin-top: $line-height * 1rem; | ||
| 190 | } | ||
| 191 | } | ||
| 192 | |||
| 193 | h1 { | ||
| 194 | text-transform: uppercase; | ||
| 195 | font-size: px-to-em($heading-font-size); | ||
| 196 | color: var(--heading); | ||
| 197 | } | ||
| 198 | |||
| 199 | h2 { | ||
| 200 | font-size: 1em; | ||
| 201 | color: var(--heading); | ||
| 202 | } | ||
| 203 | |||
| 204 | h3 { | ||
| 205 | font-size: 1em; | ||
| 206 | } | ||
| 207 | |||
| 208 | p { | ||
| 209 | margin: ($line-height * 1em) 0 0; | ||
| 210 | } | ||
| 211 | |||
| 212 | a { | ||
| 213 | position: relative; | ||
| 214 | z-index: 1000; | ||
| 215 | padding: 0.1em 0.3em; | ||
| 216 | margin: 0 -0.3em; | ||
| 217 | color: var(--link-idle-fg); | ||
| 218 | |||
| 219 | &:visited { | ||
| 220 | color: var(--link-visited-fg); | ||
| 221 | } | ||
| 222 | |||
| 223 | &:hover { | ||
| 224 | background-color: var(--link-hover-bg); | ||
| 225 | color: var(--link-hover-fg); | ||
| 226 | text-decoration: none; | ||
| 227 | } | ||
| 228 | } | ||
| 229 | |||
| 230 | hr { | ||
| 231 | height: 1px; | ||
| 232 | margin: ($line-height * 2rem) 0 ($line-height * 2rem); | ||
| 233 | background-color: var(--bg-plus); | ||
| 234 | border: 0; | ||
| 235 | |||
| 236 | @media (max-width: 700px) { | ||
| 237 | margin-left: 0; | ||
| 238 | } | ||
| 239 | } | ||
| 240 | |||
| 241 | blockquote { | ||
| 242 | position: relative; | ||
| 243 | margin: ($line-height * 1rem) 0 0; | ||
| 244 | padding-left: calc(#{$subcontent-indent} - 2px); | ||
| 245 | border-left: 2px solid var(--bg-plus); | ||
| 246 | } | ||
| 247 | |||
| 248 | .s-page { | ||
| 249 | padding-left: $page-item-prefix-width; | ||
| 250 | |||
| 251 | h1, | ||
| 252 | h2, | ||
| 253 | h3, | ||
| 254 | ul.refs > li, | ||
| 255 | pre { | ||
| 256 | position: relative; | ||
| 257 | margin-left: -1 * $page-item-prefix-width; | ||
| 258 | padding-left: $page-item-prefix-width; | ||
| 259 | |||
| 260 | &::before { | ||
| 261 | position: absolute; | ||
| 262 | box-sizing: border-box; | ||
| 263 | display: inline-block; | ||
| 264 | font-size: 1rem; | ||
| 265 | margin-left: -1 * $page-item-prefix-width; | ||
| 266 | padding-right: $page-item-prefix-pad; | ||
| 267 | width: $page-item-prefix-width; | ||
| 268 | color: var(--page-item-prefix-fg); | ||
| 269 | font-weight: normal; | ||
| 270 | text-align: right; | ||
| 271 | } | ||
| 272 | |||
| 273 | @media (max-width: 700px) { | ||
| 274 | margin-left: 0; | ||
| 275 | padding-left: 0; | ||
| 276 | |||
| 277 | &::before { | ||
| 278 | display: none; | ||
| 279 | } | ||
| 280 | } | ||
| 281 | } | ||
| 282 | |||
| 283 | h1::before { | ||
| 284 | content: "#"; | ||
| 285 | } | ||
| 286 | |||
| 287 | h2::before { | ||
| 288 | content: "##"; | ||
| 289 | } | ||
| 290 | |||
| 291 | h3::before { | ||
| 292 | content: "###"; | ||
| 293 | } | ||
| 294 | |||
| 295 | ul.refs > li::before { | ||
| 296 | content: "|>"; | ||
| 297 | } | ||
| 298 | |||
| 299 | pre::before { | ||
| 300 | content: str-repeat("``\A", 40); | ||
| 301 | height: 100%; | ||
| 302 | color: var(--page-item-prefix-fg); | ||
| 303 | overflow: hidden; | ||
| 304 | } | ||
| 305 | |||
| 306 | hr { | ||
| 307 | margin-left: -1 * $page-item-prefix-width; | ||
| 308 | } | ||
| 309 | |||
| 310 | .c-page-header { | ||
| 311 | margin-left: -1 * $page-item-prefix-width; | ||
| 312 | padding-left: $page-item-prefix-width; | ||
| 313 | |||
| 314 | &::after { | ||
| 315 | margin-left: -1 * $page-item-prefix-width; | ||
| 316 | } | ||
| 317 | |||
| 318 | @media (max-width: 700px) { | ||
| 319 | margin-left: 0; | ||
| 320 | padding-left: 0; | ||
| 321 | |||
| 322 | &::after { | ||
| 323 | margin-left: 0; | ||
| 324 | } | ||
| 325 | } | ||
| 326 | } | ||
| 327 | |||
| 328 | @media (max-width: 700px) { | ||
| 329 | padding-left: 0; | ||
| 330 | } | ||
| 331 | } | ||
| @@ -1,15 +1,25 @@ | |||
| 1 | #!/bin/bash | 1 | #!/bin/bash |
| 2 | 2 | ||
| 3 | sassc --style expanded src/style.scss dist/style.css | 3 | SITE_TITLE="Volpeon's Den" |
| 4 | 4 | ||
| 5 | pyftsubset src/iosevka-term-ss09-regular.ttf \ | 5 | rm -rf dist/* |
| 6 | --text-file='src/glyphs.txt' \ | 6 | |
| 7 | --layout-features+=ss09,PURS \ | 7 | sassc assets/style.scss dist/style.css |
| 8 | node_modules/.bin/postcss dist/style.css -r | ||
| 9 | |||
| 10 | pyftsubset assets/iosevka-term-ss09-regular.ttf \ | ||
| 11 | --text-file='assets/glyphs.txt' \ | ||
| 12 | --layout-features+=ss09,dlig \ | ||
| 8 | --flavor='woff2' \ | 13 | --flavor='woff2' \ |
| 9 | --output-file='dist/iosevka-term-ss09-regular.woff2' | 14 | --output-file='dist/iosevka-term-ss09-regular.woff2' |
| 10 | 15 | ||
| 11 | pyftsubset src/iosevka-term-ss09-bold.ttf \ | 16 | pyftsubset assets/iosevka-term-ss09-bold.ttf \ |
| 12 | --text-file='src/glyphs.txt' \ | 17 | --text-file='assets/glyphs.txt' \ |
| 13 | --layout-features+=ss09,PURS \ | 18 | --layout-features+=ss09,dlig \ |
| 14 | --flavor='woff2' \ | 19 | --flavor='woff2' \ |
| 15 | --output-file='dist/iosevka-term-ss09-bold.woff2' | 20 | --output-file='dist/iosevka-term-ss09-bold.woff2' |
| 21 | |||
| 22 | find content/ \ | ||
| 23 | -iname "*.md" \ | ||
| 24 | -type f \ | ||
| 25 | -exec sh -c 'TARGET=dist/$(echo ${0%.md}.html | cut -sd / -f 2-); mkdir -p $(dirname $TARGET) && pandoc "${0}" -t html5 --template templates/base.html -o "$TARGET" --metadata sitetitle="$1"' {} "$SITE_TITLE" \; | ||
diff --git a/content/index.md b/content/index.md new file mode 100644 index 0000000..14b1337 --- /dev/null +++ b/content/index.md | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | --- | ||
| 2 | title: "Index" | ||
| 3 | ismain: true | ||
| 4 | --- | ||
| 5 | |||
| 6 | # Volpeon's den | ||
| 7 | |||
| 8 | Welcome to my website! I'm Volpeon and here's an [inline link](#). | ||
| 9 | |||
| 10 | > Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et | ||
| 11 | > dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet | ||
| 12 | > clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. | ||
| 13 | |||
| 14 | Welcome to my website! I'm Volpeon and here's an [inline link](#). | ||
| 15 | |||
| 16 | ## Subtitle | ||
| 17 | |||
| 18 | ### Last one | ||
| 19 | |||
| 20 | - Lorem ipsum dolor sit amet | ||
| 21 | - Another item | ||
| 22 | |||
| 23 | 1. Lorem ipsum dolor sit amet | ||
| 24 | 2. Another item | ||
| 25 | |||
| 26 | <ul class="refs"> | ||
| 27 | <li><a href="#">Lorem ipsum dolor sit amet</a></li> | ||
| 28 | <li><a href="#">Another item</a></li> | ||
| 29 | </ul> | ||
diff --git a/dist/index.html b/dist/index.html deleted file mode 100644 index d644cac..0000000 --- a/dist/index.html +++ /dev/null | |||
| @@ -1,86 +0,0 @@ | |||
| 1 | <!DOCTYPE html> | ||
| 2 | <html> | ||
| 3 | |||
| 4 | <head> | ||
| 5 | <meta charset="utf-8" /> | ||
| 6 | <meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
| 7 | <title>Volpeon's den</title> | ||
| 8 | <link rel="stylesheet" href="./style.css" /> | ||
| 9 | <style> | ||
| 10 | @font-face { | ||
| 11 | font-family: "Iosevka Term SS09"; | ||
| 12 | font-style: normal; | ||
| 13 | font-weight: normal; | ||
| 14 | src: url("./iosevka-term-ss09-regular.woff2") format("woff2"); | ||
| 15 | } | ||
| 16 | |||
| 17 | @font-face { | ||
| 18 | font-family: "Iosevka Term SS09"; | ||
| 19 | font-style: normal; | ||
| 20 | font-weight: bold; | ||
| 21 | src: url("./iosevka-term-ss09-bold.woff2") format("woff2"); | ||
| 22 | } | ||
| 23 | </style> | ||
| 24 | </head> | ||
| 25 | |||
| 26 | <body> | ||
| 27 | <main> | ||
| 28 | <header> | ||
| 29 | <!-- | ||
| 30 | ' | ' ' ' ' ' | | | ' ' | ||
| 31 | | ' ' ' ' //\_ ' | ' . | ' ' | ||
| 32 | .| ' '____,...,______..,_~`` -`.., ' | ' | ' ' | ||
| 33 | | '_,~´"' , . ,~--´ ' _| | . |~~.__ ' ' | ||
| 34 | | | ,-" _.-|~/ |..,____,) ,/,,"' '_( | ' |) ) ' ' | ||
| 35 | '| \__,~"´ /:) / |:\ \ ,~( ) . | | ) `, ' _.._ | ||
| 36 | ___\___.___:____(:/\_-,______\:.\_-,____.__\_.\______.__:___\__.___)_.___,/____ | ||
| 37 | ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ | ||
| 38 | --> | ||
| 39 | <pre> | ||
| 40 | ' | ' ' ' ' ' | | | ' ' | ||
| 41 | | ' ' ' ' <strong>//\_</strong> ' | ' . | ' ' | ||
| 42 | .| ' '<strong>____,...,______..,_~`` -`..,</strong> ' | ' | ' ' | ||
| 43 | | '<strong>_,~´"' , . ,~--´</strong> ' _| | . |~~.__ ' ' | ||
| 44 | | | <strong>,-" _.-|~/ |..,____,) ,/,,"'</strong> '_( | ' |) ) ' ' | ||
| 45 | '| <strong>\__,~"´ /:) / |:\ \</strong> ,~( ) . | | ) `, ' _,--. | ||
| 46 | \ . ' : <strong>(:/\_-, \:.\_-,</strong> . \ .\ . : \ . ) . ' ,/ </pre> | ||
| 47 | </header> | ||
| 48 | |||
| 49 | <h1>Volpeon's den</h1> | ||
| 50 | |||
| 51 | <p> | ||
| 52 | Welcome to my website! I'm Volpeon and here's an <a href="#">inline link</a>. | ||
| 53 | </p> | ||
| 54 | |||
| 55 | <blockquote> | ||
| 56 | Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et | ||
| 57 | dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet | ||
| 58 | clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. | ||
| 59 | </blockquote> | ||
| 60 | |||
| 61 | <p> | ||
| 62 | Welcome to my website! I'm Volpeon and here's an <a href="#">inline link</a>. | ||
| 63 | </p> | ||
| 64 | |||
| 65 | <h2>Subtitle</h2> | ||
| 66 | |||
| 67 | <h3>Last one</h3> | ||
| 68 | |||
| 69 | <ul> | ||
| 70 | <li>Item 1</li> | ||
| 71 | <li>Another item</li> | ||
| 72 | </ul> | ||
| 73 | |||
| 74 | <ol> | ||
| 75 | <li>Item 1</li> | ||
| 76 | <li>Another item</li> | ||
| 77 | </ol> | ||
| 78 | |||
| 79 | <ul class="refs"> | ||
| 80 | <li><a href="#">Item 1</a></li> | ||
| 81 | <li><a href="#">Another item</a></li> | ||
| 82 | </ul> | ||
| 83 | </main> | ||
| 84 | </body> | ||
| 85 | |||
| 86 | </html> | ||
diff --git a/package.json b/package.json new file mode 100644 index 0000000..5a62ba9 --- /dev/null +++ b/package.json | |||
| @@ -0,0 +1,7 @@ | |||
| 1 | { | ||
| 2 | "devDependencies": { | ||
| 3 | "cssnano": "^4.1.10", | ||
| 4 | "postcss": "^8.2.1", | ||
| 5 | "postcss-cli": "^8.3.1" | ||
| 6 | } | ||
| 7 | } | ||
diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000..97f9abb --- /dev/null +++ b/postcss.config.js | |||
| @@ -0,0 +1,7 @@ | |||
| 1 | module.exports = { | ||
| 2 | plugins: [ | ||
| 3 | require("cssnano")({ | ||
| 4 | preset: "default", | ||
| 5 | }), | ||
| 6 | ], | ||
| 7 | }; | ||
diff --git a/src/style.scss b/src/style.scss deleted file mode 100644 index 2ad43cb..0000000 --- a/src/style.scss +++ /dev/null | |||
| @@ -1,301 +0,0 @@ | |||
| 1 | $font-size: 17px; | ||
| 2 | $heading-font-size: 18px; | ||
| 3 | $line-height: 1.4; | ||
| 4 | |||
| 5 | $page-item-indent-max-chars: 3ch; | ||
| 6 | $page-item-indent-pad: 2ch; | ||
| 7 | $page-item-indent: $page-item-indent-max-chars + $page-item-indent-pad; | ||
| 8 | |||
| 9 | $page-subitem-indent: 4ch; | ||
| 10 | |||
| 11 | :root { | ||
| 12 | --gray1: hsl(270, 0%, 9.7%); // bg | ||
| 13 | --gray2: hsl(270, 1%, 29%); // bg-plus | ||
| 14 | --gray3: hsl(270, 2%, 54%); // text-minus | ||
| 15 | --gray4: hsl(270, 2%, 73%); // text | ||
| 16 | --gray5: hsl(270, 2%, 100%); // text-plus | ||
| 17 | |||
| 18 | --select-bg: hsla(270, 2%, 100%, 0.996); | ||
| 19 | --select-fg: var(--gray1); | ||
| 20 | |||
| 21 | --page-item-prefix: var(--gray3); | ||
| 22 | |||
| 23 | --link-idle: var(--gray5); | ||
| 24 | --link-hover-bg: var(--gray5); | ||
| 25 | --link-hover-fg: var(--gray1); | ||
| 26 | |||
| 27 | --heading: var(--gray5); | ||
| 28 | } | ||
| 29 | |||
| 30 | @function px-to-em($s, $b: $font-size) { | ||
| 31 | @return 1 / ($b / 1px) * ($s / 1px) * 1em; | ||
| 32 | } | ||
| 33 | |||
| 34 | @function str-repeat($s, $n) { | ||
| 35 | $r: ""; | ||
| 36 | @while $n > 0 { | ||
| 37 | $r: $r + $s; | ||
| 38 | $n: $n - 1; | ||
| 39 | } | ||
| 40 | @return $r; | ||
| 41 | } | ||
| 42 | |||
| 43 | @mixin item($prefix: "") { | ||
| 44 | position: relative; | ||
| 45 | |||
| 46 | &::before { | ||
| 47 | position: absolute; | ||
| 48 | content: $prefix; | ||
| 49 | box-sizing: border-box; | ||
| 50 | display: inline-block; | ||
| 51 | font-size: 1rem; | ||
| 52 | margin-left: -1 * $page-item-indent; | ||
| 53 | padding-right: $page-item-indent-pad; | ||
| 54 | width: $page-item-indent; | ||
| 55 | color: var(--page-item-prefix); | ||
| 56 | font-weight: normal; | ||
| 57 | text-align: right; | ||
| 58 | } | ||
| 59 | |||
| 60 | @media (max-width: 700px) { | ||
| 61 | &::before { | ||
| 62 | display: none; | ||
| 63 | } | ||
| 64 | } | ||
| 65 | } | ||
| 66 | |||
| 67 | @keyframes flicker { | ||
| 68 | 0% { | ||
| 69 | opacity: 0; | ||
| 70 | } | ||
| 71 | 25% { | ||
| 72 | opacity: 1; | ||
| 73 | } | ||
| 74 | 50% { | ||
| 75 | opacity: 0; | ||
| 76 | } | ||
| 77 | } | ||
| 78 | |||
| 79 | ::selection { | ||
| 80 | color: var(--select-fg); | ||
| 81 | background-color: var(--select-bg); | ||
| 82 | } | ||
| 83 | |||
| 84 | html { | ||
| 85 | font-family: "Iosevka Term SS09"; | ||
| 86 | font-feature-settings: "calt" 0, "PURS" 1; | ||
| 87 | font-size: px-to-em($font-size, 16px); | ||
| 88 | line-height: $line-height; | ||
| 89 | background-color: var(--gray1); | ||
| 90 | color: var(--gray4); | ||
| 91 | } | ||
| 92 | |||
| 93 | body { | ||
| 94 | margin: 2em 2em 2em 1em; | ||
| 95 | padding: 0; | ||
| 96 | |||
| 97 | @media (max-width: 700px) { | ||
| 98 | margin: 1em; | ||
| 99 | } | ||
| 100 | } | ||
| 101 | |||
| 102 | main { | ||
| 103 | max-width: 80ch; | ||
| 104 | margin: 0 auto; | ||
| 105 | padding-left: $page-item-indent; | ||
| 106 | |||
| 107 | @media (max-width: 700px) { | ||
| 108 | padding-left: 0; | ||
| 109 | } | ||
| 110 | } | ||
| 111 | |||
| 112 | header { | ||
| 113 | margin-left: -1 * $page-item-indent; | ||
| 114 | margin-bottom: $line-height * 2rem; | ||
| 115 | padding-left: $page-item-indent; | ||
| 116 | overflow: hidden; | ||
| 117 | |||
| 118 | &::after { | ||
| 119 | position: relative; | ||
| 120 | z-index: -10; | ||
| 121 | content: str-repeat("░", 120); | ||
| 122 | display: block; | ||
| 123 | height: $line-height; | ||
| 124 | margin-top: px-to-em(2px); | ||
| 125 | margin-left: -1 * $page-item-indent; | ||
| 126 | padding-top: px-to-em(2px); | ||
| 127 | color: var(--gray3); | ||
| 128 | border-top: 1px solid var(--gray3); | ||
| 129 | } | ||
| 130 | |||
| 131 | @media (max-width: 700px) { | ||
| 132 | padding-left: 0; | ||
| 133 | |||
| 134 | &, | ||
| 135 | &::after { | ||
| 136 | margin-left: 0; | ||
| 137 | } | ||
| 138 | } | ||
| 139 | } | ||
| 140 | |||
| 141 | pre, | ||
| 142 | code { | ||
| 143 | font-family: "Iosevka Term SS09"; | ||
| 144 | //font-feature-settings: "calt" 0, "PURS" 0; | ||
| 145 | } | ||
| 146 | |||
| 147 | pre { | ||
| 148 | @include item; | ||
| 149 | |||
| 150 | margin: 0; | ||
| 151 | color: var(--gray3); | ||
| 152 | |||
| 153 | &::before { | ||
| 154 | content: str-repeat("``\A", 40); | ||
| 155 | height: 100%; | ||
| 156 | color: var(--page-item-prefix); | ||
| 157 | overflow: hidden; | ||
| 158 | } | ||
| 159 | |||
| 160 | strong { | ||
| 161 | font-weight: normal; | ||
| 162 | } | ||
| 163 | } | ||
| 164 | |||
| 165 | strong { | ||
| 166 | color: var(--gray5); | ||
| 167 | font-weight: bold; | ||
| 168 | } | ||
| 169 | |||
| 170 | ul, | ||
| 171 | ol { | ||
| 172 | margin: ($line-height * 1rem) 0 0; | ||
| 173 | padding: 0; | ||
| 174 | list-style: none; | ||
| 175 | |||
| 176 | > li { | ||
| 177 | &::before { | ||
| 178 | display: inline-block; | ||
| 179 | color: var(--page-item-prefix); | ||
| 180 | text-align: right; | ||
| 181 | } | ||
| 182 | } | ||
| 183 | } | ||
| 184 | |||
| 185 | ul { | ||
| 186 | > li::before { | ||
| 187 | content: "-"; | ||
| 188 | padding-right: $page-subitem-indent - 1; | ||
| 189 | } | ||
| 190 | |||
| 191 | &.refs { | ||
| 192 | > li { | ||
| 193 | @include item("|>"); | ||
| 194 | } | ||
| 195 | } | ||
| 196 | } | ||
| 197 | |||
| 198 | ol { | ||
| 199 | counter-reset: cnt; | ||
| 200 | |||
| 201 | > li { | ||
| 202 | counter-increment: cnt; | ||
| 203 | |||
| 204 | &::before { | ||
| 205 | content: counter(cnt) "."; | ||
| 206 | padding-right: $page-subitem-indent - 2; | ||
| 207 | } | ||
| 208 | } | ||
| 209 | } | ||
| 210 | |||
| 211 | h1, | ||
| 212 | h2, | ||
| 213 | h3 { | ||
| 214 | @include item; | ||
| 215 | |||
| 216 | margin: ($line-height * 2rem) 0 0; | ||
| 217 | |||
| 218 | + h1, | ||
| 219 | + h2, | ||
| 220 | + h3 { | ||
| 221 | margin-top: $line-height * 1rem; | ||
| 222 | } | ||
| 223 | } | ||
| 224 | |||
| 225 | h1 { | ||
| 226 | text-transform: uppercase; | ||
| 227 | font-size: px-to-em($heading-font-size); | ||
| 228 | color: var(--heading); | ||
| 229 | |||
| 230 | &::before { | ||
| 231 | content: "#"; | ||
| 232 | } | ||
| 233 | } | ||
| 234 | |||
| 235 | h2 { | ||
| 236 | font-size: 1em; | ||
| 237 | color: var(--heading); | ||
| 238 | |||
| 239 | &::before { | ||
| 240 | content: "##"; | ||
| 241 | } | ||
| 242 | } | ||
| 243 | |||
| 244 | h3 { | ||
| 245 | font-size: 1em; | ||
| 246 | |||
| 247 | &::before { | ||
| 248 | content: "###"; | ||
| 249 | } | ||
| 250 | } | ||
| 251 | |||
| 252 | p { | ||
| 253 | margin: ($line-height * 1em) 0 0; | ||
| 254 | } | ||
| 255 | |||
| 256 | a { | ||
| 257 | position: relative; | ||
| 258 | z-index: 1000; | ||
| 259 | padding: 0.1em 0.3em; | ||
| 260 | margin: 0 -0.3em; | ||
| 261 | color: var(--link-idle); | ||
| 262 | |||
| 263 | &:hover { | ||
| 264 | background-color: var(--link-hover-bg); | ||
| 265 | color: var(--link-hover-fg); | ||
| 266 | text-decoration: none; | ||
| 267 | animation-duration: 0.07s; | ||
| 268 | animation-name: flicker; | ||
| 269 | animation-timing-function: step-start; | ||
| 270 | animation-iteration-count: 3; | ||
| 271 | } | ||
| 272 | } | ||
| 273 | |||
| 274 | hr { | ||
| 275 | height: 1px; | ||
| 276 | margin: ($line-height * 2rem) 0; | ||
| 277 | margin-left: -1 * $page-item-indent; | ||
| 278 | background-color: var(--gray2); | ||
| 279 | border: 0; | ||
| 280 | |||
| 281 | @media (max-width: 700px) { | ||
| 282 | margin-left: 0; | ||
| 283 | } | ||
| 284 | } | ||
| 285 | |||
| 286 | blockquote { | ||
| 287 | position: relative; | ||
| 288 | margin: ($line-height * 1rem) 0 0; | ||
| 289 | padding-left: calc(#{$page-subitem-indent} - 2px); | ||
| 290 | border-left: 2px solid var(--gray2); | ||
| 291 | |||
| 292 | /*&::before { | ||
| 293 | content: str-repeat(">\A", 50); | ||
| 294 | position: absolute; | ||
| 295 | height: 100%; | ||
| 296 | margin-left: -1 * $page-subitem-indent; | ||
| 297 | color: var(--page-item-prefix); | ||
| 298 | overflow: hidden; | ||
| 299 | white-space: pre; | ||
| 300 | }*/ | ||
| 301 | } | ||
diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..1f7613c --- /dev/null +++ b/templates/base.html | |||
| @@ -0,0 +1,67 @@ | |||
| 1 | <!DOCTYPE html> | ||
| 2 | <html> | ||
| 3 | |||
| 4 | <head> | ||
| 5 | <meta charset="utf-8" /> | ||
| 6 | <meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
| 7 | $for(author-meta)$ | ||
| 8 | <meta name="author" content="$author-meta$" /> | ||
| 9 | $endfor$ | ||
| 10 | $if(date-meta)$ | ||
| 11 | <meta name="dcterms.date" content="$date-meta$" /> | ||
| 12 | $endif$ | ||
| 13 | $if(keywords)$ | ||
| 14 | <meta name="keywords" content="$for(keywords)$$keywords$$sep$, $endfor$" /> | ||
| 15 | $endif$ | ||
| 16 | <title>$if(ismain)$$else$$title$ – $endif$$sitetitle$</title> | ||
| 17 | <link rel="stylesheet" href="/style.css" /> | ||
| 18 | <style> | ||
| 19 | @font-face { | ||
| 20 | font-family: "Iosevka Term SS09"; | ||
| 21 | font-style: normal; | ||
| 22 | font-weight: normal; | ||
| 23 | src: url("/iosevka-term-ss09-regular.woff2") format("woff2"); | ||
| 24 | } | ||
| 25 | |||
| 26 | @font-face { | ||
| 27 | font-family: "Iosevka Term SS09"; | ||
| 28 | font-style: normal; | ||
| 29 | font-weight: bold; | ||
| 30 | src: url("/iosevka-term-ss09-bold.woff2") format("woff2"); | ||
| 31 | } | ||
| 32 | </style> | ||
| 33 | </head> | ||
| 34 | |||
| 35 | <body> | ||
| 36 | <main class="s-page"> | ||
| 37 | $if(ismain)$ | ||
| 38 | <header class="c-page-header" role="presentation"> | ||
| 39 | ${pageHeader()} | ||
| 40 | </header> | ||
| 41 | $else$ | ||
| 42 | <header class="c-page-header c-page-header--nohide" role="presentation"> | ||
| 43 | ${pageHeaderSm()} | ||
| 44 | </header> | ||
| 45 | $endif$ | ||
| 46 | |||
| 47 | $body$ | ||
| 48 | </main> | ||
| 49 | |||
| 50 | $if(ismain)$ | ||
| 51 | <template id="header-sm"> | ||
| 52 | <header class="c-page-header c-page-header--sm" role="presentation"> | ||
| 53 | ${pageHeaderSm()} | ||
| 54 | </header> | ||
| 55 | </template> | ||
| 56 | |||
| 57 | <script> | ||
| 58 | var headerEl = document.querySelector(".s-page > header"); | ||
| 59 | var headerTemplateEl = document.getElementById("header-sm"); | ||
| 60 | var headerSmEl = headerTemplateEl.content.cloneNode("true"); | ||
| 61 | |||
| 62 | headerEl.parentElement.insertBefore(headerSmEl, headerEl.nextElementSibling); | ||
| 63 | </script> | ||
| 64 | $endif$ | ||
| 65 | </body> | ||
| 66 | |||
| 67 | </html> | ||
diff --git a/templates/pageHeader.html b/templates/pageHeader.html new file mode 100644 index 0000000..160cbaa --- /dev/null +++ b/templates/pageHeader.html | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | <!-- | ||
| 2 | ' | ' ' ' ' ' | | | ' ' | ||
| 3 | | ' ' ' //\_ ' | ' . | ' ' | ||
| 4 | .| ' ____,...,______..,_~`` -`.., ' | ' | ' ' | ||
| 5 | | _,~´"' , . ,~--´ ' _| | . |~~.__ ' ' | ||
| 6 | | | ,-" _.-|~/ |..,____,) ,/,,"' '_( | ' |) ) ' ' | ||
| 7 | '| \__,~"´ /:) / |:\ \ ,~( ) . | | ) `, ' _.._ | ||
| 8 | ___\___.___:____(:/\_-,______\:.\_-,____.__\_.\______.__:___\__.___)_.___,/____ | ||
| 9 | ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ | ||
| 10 | --> | ||
| 11 | <pre> | ||
| 12 | ' | ' ' ' ' ' | | | ' ' | ||
| 13 | | ' ' ' <strong>//\_</strong> ' | ' . | ' ' | ||
| 14 | .| ' <strong>____,...,______..,_~`` -`..,</strong> ' | ' | ' ' | ||
| 15 | | <strong>_,~´"' , . ,~--´</strong> ' _| | . |~~.__ ' ' | ||
| 16 | | | <strong>,-" _.-|~/ |..,____,) ,/,,"'</strong> '_( | ' |) ) ' ' | ||
| 17 | '| <strong>\__,~"´ /:) / |:\ \</strong> ,~( ) . | | ) `, ' _,--. | ||
| 18 | \ . : <strong>(:/\_-, \:.\_-,</strong> . \ .\ . : \ . ) . ' ,/ </pre> | ||
diff --git a/templates/pageHeaderSm.html b/templates/pageHeaderSm.html new file mode 100644 index 0000000..7f0f4f9 --- /dev/null +++ b/templates/pageHeaderSm.html | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | <!-- | ||
| 2 | .| //\__ ' .' | . | ' . ' | ||
| 3 | | _.~-"""-----~`` ,-´ ' ' |' | ' ' | ||
| 4 | '| .´ ,~'\ ).,__,)/,," ' . ' | | | ' .' | ||
| 5 | |_ `~´ (/\\, (/\\, _' '_ _| ' |_ _' '_ | ||
| 6 | --> | ||
| 7 | <pre> | ||
| 8 | .| <strong> //\__</strong> ' .' | . | ' . ' | ||
| 9 | | <strong> _.~-"""-----~`` ,-´</strong> ' ' |' | ' ' | ||
| 10 | '| <strong>.´ ,~'\ ).,__,)/,," </strong> ' . ' | | | ' .' | ||
| 11 | |_ <strong>`~´ (/\\, (/\\, </strong> _' '_ _| ' |_ _' '_</pre> | ||
| @@ -1,5 +1,6 @@ | |||
| 1 | #!/bin/bash | 1 | #!/bin/bash |
| 2 | 2 | ||
| 3 | while inotifywait -r -e close_write src; do | 3 | while inotifywait -r -e close_write assets; do |
| 4 | sassc --style expanded src/style.scss dist/style.css | 4 | sassc assets/style.scss dist/style.css |
| 5 | node_modules/.bin/postcss dist/style.css -r | ||
| 5 | done | 6 | done |
diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 0000000..046864f --- /dev/null +++ b/yarn.lock | |||
| @@ -0,0 +1,1651 @@ | |||
| 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. | ||
| 2 | # yarn lockfile v1 | ||
| 3 | |||
| 4 | |||
| 5 | "@babel/code-frame@^7.0.0": | ||
| 6 | version "7.12.11" | ||
| 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" | ||
| 8 | integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== | ||
| 9 | dependencies: | ||
| 10 | "@babel/highlight" "^7.10.4" | ||
| 11 | |||
| 12 | "@babel/helper-validator-identifier@^7.10.4": | ||
| 13 | version "7.12.11" | ||
| 14 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz#c9a1f021917dcb5ccf0d4e453e399022981fc9ed" | ||
| 15 | integrity sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw== | ||
| 16 | |||
| 17 | "@babel/highlight@^7.10.4": | ||
| 18 | version "7.10.4" | ||
| 19 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143" | ||
| 20 | integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA== | ||
| 21 | dependencies: | ||
| 22 | "@babel/helper-validator-identifier" "^7.10.4" | ||
| 23 | chalk "^2.0.0" | ||
| 24 | js-tokens "^4.0.0" | ||
| 25 | |||
| 26 | "@nodelib/fs.scandir@2.1.3": | ||
| 27 | version "2.1.3" | ||
| 28 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz#3a582bdb53804c6ba6d146579c46e52130cf4a3b" | ||
| 29 | integrity sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw== | ||
| 30 | dependencies: | ||
| 31 | "@nodelib/fs.stat" "2.0.3" | ||
| 32 | run-parallel "^1.1.9" | ||
| 33 | |||
| 34 | "@nodelib/fs.stat@2.0.3", "@nodelib/fs.stat@^2.0.2": | ||
| 35 | version "2.0.3" | ||
| 36 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz#34dc5f4cabbc720f4e60f75a747e7ecd6c175bd3" | ||
| 37 | integrity sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA== | ||
| 38 | |||
| 39 | "@nodelib/fs.walk@^1.2.3": | ||
| 40 | version "1.2.4" | ||
| 41 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz#011b9202a70a6366e436ca5c065844528ab04976" | ||
| 42 | integrity sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ== | ||
| 43 | dependencies: | ||
| 44 | "@nodelib/fs.scandir" "2.1.3" | ||
| 45 | fastq "^1.6.0" | ||
| 46 | |||
| 47 | "@types/parse-json@^4.0.0": | ||
| 48 | version "4.0.0" | ||
| 49 | resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" | ||
| 50 | integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== | ||
| 51 | |||
| 52 | "@types/q@^1.5.1": | ||
| 53 | version "1.5.4" | ||
| 54 | resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.4.tgz#15925414e0ad2cd765bfef58842f7e26a7accb24" | ||
| 55 | integrity sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug== | ||
| 56 | |||
| 57 | alphanum-sort@^1.0.0: | ||
| 58 | version "1.0.2" | ||
| 59 | resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" | ||
| 60 | integrity sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM= | ||
| 61 | |||
| 62 | ansi-regex@^5.0.0: | ||
| 63 | version "5.0.0" | ||
| 64 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" | ||
| 65 | integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== | ||
| 66 | |||
| 67 | ansi-styles@^3.2.1: | ||
| 68 | version "3.2.1" | ||
| 69 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" | ||
| 70 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== | ||
| 71 | dependencies: | ||
| 72 | color-convert "^1.9.0" | ||
| 73 | |||
| 74 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: | ||
| 75 | version "4.3.0" | ||
| 76 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" | ||
| 77 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== | ||
| 78 | dependencies: | ||
| 79 | color-convert "^2.0.1" | ||
| 80 | |||
| 81 | anymatch@~3.1.1: | ||
| 82 | version "3.1.1" | ||
| 83 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142" | ||
| 84 | integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg== | ||
| 85 | dependencies: | ||
| 86 | normalize-path "^3.0.0" | ||
| 87 | picomatch "^2.0.4" | ||
| 88 | |||
| 89 | argparse@^1.0.7: | ||
| 90 | version "1.0.10" | ||
| 91 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" | ||
| 92 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== | ||
| 93 | dependencies: | ||
| 94 | sprintf-js "~1.0.2" | ||
| 95 | |||
| 96 | array-union@^2.1.0: | ||
| 97 | version "2.1.0" | ||
| 98 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" | ||
| 99 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== | ||
| 100 | |||
| 101 | at-least-node@^1.0.0: | ||
| 102 | version "1.0.0" | ||
| 103 | resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" | ||
| 104 | integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== | ||
| 105 | |||
| 106 | binary-extensions@^2.0.0: | ||
| 107 | version "2.1.0" | ||
| 108 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.1.0.tgz#30fa40c9e7fe07dbc895678cd287024dea241dd9" | ||
| 109 | integrity sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ== | ||
| 110 | |||
| 111 | boolbase@^1.0.0, boolbase@~1.0.0: | ||
| 112 | version "1.0.0" | ||
| 113 | resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" | ||
| 114 | integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= | ||
| 115 | |||
| 116 | braces@^3.0.1, braces@~3.0.2: | ||
| 117 | version "3.0.2" | ||
| 118 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" | ||
| 119 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== | ||
| 120 | dependencies: | ||
| 121 | fill-range "^7.0.1" | ||
| 122 | |||
| 123 | browserslist@^4.0.0: | ||
| 124 | version "4.16.0" | ||
| 125 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.0.tgz#410277627500be3cb28a1bfe037586fbedf9488b" | ||
| 126 | integrity sha512-/j6k8R0p3nxOC6kx5JGAxsnhc9ixaWJfYc+TNTzxg6+ARaESAvQGV7h0uNOB4t+pLQJZWzcrMxXOxjgsCj3dqQ== | ||
| 127 | dependencies: | ||
| 128 | caniuse-lite "^1.0.30001165" | ||
| 129 | colorette "^1.2.1" | ||
| 130 | electron-to-chromium "^1.3.621" | ||
| 131 | escalade "^3.1.1" | ||
| 132 | node-releases "^1.1.67" | ||
| 133 | |||
| 134 | call-bind@^1.0.0: | ||
| 135 | version "1.0.0" | ||
| 136 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.0.tgz#24127054bb3f9bdcb4b1fb82418186072f77b8ce" | ||
| 137 | integrity sha512-AEXsYIyyDY3MCzbwdhzG3Jx1R0J2wetQyUynn6dYHAO+bg8l1k7jwZtRv4ryryFs7EP+NDlikJlVe59jr0cM2w== | ||
| 138 | dependencies: | ||
| 139 | function-bind "^1.1.1" | ||
| 140 | get-intrinsic "^1.0.0" | ||
| 141 | |||
| 142 | caller-callsite@^2.0.0: | ||
| 143 | version "2.0.0" | ||
| 144 | resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" | ||
| 145 | integrity sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ= | ||
| 146 | dependencies: | ||
| 147 | callsites "^2.0.0" | ||
| 148 | |||
| 149 | caller-path@^2.0.0: | ||
| 150 | version "2.0.0" | ||
| 151 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4" | ||
| 152 | integrity sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ= | ||
| 153 | dependencies: | ||
| 154 | caller-callsite "^2.0.0" | ||
| 155 | |||
| 156 | callsites@^2.0.0: | ||
| 157 | version "2.0.0" | ||
| 158 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" | ||
| 159 | integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA= | ||
| 160 | |||
| 161 | callsites@^3.0.0: | ||
| 162 | version "3.1.0" | ||
| 163 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" | ||
| 164 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== | ||
| 165 | |||
| 166 | caniuse-api@^3.0.0: | ||
| 167 | version "3.0.0" | ||
| 168 | resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0" | ||
| 169 | integrity sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw== | ||
| 170 | dependencies: | ||
| 171 | browserslist "^4.0.0" | ||
| 172 | caniuse-lite "^1.0.0" | ||
| 173 | lodash.memoize "^4.1.2" | ||
| 174 | lodash.uniq "^4.5.0" | ||
| 175 | |||
| 176 | caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001165: | ||
| 177 | version "1.0.30001170" | ||
| 178 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001170.tgz#0088bfecc6a14694969e391cc29d7eb6362ca6a7" | ||
| 179 | integrity sha512-Dd4d/+0tsK0UNLrZs3CvNukqalnVTRrxb5mcQm8rHL49t7V5ZaTygwXkrq+FB+dVDf++4ri8eJnFEJAB8332PA== | ||
| 180 | |||
| 181 | chalk@^2.0.0, chalk@^2.4.1, chalk@^2.4.2: | ||
| 182 | version "2.4.2" | ||
| 183 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" | ||
| 184 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== | ||
| 185 | dependencies: | ||
| 186 | ansi-styles "^3.2.1" | ||
| 187 | escape-string-regexp "^1.0.5" | ||
| 188 | supports-color "^5.3.0" | ||
| 189 | |||
| 190 | chalk@^4.0.0: | ||
| 191 | version "4.1.0" | ||
| 192 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" | ||
| 193 | integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== | ||
| 194 | dependencies: | ||
| 195 | ansi-styles "^4.1.0" | ||
| 196 | supports-color "^7.1.0" | ||
| 197 | |||
| 198 | chokidar@^3.3.0: | ||
| 199 | version "3.4.3" | ||
| 200 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.3.tgz#c1df38231448e45ca4ac588e6c79573ba6a57d5b" | ||
| 201 | integrity sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ== | ||
| 202 | dependencies: | ||
| 203 | anymatch "~3.1.1" | ||
| 204 | braces "~3.0.2" | ||
| 205 | glob-parent "~5.1.0" | ||
| 206 | is-binary-path "~2.1.0" | ||
| 207 | is-glob "~4.0.1" | ||
| 208 | normalize-path "~3.0.0" | ||
| 209 | readdirp "~3.5.0" | ||
| 210 | optionalDependencies: | ||
| 211 | fsevents "~2.1.2" | ||
| 212 | |||
| 213 | cliui@^7.0.2: | ||
| 214 | version "7.0.4" | ||
| 215 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" | ||
| 216 | integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== | ||
| 217 | dependencies: | ||
| 218 | string-width "^4.2.0" | ||
| 219 | strip-ansi "^6.0.0" | ||
| 220 | wrap-ansi "^7.0.0" | ||
| 221 | |||
| 222 | coa@^2.0.2: | ||
| 223 | version "2.0.2" | ||
| 224 | resolved "https://registry.yarnpkg.com/coa/-/coa-2.0.2.tgz#43f6c21151b4ef2bf57187db0d73de229e3e7ec3" | ||
| 225 | integrity sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA== | ||
| 226 | dependencies: | ||
| 227 | "@types/q" "^1.5.1" | ||
| 228 | chalk "^2.4.1" | ||
| 229 | q "^1.1.2" | ||
| 230 | |||
| 231 | color-convert@^1.9.0, color-convert@^1.9.1: | ||
| 232 | version "1.9.3" | ||
| 233 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" | ||
| 234 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== | ||
| 235 | dependencies: | ||
| 236 | color-name "1.1.3" | ||
| 237 | |||
| 238 | color-convert@^2.0.1: | ||
| 239 | version "2.0.1" | ||
| 240 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" | ||
| 241 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== | ||
| 242 | dependencies: | ||
| 243 | color-name "~1.1.4" | ||
| 244 | |||
| 245 | color-name@1.1.3: | ||
| 246 | version "1.1.3" | ||
| 247 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" | ||
| 248 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= | ||
| 249 | |||
| 250 | color-name@^1.0.0, color-name@~1.1.4: | ||
| 251 | version "1.1.4" | ||
| 252 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" | ||
| 253 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== | ||
| 254 | |||
| 255 | color-string@^1.5.4: | ||
| 256 | version "1.5.4" | ||
| 257 | resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.4.tgz#dd51cd25cfee953d138fe4002372cc3d0e504cb6" | ||
| 258 | integrity sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw== | ||
| 259 | dependencies: | ||
| 260 | color-name "^1.0.0" | ||
| 261 | simple-swizzle "^0.2.2" | ||
| 262 | |||
| 263 | color@^3.0.0: | ||
| 264 | version "3.1.3" | ||
| 265 | resolved "https://registry.yarnpkg.com/color/-/color-3.1.3.tgz#ca67fb4e7b97d611dcde39eceed422067d91596e" | ||
| 266 | integrity sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ== | ||
| 267 | dependencies: | ||
| 268 | color-convert "^1.9.1" | ||
| 269 | color-string "^1.5.4" | ||
| 270 | |||
| 271 | colorette@^1.2.1: | ||
| 272 | version "1.2.1" | ||
| 273 | resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.1.tgz#4d0b921325c14faf92633086a536db6e89564b1b" | ||
| 274 | integrity sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw== | ||
| 275 | |||
| 276 | cosmiconfig@^5.0.0: | ||
| 277 | version "5.2.1" | ||
| 278 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" | ||
| 279 | integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== | ||
| 280 | dependencies: | ||
| 281 | import-fresh "^2.0.0" | ||
| 282 | is-directory "^0.3.1" | ||
| 283 | js-yaml "^3.13.1" | ||
| 284 | parse-json "^4.0.0" | ||
| 285 | |||
| 286 | cosmiconfig@^7.0.0: | ||
| 287 | version "7.0.0" | ||
| 288 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.0.tgz#ef9b44d773959cae63ddecd122de23853b60f8d3" | ||
| 289 | integrity sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA== | ||
| 290 | dependencies: | ||
| 291 | "@types/parse-json" "^4.0.0" | ||
| 292 | import-fresh "^3.2.1" | ||
| 293 | parse-json "^5.0.0" | ||
| 294 | path-type "^4.0.0" | ||
| 295 | yaml "^1.10.0" | ||
| 296 | |||
| 297 | css-color-names@0.0.4, css-color-names@^0.0.4: | ||
| 298 | version "0.0.4" | ||
| 299 | resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" | ||
| 300 | integrity sha1-gIrcLnnPhHOAabZGyyDsJ762KeA= | ||
| 301 | |||
| 302 | css-declaration-sorter@^4.0.1: | ||
| 303 | version "4.0.1" | ||
| 304 | resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz#c198940f63a76d7e36c1e71018b001721054cb22" | ||
| 305 | integrity sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA== | ||
| 306 | dependencies: | ||
| 307 | postcss "^7.0.1" | ||
| 308 | timsort "^0.3.0" | ||
| 309 | |||
| 310 | css-select-base-adapter@^0.1.1: | ||
| 311 | version "0.1.1" | ||
| 312 | resolved "https://registry.yarnpkg.com/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz#3b2ff4972cc362ab88561507a95408a1432135d7" | ||
| 313 | integrity sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w== | ||
| 314 | |||
| 315 | css-select@^2.0.0: | ||
| 316 | version "2.1.0" | ||
| 317 | resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.1.0.tgz#6a34653356635934a81baca68d0255432105dbef" | ||
| 318 | integrity sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ== | ||
| 319 | dependencies: | ||
| 320 | boolbase "^1.0.0" | ||
| 321 | css-what "^3.2.1" | ||
| 322 | domutils "^1.7.0" | ||
| 323 | nth-check "^1.0.2" | ||
| 324 | |||
| 325 | css-tree@1.0.0-alpha.37: | ||
| 326 | version "1.0.0-alpha.37" | ||
| 327 | resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.37.tgz#98bebd62c4c1d9f960ec340cf9f7522e30709a22" | ||
| 328 | integrity sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg== | ||
| 329 | dependencies: | ||
| 330 | mdn-data "2.0.4" | ||
| 331 | source-map "^0.6.1" | ||
| 332 | |||
| 333 | css-tree@^1.1.2: | ||
| 334 | version "1.1.2" | ||
| 335 | resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.2.tgz#9ae393b5dafd7dae8a622475caec78d3d8fbd7b5" | ||
| 336 | integrity sha512-wCoWush5Aeo48GLhfHPbmvZs59Z+M7k5+B1xDnXbdWNcEF423DoFdqSWE0PM5aNk5nI5cp1q7ms36zGApY/sKQ== | ||
| 337 | dependencies: | ||
| 338 | mdn-data "2.0.14" | ||
| 339 | source-map "^0.6.1" | ||
| 340 | |||
| 341 | css-what@^3.2.1: | ||
| 342 | version "3.4.2" | ||
| 343 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.4.2.tgz#ea7026fcb01777edbde52124e21f327e7ae950e4" | ||
| 344 | integrity sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ== | ||
| 345 | |||
| 346 | cssesc@^3.0.0: | ||
| 347 | version "3.0.0" | ||
| 348 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" | ||
| 349 | integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== | ||
| 350 | |||
| 351 | cssnano-preset-default@^4.0.7: | ||
| 352 | version "4.0.7" | ||
| 353 | resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz#51ec662ccfca0f88b396dcd9679cdb931be17f76" | ||
| 354 | integrity sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA== | ||
| 355 | dependencies: | ||
| 356 | css-declaration-sorter "^4.0.1" | ||
| 357 | cssnano-util-raw-cache "^4.0.1" | ||
| 358 | postcss "^7.0.0" | ||
| 359 | postcss-calc "^7.0.1" | ||
| 360 | postcss-colormin "^4.0.3" | ||
| 361 | postcss-convert-values "^4.0.1" | ||
| 362 | postcss-discard-comments "^4.0.2" | ||
| 363 | postcss-discard-duplicates "^4.0.2" | ||
| 364 | postcss-discard-empty "^4.0.1" | ||
| 365 | postcss-discard-overridden "^4.0.1" | ||
| 366 | postcss-merge-longhand "^4.0.11" | ||
| 367 | postcss-merge-rules "^4.0.3" | ||
| 368 | postcss-minify-font-values "^4.0.2" | ||
| 369 | postcss-minify-gradients "^4.0.2" | ||
| 370 | postcss-minify-params "^4.0.2" | ||
| 371 | postcss-minify-selectors "^4.0.2" | ||
| 372 | postcss-normalize-charset "^4.0.1" | ||
| 373 | postcss-normalize-display-values "^4.0.2" | ||
| 374 | postcss-normalize-positions "^4.0.2" | ||
| 375 | postcss-normalize-repeat-style "^4.0.2" | ||
| 376 | postcss-normalize-string "^4.0.2" | ||
| 377 | postcss-normalize-timing-functions "^4.0.2" | ||
| 378 | postcss-normalize-unicode "^4.0.1" | ||
| 379 | postcss-normalize-url "^4.0.1" | ||
| 380 | postcss-normalize-whitespace "^4.0.2" | ||
| 381 | postcss-ordered-values "^4.1.2" | ||
| 382 | postcss-reduce-initial "^4.0.3" | ||
| 383 | postcss-reduce-transforms "^4.0.2" | ||
| 384 | postcss-svgo "^4.0.2" | ||
| 385 | postcss-unique-selectors "^4.0.1" | ||
| 386 | |||
| 387 | cssnano-util-get-arguments@^4.0.0: | ||
| 388 | version "4.0.0" | ||
| 389 | resolved "https://registry.yarnpkg.com/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz#ed3a08299f21d75741b20f3b81f194ed49cc150f" | ||
| 390 | integrity sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8= | ||
| 391 | |||
| 392 | cssnano-util-get-match@^4.0.0: | ||
| 393 | version "4.0.0" | ||
| 394 | resolved "https://registry.yarnpkg.com/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz#c0e4ca07f5386bb17ec5e52250b4f5961365156d" | ||
| 395 | integrity sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0= | ||
| 396 | |||
| 397 | cssnano-util-raw-cache@^4.0.1: | ||
| 398 | version "4.0.1" | ||
| 399 | resolved "https://registry.yarnpkg.com/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz#b26d5fd5f72a11dfe7a7846fb4c67260f96bf282" | ||
| 400 | integrity sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA== | ||
| 401 | dependencies: | ||
| 402 | postcss "^7.0.0" | ||
| 403 | |||
| 404 | cssnano-util-same-parent@^4.0.0: | ||
| 405 | version "4.0.1" | ||
| 406 | resolved "https://registry.yarnpkg.com/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz#574082fb2859d2db433855835d9a8456ea18bbf3" | ||
| 407 | integrity sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q== | ||
| 408 | |||
| 409 | cssnano@^4.1.10: | ||
| 410 | version "4.1.10" | ||
| 411 | resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-4.1.10.tgz#0ac41f0b13d13d465487e111b778d42da631b8b2" | ||
| 412 | integrity sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ== | ||
| 413 | dependencies: | ||
| 414 | cosmiconfig "^5.0.0" | ||
| 415 | cssnano-preset-default "^4.0.7" | ||
| 416 | is-resolvable "^1.0.0" | ||
| 417 | postcss "^7.0.0" | ||
| 418 | |||
| 419 | csso@^4.0.2: | ||
| 420 | version "4.2.0" | ||
| 421 | resolved "https://registry.yarnpkg.com/csso/-/csso-4.2.0.tgz#ea3a561346e8dc9f546d6febedd50187cf389529" | ||
| 422 | integrity sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA== | ||
| 423 | dependencies: | ||
| 424 | css-tree "^1.1.2" | ||
| 425 | |||
| 426 | define-properties@^1.1.3: | ||
| 427 | version "1.1.3" | ||
| 428 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" | ||
| 429 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== | ||
| 430 | dependencies: | ||
| 431 | object-keys "^1.0.12" | ||
| 432 | |||
| 433 | dependency-graph@^0.9.0: | ||
| 434 | version "0.9.0" | ||
| 435 | resolved "https://registry.yarnpkg.com/dependency-graph/-/dependency-graph-0.9.0.tgz#11aed7e203bc8b00f48356d92db27b265c445318" | ||
| 436 | integrity sha512-9YLIBURXj4DJMFALxXw9K3Y3rwb5Fk0X5/8ipCzaN84+gKxoHK43tVKRNakCQbiEx07E8Uwhuq21BpUagFhZ8w== | ||
| 437 | |||
| 438 | dir-glob@^3.0.1: | ||
| 439 | version "3.0.1" | ||
| 440 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" | ||
| 441 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== | ||
| 442 | dependencies: | ||
| 443 | path-type "^4.0.0" | ||
| 444 | |||
| 445 | dom-serializer@0: | ||
| 446 | version "0.2.2" | ||
| 447 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" | ||
| 448 | integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== | ||
| 449 | dependencies: | ||
| 450 | domelementtype "^2.0.1" | ||
| 451 | entities "^2.0.0" | ||
| 452 | |||
| 453 | domelementtype@1: | ||
| 454 | version "1.3.1" | ||
| 455 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" | ||
| 456 | integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== | ||
| 457 | |||
| 458 | domelementtype@^2.0.1: | ||
| 459 | version "2.1.0" | ||
| 460 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.1.0.tgz#a851c080a6d1c3d94344aed151d99f669edf585e" | ||
| 461 | integrity sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w== | ||
| 462 | |||
| 463 | domutils@^1.7.0: | ||
| 464 | version "1.7.0" | ||
| 465 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" | ||
| 466 | integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== | ||
| 467 | dependencies: | ||
| 468 | dom-serializer "0" | ||
| 469 | domelementtype "1" | ||
| 470 | |||
| 471 | dot-prop@^5.2.0: | ||
| 472 | version "5.3.0" | ||
| 473 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88" | ||
| 474 | integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== | ||
| 475 | dependencies: | ||
| 476 | is-obj "^2.0.0" | ||
| 477 | |||
| 478 | electron-to-chromium@^1.3.621: | ||
| 479 | version "1.3.629" | ||
| 480 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.629.tgz#a08d13b64d90e3c77ec5b9bffa3efbc5b4a00969" | ||
| 481 | integrity sha512-iSPPJtPvHrMAvYOt+9cdbDmTasPqwnwz4lkP8Dn200gDNUBQOLQ96xUsWXBwXslAo5XxdoXAoQQ3RAy4uao9IQ== | ||
| 482 | |||
| 483 | emoji-regex@^8.0.0: | ||
| 484 | version "8.0.0" | ||
| 485 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" | ||
| 486 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== | ||
| 487 | |||
| 488 | entities@^2.0.0: | ||
| 489 | version "2.1.0" | ||
| 490 | resolved "https://registry.yarnpkg.com/entities/-/entities-2.1.0.tgz#992d3129cf7df6870b96c57858c249a120f8b8b5" | ||
| 491 | integrity sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w== | ||
| 492 | |||
| 493 | error-ex@^1.3.1: | ||
| 494 | version "1.3.2" | ||
| 495 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" | ||
| 496 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== | ||
| 497 | dependencies: | ||
| 498 | is-arrayish "^0.2.1" | ||
| 499 | |||
| 500 | es-abstract@^1.17.2: | ||
| 501 | version "1.17.7" | ||
| 502 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.7.tgz#a4de61b2f66989fc7421676c1cb9787573ace54c" | ||
| 503 | integrity sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g== | ||
| 504 | dependencies: | ||
| 505 | es-to-primitive "^1.2.1" | ||
| 506 | function-bind "^1.1.1" | ||
| 507 | has "^1.0.3" | ||
| 508 | has-symbols "^1.0.1" | ||
| 509 | is-callable "^1.2.2" | ||
| 510 | is-regex "^1.1.1" | ||
| 511 | object-inspect "^1.8.0" | ||
| 512 | object-keys "^1.1.1" | ||
| 513 | object.assign "^4.1.1" | ||
| 514 | string.prototype.trimend "^1.0.1" | ||
| 515 | string.prototype.trimstart "^1.0.1" | ||
| 516 | |||
| 517 | es-abstract@^1.18.0-next.1: | ||
| 518 | version "1.18.0-next.1" | ||
| 519 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.1.tgz#6e3a0a4bda717e5023ab3b8e90bec36108d22c68" | ||
| 520 | integrity sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA== | ||
| 521 | dependencies: | ||
| 522 | es-to-primitive "^1.2.1" | ||
| 523 | function-bind "^1.1.1" | ||
| 524 | has "^1.0.3" | ||
| 525 | has-symbols "^1.0.1" | ||
| 526 | is-callable "^1.2.2" | ||
| 527 | is-negative-zero "^2.0.0" | ||
| 528 | is-regex "^1.1.1" | ||
| 529 | object-inspect "^1.8.0" | ||
| 530 | object-keys "^1.1.1" | ||
| 531 | object.assign "^4.1.1" | ||
| 532 | string.prototype.trimend "^1.0.1" | ||
| 533 | string.prototype.trimstart "^1.0.1" | ||
| 534 | |||
| 535 | es-to-primitive@^1.2.1: | ||
| 536 | version "1.2.1" | ||
| 537 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" | ||
| 538 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== | ||
| 539 | dependencies: | ||
| 540 | is-callable "^1.1.4" | ||
| 541 | is-date-object "^1.0.1" | ||
| 542 | is-symbol "^1.0.2" | ||
| 543 | |||
| 544 | escalade@^3.1.1: | ||
| 545 | version "3.1.1" | ||
| 546 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" | ||
| 547 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== | ||
| 548 | |||
| 549 | escape-string-regexp@^1.0.5: | ||
| 550 | version "1.0.5" | ||
| 551 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" | ||
| 552 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= | ||
| 553 | |||
| 554 | esprima@^4.0.0: | ||
| 555 | version "4.0.1" | ||
| 556 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" | ||
| 557 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== | ||
| 558 | |||
| 559 | fast-glob@^3.1.1: | ||
| 560 | version "3.2.4" | ||
| 561 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.4.tgz#d20aefbf99579383e7f3cc66529158c9b98554d3" | ||
| 562 | integrity sha512-kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ== | ||
| 563 | dependencies: | ||
| 564 | "@nodelib/fs.stat" "^2.0.2" | ||
| 565 | "@nodelib/fs.walk" "^1.2.3" | ||
| 566 | glob-parent "^5.1.0" | ||
| 567 | merge2 "^1.3.0" | ||
| 568 | micromatch "^4.0.2" | ||
| 569 | picomatch "^2.2.1" | ||
| 570 | |||
| 571 | fastq@^1.6.0: | ||
| 572 | version "1.10.0" | ||
| 573 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.10.0.tgz#74dbefccade964932cdf500473ef302719c652bb" | ||
| 574 | integrity sha512-NL2Qc5L3iQEsyYzweq7qfgy5OtXCmGzGvhElGEd/SoFWEMOEczNh5s5ocaF01HDetxz+p8ecjNPA6cZxxIHmzA== | ||
| 575 | dependencies: | ||
| 576 | reusify "^1.0.4" | ||
| 577 | |||
| 578 | fill-range@^7.0.1: | ||
| 579 | version "7.0.1" | ||
| 580 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" | ||
| 581 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== | ||
| 582 | dependencies: | ||
| 583 | to-regex-range "^5.0.1" | ||
| 584 | |||
| 585 | fs-extra@^9.0.0: | ||
| 586 | version "9.0.1" | ||
| 587 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.0.1.tgz#910da0062437ba4c39fedd863f1675ccfefcb9fc" | ||
| 588 | integrity sha512-h2iAoN838FqAFJY2/qVpzFXy+EBxfVE220PalAqQLDVsFOHLJrZvut5puAbCdNv6WJk+B8ihI+k0c7JK5erwqQ== | ||
| 589 | dependencies: | ||
| 590 | at-least-node "^1.0.0" | ||
| 591 | graceful-fs "^4.2.0" | ||
| 592 | jsonfile "^6.0.1" | ||
| 593 | universalify "^1.0.0" | ||
| 594 | |||
| 595 | fsevents@~2.1.2: | ||
| 596 | version "2.1.3" | ||
| 597 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e" | ||
| 598 | integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ== | ||
| 599 | |||
| 600 | function-bind@^1.1.1: | ||
| 601 | version "1.1.1" | ||
| 602 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" | ||
| 603 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== | ||
| 604 | |||
| 605 | get-caller-file@^2.0.5: | ||
| 606 | version "2.0.5" | ||
| 607 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" | ||
| 608 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== | ||
| 609 | |||
| 610 | get-intrinsic@^1.0.0: | ||
| 611 | version "1.0.2" | ||
| 612 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.0.2.tgz#6820da226e50b24894e08859469dc68361545d49" | ||
| 613 | integrity sha512-aeX0vrFm21ILl3+JpFFRNe9aUvp6VFZb2/CTbgLb8j75kOhvoNYjt9d8KA/tJG4gSo8nzEDedRl0h7vDmBYRVg== | ||
| 614 | dependencies: | ||
| 615 | function-bind "^1.1.1" | ||
| 616 | has "^1.0.3" | ||
| 617 | has-symbols "^1.0.1" | ||
| 618 | |||
| 619 | get-stdin@^8.0.0: | ||
| 620 | version "8.0.0" | ||
| 621 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-8.0.0.tgz#cbad6a73feb75f6eeb22ba9e01f89aa28aa97a53" | ||
| 622 | integrity sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg== | ||
| 623 | |||
| 624 | glob-parent@^5.1.0, glob-parent@~5.1.0: | ||
| 625 | version "5.1.1" | ||
| 626 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" | ||
| 627 | integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== | ||
| 628 | dependencies: | ||
| 629 | is-glob "^4.0.1" | ||
| 630 | |||
| 631 | globby@^11.0.0: | ||
| 632 | version "11.0.1" | ||
| 633 | resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.1.tgz#9a2bf107a068f3ffeabc49ad702c79ede8cfd357" | ||
| 634 | integrity sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ== | ||
| 635 | dependencies: | ||
| 636 | array-union "^2.1.0" | ||
| 637 | dir-glob "^3.0.1" | ||
| 638 | fast-glob "^3.1.1" | ||
| 639 | ignore "^5.1.4" | ||
| 640 | merge2 "^1.3.0" | ||
| 641 | slash "^3.0.0" | ||
| 642 | |||
| 643 | graceful-fs@^4.1.6, graceful-fs@^4.2.0: | ||
| 644 | version "4.2.4" | ||
| 645 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" | ||
| 646 | integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== | ||
| 647 | |||
| 648 | has-flag@^3.0.0: | ||
| 649 | version "3.0.0" | ||
| 650 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" | ||
| 651 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= | ||
| 652 | |||
| 653 | has-flag@^4.0.0: | ||
| 654 | version "4.0.0" | ||
| 655 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" | ||
| 656 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== | ||
| 657 | |||
| 658 | has-symbols@^1.0.1: | ||
| 659 | version "1.0.1" | ||
| 660 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" | ||
| 661 | integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== | ||
| 662 | |||
| 663 | has@^1.0.0, has@^1.0.3: | ||
| 664 | version "1.0.3" | ||
| 665 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" | ||
| 666 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== | ||
| 667 | dependencies: | ||
| 668 | function-bind "^1.1.1" | ||
| 669 | |||
| 670 | hex-color-regex@^1.1.0: | ||
| 671 | version "1.1.0" | ||
| 672 | resolved "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e" | ||
| 673 | integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ== | ||
| 674 | |||
| 675 | hsl-regex@^1.0.0: | ||
| 676 | version "1.0.0" | ||
| 677 | resolved "https://registry.yarnpkg.com/hsl-regex/-/hsl-regex-1.0.0.tgz#d49330c789ed819e276a4c0d272dffa30b18fe6e" | ||
| 678 | integrity sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4= | ||
| 679 | |||
| 680 | hsla-regex@^1.0.0: | ||
| 681 | version "1.0.0" | ||
| 682 | resolved "https://registry.yarnpkg.com/hsla-regex/-/hsla-regex-1.0.0.tgz#c1ce7a3168c8c6614033a4b5f7877f3b225f9c38" | ||
| 683 | integrity sha1-wc56MWjIxmFAM6S194d/OyJfnDg= | ||
| 684 | |||
| 685 | html-comment-regex@^1.1.0: | ||
| 686 | version "1.1.2" | ||
| 687 | resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.2.tgz#97d4688aeb5c81886a364faa0cad1dda14d433a7" | ||
| 688 | integrity sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ== | ||
| 689 | |||
| 690 | ignore@^5.1.4: | ||
| 691 | version "5.1.8" | ||
| 692 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57" | ||
| 693 | integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw== | ||
| 694 | |||
| 695 | import-cwd@^3.0.0: | ||
| 696 | version "3.0.0" | ||
| 697 | resolved "https://registry.yarnpkg.com/import-cwd/-/import-cwd-3.0.0.tgz#20845547718015126ea9b3676b7592fb8bd4cf92" | ||
| 698 | integrity sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg== | ||
| 699 | dependencies: | ||
| 700 | import-from "^3.0.0" | ||
| 701 | |||
| 702 | import-fresh@^2.0.0: | ||
| 703 | version "2.0.0" | ||
| 704 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546" | ||
| 705 | integrity sha1-2BNVwVYS04bGH53dOSLUMEgipUY= | ||
| 706 | dependencies: | ||
| 707 | caller-path "^2.0.0" | ||
| 708 | resolve-from "^3.0.0" | ||
| 709 | |||
| 710 | import-fresh@^3.2.1: | ||
| 711 | version "3.3.0" | ||
| 712 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" | ||
| 713 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== | ||
| 714 | dependencies: | ||
| 715 | parent-module "^1.0.0" | ||
| 716 | resolve-from "^4.0.0" | ||
| 717 | |||
| 718 | import-from@^3.0.0: | ||
| 719 | version "3.0.0" | ||
| 720 | resolved "https://registry.yarnpkg.com/import-from/-/import-from-3.0.0.tgz#055cfec38cd5a27d8057ca51376d7d3bf0891966" | ||
| 721 | integrity sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ== | ||
| 722 | dependencies: | ||
| 723 | resolve-from "^5.0.0" | ||
| 724 | |||
| 725 | indexes-of@^1.0.1: | ||
| 726 | version "1.0.1" | ||
| 727 | resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" | ||
| 728 | integrity sha1-8w9xbI4r00bHtn0985FVZqfAVgc= | ||
| 729 | |||
| 730 | is-absolute-url@^2.0.0: | ||
| 731 | version "2.1.0" | ||
| 732 | resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" | ||
| 733 | integrity sha1-UFMN+4T8yap9vnhS6Do3uTufKqY= | ||
| 734 | |||
| 735 | is-arrayish@^0.2.1: | ||
| 736 | version "0.2.1" | ||
| 737 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" | ||
| 738 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= | ||
| 739 | |||
| 740 | is-arrayish@^0.3.1: | ||
| 741 | version "0.3.2" | ||
| 742 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" | ||
| 743 | integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== | ||
| 744 | |||
| 745 | is-binary-path@~2.1.0: | ||
| 746 | version "2.1.0" | ||
| 747 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" | ||
| 748 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== | ||
| 749 | dependencies: | ||
| 750 | binary-extensions "^2.0.0" | ||
| 751 | |||
| 752 | is-callable@^1.1.4, is-callable@^1.2.2: | ||
| 753 | version "1.2.2" | ||
| 754 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.2.tgz#c7c6715cd22d4ddb48d3e19970223aceabb080d9" | ||
| 755 | integrity sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA== | ||
| 756 | |||
| 757 | is-color-stop@^1.0.0: | ||
| 758 | version "1.1.0" | ||
| 759 | resolved "https://registry.yarnpkg.com/is-color-stop/-/is-color-stop-1.1.0.tgz#cfff471aee4dd5c9e158598fbe12967b5cdad345" | ||
| 760 | integrity sha1-z/9HGu5N1cnhWFmPvhKWe1za00U= | ||
| 761 | dependencies: | ||
| 762 | css-color-names "^0.0.4" | ||
| 763 | hex-color-regex "^1.1.0" | ||
| 764 | hsl-regex "^1.0.0" | ||
| 765 | hsla-regex "^1.0.0" | ||
| 766 | rgb-regex "^1.0.1" | ||
| 767 | rgba-regex "^1.0.0" | ||
| 768 | |||
| 769 | is-date-object@^1.0.1: | ||
| 770 | version "1.0.2" | ||
| 771 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" | ||
| 772 | integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== | ||
| 773 | |||
| 774 | is-directory@^0.3.1: | ||
| 775 | version "0.3.1" | ||
| 776 | resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" | ||
| 777 | integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE= | ||
| 778 | |||
| 779 | is-extglob@^2.1.1: | ||
| 780 | version "2.1.1" | ||
| 781 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" | ||
| 782 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= | ||
| 783 | |||
| 784 | is-fullwidth-code-point@^3.0.0: | ||
| 785 | version "3.0.0" | ||
| 786 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" | ||
| 787 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== | ||
| 788 | |||
| 789 | is-glob@^4.0.1, is-glob@~4.0.1: | ||
| 790 | version "4.0.1" | ||
| 791 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" | ||
| 792 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== | ||
| 793 | dependencies: | ||
| 794 | is-extglob "^2.1.1" | ||
| 795 | |||
| 796 | is-negative-zero@^2.0.0: | ||
| 797 | version "2.0.1" | ||
| 798 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24" | ||
| 799 | integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w== | ||
| 800 | |||
| 801 | is-number@^7.0.0: | ||
| 802 | version "7.0.0" | ||
| 803 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" | ||
| 804 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== | ||
| 805 | |||
| 806 | is-obj@^2.0.0: | ||
| 807 | version "2.0.0" | ||
| 808 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" | ||
| 809 | integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== | ||
| 810 | |||
| 811 | is-regex@^1.1.1: | ||
| 812 | version "1.1.1" | ||
| 813 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.1.tgz#c6f98aacc546f6cec5468a07b7b153ab564a57b9" | ||
| 814 | integrity sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg== | ||
| 815 | dependencies: | ||
| 816 | has-symbols "^1.0.1" | ||
| 817 | |||
| 818 | is-resolvable@^1.0.0: | ||
| 819 | version "1.1.0" | ||
| 820 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" | ||
| 821 | integrity sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg== | ||
| 822 | |||
| 823 | is-svg@^3.0.0: | ||
| 824 | version "3.0.0" | ||
| 825 | resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-3.0.0.tgz#9321dbd29c212e5ca99c4fa9794c714bcafa2f75" | ||
| 826 | integrity sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ== | ||
| 827 | dependencies: | ||
| 828 | html-comment-regex "^1.1.0" | ||
| 829 | |||
| 830 | is-symbol@^1.0.2: | ||
| 831 | version "1.0.3" | ||
| 832 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" | ||
| 833 | integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== | ||
| 834 | dependencies: | ||
| 835 | has-symbols "^1.0.1" | ||
| 836 | |||
| 837 | js-tokens@^4.0.0: | ||
| 838 | version "4.0.0" | ||
| 839 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" | ||
| 840 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== | ||
| 841 | |||
| 842 | js-yaml@^3.13.1: | ||
| 843 | version "3.14.1" | ||
| 844 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" | ||
| 845 | integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== | ||
| 846 | dependencies: | ||
| 847 | argparse "^1.0.7" | ||
| 848 | esprima "^4.0.0" | ||
| 849 | |||
| 850 | json-parse-better-errors@^1.0.1: | ||
| 851 | version "1.0.2" | ||
| 852 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" | ||
| 853 | integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== | ||
| 854 | |||
| 855 | json-parse-even-better-errors@^2.3.0: | ||
| 856 | version "2.3.1" | ||
| 857 | resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" | ||
| 858 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== | ||
| 859 | |||
| 860 | jsonfile@^6.0.1: | ||
| 861 | version "6.1.0" | ||
| 862 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" | ||
| 863 | integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== | ||
| 864 | dependencies: | ||
| 865 | universalify "^2.0.0" | ||
| 866 | optionalDependencies: | ||
| 867 | graceful-fs "^4.1.6" | ||
| 868 | |||
| 869 | lines-and-columns@^1.1.6: | ||
| 870 | version "1.1.6" | ||
| 871 | resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" | ||
| 872 | integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= | ||
| 873 | |||
| 874 | lodash.difference@^4.5.0: | ||
| 875 | version "4.5.0" | ||
| 876 | resolved "https://registry.yarnpkg.com/lodash.difference/-/lodash.difference-4.5.0.tgz#9ccb4e505d486b91651345772885a2df27fd017c" | ||
| 877 | integrity sha1-nMtOUF1Ia5FlE0V3KIWi3yf9AXw= | ||
| 878 | |||
| 879 | lodash.forown@^4.4.0: | ||
| 880 | version "4.4.0" | ||
| 881 | resolved "https://registry.yarnpkg.com/lodash.forown/-/lodash.forown-4.4.0.tgz#85115cf04f73ef966eced52511d3893cc46683af" | ||
| 882 | integrity sha1-hRFc8E9z75ZuztUlEdOJPMRmg68= | ||
| 883 | |||
| 884 | lodash.get@^4.4.2: | ||
| 885 | version "4.4.2" | ||
| 886 | resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" | ||
| 887 | integrity sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk= | ||
| 888 | |||
| 889 | lodash.groupby@^4.6.0: | ||
| 890 | version "4.6.0" | ||
| 891 | resolved "https://registry.yarnpkg.com/lodash.groupby/-/lodash.groupby-4.6.0.tgz#0b08a1dcf68397c397855c3239783832df7403d1" | ||
| 892 | integrity sha1-Cwih3PaDl8OXhVwyOXg4Mt90A9E= | ||
| 893 | |||
| 894 | lodash.memoize@^4.1.2: | ||
| 895 | version "4.1.2" | ||
| 896 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" | ||
| 897 | integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= | ||
| 898 | |||
| 899 | lodash.sortby@^4.7.0: | ||
| 900 | version "4.7.0" | ||
| 901 | resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" | ||
| 902 | integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg= | ||
| 903 | |||
| 904 | lodash.uniq@^4.5.0: | ||
| 905 | version "4.5.0" | ||
| 906 | resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" | ||
| 907 | integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= | ||
| 908 | |||
| 909 | mdn-data@2.0.14: | ||
| 910 | version "2.0.14" | ||
| 911 | resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50" | ||
| 912 | integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow== | ||
| 913 | |||
| 914 | mdn-data@2.0.4: | ||
| 915 | version "2.0.4" | ||
| 916 | resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b" | ||
| 917 | integrity sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA== | ||
| 918 | |||
| 919 | merge2@^1.3.0: | ||
| 920 | version "1.4.1" | ||
| 921 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" | ||
| 922 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== | ||
| 923 | |||
| 924 | micromatch@^4.0.2: | ||
| 925 | version "4.0.2" | ||
| 926 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259" | ||
| 927 | integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q== | ||
| 928 | dependencies: | ||
| 929 | braces "^3.0.1" | ||
| 930 | picomatch "^2.0.5" | ||
| 931 | |||
| 932 | minimist@^1.2.5: | ||
| 933 | version "1.2.5" | ||
| 934 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" | ||
| 935 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== | ||
| 936 | |||
| 937 | mkdirp@~0.5.1: | ||
| 938 | version "0.5.5" | ||
| 939 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" | ||
| 940 | integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== | ||
| 941 | dependencies: | ||
| 942 | minimist "^1.2.5" | ||
| 943 | |||
| 944 | nanoid@^3.1.20: | ||
| 945 | version "3.1.20" | ||
| 946 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.20.tgz#badc263c6b1dcf14b71efaa85f6ab4c1d6cfc788" | ||
| 947 | integrity sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw== | ||
| 948 | |||
| 949 | node-releases@^1.1.67: | ||
| 950 | version "1.1.67" | ||
| 951 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.67.tgz#28ebfcccd0baa6aad8e8d4d8fe4cbc49ae239c12" | ||
| 952 | integrity sha512-V5QF9noGFl3EymEwUYzO+3NTDpGfQB4ve6Qfnzf3UNydMhjQRVPR1DZTuvWiLzaFJYw2fmDwAfnRNEVb64hSIg== | ||
| 953 | |||
| 954 | normalize-path@^3.0.0, normalize-path@~3.0.0: | ||
| 955 | version "3.0.0" | ||
| 956 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" | ||
| 957 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== | ||
| 958 | |||
| 959 | normalize-url@^3.0.0: | ||
| 960 | version "3.3.0" | ||
| 961 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-3.3.0.tgz#b2e1c4dc4f7c6d57743df733a4f5978d18650559" | ||
| 962 | integrity sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg== | ||
| 963 | |||
| 964 | nth-check@^1.0.2: | ||
| 965 | version "1.0.2" | ||
| 966 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" | ||
| 967 | integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg== | ||
| 968 | dependencies: | ||
| 969 | boolbase "~1.0.0" | ||
| 970 | |||
| 971 | object-inspect@^1.8.0: | ||
| 972 | version "1.9.0" | ||
| 973 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.9.0.tgz#c90521d74e1127b67266ded3394ad6116986533a" | ||
| 974 | integrity sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw== | ||
| 975 | |||
| 976 | object-keys@^1.0.12, object-keys@^1.1.1: | ||
| 977 | version "1.1.1" | ||
| 978 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" | ||
| 979 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== | ||
| 980 | |||
| 981 | object.assign@^4.1.1: | ||
| 982 | version "4.1.2" | ||
| 983 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" | ||
| 984 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== | ||
| 985 | dependencies: | ||
| 986 | call-bind "^1.0.0" | ||
| 987 | define-properties "^1.1.3" | ||
| 988 | has-symbols "^1.0.1" | ||
| 989 | object-keys "^1.1.1" | ||
| 990 | |||
| 991 | object.getownpropertydescriptors@^2.1.0: | ||
| 992 | version "2.1.1" | ||
| 993 | resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.1.tgz#0dfda8d108074d9c563e80490c883b6661091544" | ||
| 994 | integrity sha512-6DtXgZ/lIZ9hqx4GtZETobXLR/ZLaa0aqV0kzbn80Rf8Z2e/XFnhA0I7p07N2wH8bBBltr2xQPi6sbKWAY2Eng== | ||
| 995 | dependencies: | ||
| 996 | call-bind "^1.0.0" | ||
| 997 | define-properties "^1.1.3" | ||
| 998 | es-abstract "^1.18.0-next.1" | ||
| 999 | |||
| 1000 | object.values@^1.1.0: | ||
| 1001 | version "1.1.2" | ||
| 1002 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.2.tgz#7a2015e06fcb0f546bd652486ce8583a4731c731" | ||
| 1003 | integrity sha512-MYC0jvJopr8EK6dPBiO8Nb9mvjdypOachO5REGk6MXzujbBrAisKo3HmdEI6kZDL6fC31Mwee/5YbtMebixeag== | ||
| 1004 | dependencies: | ||
| 1005 | call-bind "^1.0.0" | ||
| 1006 | define-properties "^1.1.3" | ||
| 1007 | es-abstract "^1.18.0-next.1" | ||
| 1008 | has "^1.0.3" | ||
| 1009 | |||
| 1010 | parent-module@^1.0.0: | ||
| 1011 | version "1.0.1" | ||
| 1012 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" | ||
| 1013 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== | ||
| 1014 | dependencies: | ||
| 1015 | callsites "^3.0.0" | ||
| 1016 | |||
| 1017 | parse-json@^4.0.0: | ||
| 1018 | version "4.0.0" | ||
| 1019 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" | ||
| 1020 | integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= | ||
| 1021 | dependencies: | ||
| 1022 | error-ex "^1.3.1" | ||
| 1023 | json-parse-better-errors "^1.0.1" | ||
| 1024 | |||
| 1025 | parse-json@^5.0.0: | ||
| 1026 | version "5.1.0" | ||
| 1027 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.1.0.tgz#f96088cdf24a8faa9aea9a009f2d9d942c999646" | ||
| 1028 | integrity sha512-+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ== | ||
| 1029 | dependencies: | ||
| 1030 | "@babel/code-frame" "^7.0.0" | ||
| 1031 | error-ex "^1.3.1" | ||
| 1032 | json-parse-even-better-errors "^2.3.0" | ||
| 1033 | lines-and-columns "^1.1.6" | ||
| 1034 | |||
| 1035 | path-type@^4.0.0: | ||
| 1036 | version "4.0.0" | ||
| 1037 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" | ||
| 1038 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== | ||
| 1039 | |||
| 1040 | picomatch@^2.0.4, picomatch@^2.0.5, picomatch@^2.2.1: | ||
| 1041 | version "2.2.2" | ||
| 1042 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" | ||
| 1043 | integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== | ||
| 1044 | |||
| 1045 | pify@^2.3.0: | ||
| 1046 | version "2.3.0" | ||
| 1047 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" | ||
| 1048 | integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= | ||
| 1049 | |||
| 1050 | postcss-calc@^7.0.1: | ||
| 1051 | version "7.0.5" | ||
| 1052 | resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-7.0.5.tgz#f8a6e99f12e619c2ebc23cf6c486fdc15860933e" | ||
| 1053 | integrity sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg== | ||
| 1054 | dependencies: | ||
| 1055 | postcss "^7.0.27" | ||
| 1056 | postcss-selector-parser "^6.0.2" | ||
| 1057 | postcss-value-parser "^4.0.2" | ||
| 1058 | |||
| 1059 | postcss-cli@^8.3.1: | ||
| 1060 | version "8.3.1" | ||
| 1061 | resolved "https://registry.yarnpkg.com/postcss-cli/-/postcss-cli-8.3.1.tgz#865dad08300ac59ae9cecb7066780aa81c767a77" | ||
| 1062 | integrity sha512-leHXsQRq89S3JC9zw/tKyiVV2jAhnfQe0J8VI4eQQbUjwIe0XxVqLrR+7UsahF1s9wi4GlqP6SJ8ydf44cgF2Q== | ||
| 1063 | dependencies: | ||
| 1064 | chalk "^4.0.0" | ||
| 1065 | chokidar "^3.3.0" | ||
| 1066 | dependency-graph "^0.9.0" | ||
| 1067 | fs-extra "^9.0.0" | ||
| 1068 | get-stdin "^8.0.0" | ||
| 1069 | globby "^11.0.0" | ||
| 1070 | postcss-load-config "^3.0.0" | ||
| 1071 | postcss-reporter "^7.0.0" | ||
| 1072 | pretty-hrtime "^1.0.3" | ||
| 1073 | read-cache "^1.0.0" | ||
| 1074 | slash "^3.0.0" | ||
| 1075 | yargs "^16.0.0" | ||
| 1076 | |||
| 1077 | postcss-colormin@^4.0.3: | ||
| 1078 | version "4.0.3" | ||
| 1079 | resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-4.0.3.tgz#ae060bce93ed794ac71264f08132d550956bd381" | ||
| 1080 | integrity sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw== | ||
| 1081 | dependencies: | ||
| 1082 | browserslist "^4.0.0" | ||
| 1083 | color "^3.0.0" | ||
| 1084 | has "^1.0.0" | ||
| 1085 | postcss "^7.0.0" | ||
| 1086 | postcss-value-parser "^3.0.0" | ||
| 1087 | |||
| 1088 | postcss-convert-values@^4.0.1: | ||
| 1089 | version "4.0.1" | ||
| 1090 | resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz#ca3813ed4da0f812f9d43703584e449ebe189a7f" | ||
| 1091 | integrity sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ== | ||
| 1092 | dependencies: | ||
| 1093 | postcss "^7.0.0" | ||
| 1094 | postcss-value-parser "^3.0.0" | ||
| 1095 | |||
| 1096 | postcss-discard-comments@^4.0.2: | ||
| 1097 | version "4.0.2" | ||
| 1098 | resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz#1fbabd2c246bff6aaad7997b2b0918f4d7af4033" | ||
| 1099 | integrity sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg== | ||
| 1100 | dependencies: | ||
| 1101 | postcss "^7.0.0" | ||
| 1102 | |||
| 1103 | postcss-discard-duplicates@^4.0.2: | ||
| 1104 | version "4.0.2" | ||
| 1105 | resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz#3fe133cd3c82282e550fc9b239176a9207b784eb" | ||
| 1106 | integrity sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ== | ||
| 1107 | dependencies: | ||
| 1108 | postcss "^7.0.0" | ||
| 1109 | |||
| 1110 | postcss-discard-empty@^4.0.1: | ||
| 1111 | version "4.0.1" | ||
| 1112 | resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz#c8c951e9f73ed9428019458444a02ad90bb9f765" | ||
| 1113 | integrity sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w== | ||
| 1114 | dependencies: | ||
| 1115 | postcss "^7.0.0" | ||
| 1116 | |||
| 1117 | postcss-discard-overridden@^4.0.1: | ||
| 1118 | version "4.0.1" | ||
| 1119 | resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz#652aef8a96726f029f5e3e00146ee7a4e755ff57" | ||
| 1120 | integrity sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg== | ||
| 1121 | dependencies: | ||
| 1122 | postcss "^7.0.0" | ||
| 1123 | |||
| 1124 | postcss-load-config@^3.0.0: | ||
| 1125 | version "3.0.0" | ||
| 1126 | resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-3.0.0.tgz#850bb066edd65b734329eacf83af0c0764226c87" | ||
| 1127 | integrity sha512-lErrN8imuEF1cSiHBV8MiR7HeuzlDpCGNtaMyYHlOBuJHHOGw6S4xOMZp8BbXPr7AGQp14L6PZDlIOpfFJ6f7w== | ||
| 1128 | dependencies: | ||
| 1129 | cosmiconfig "^7.0.0" | ||
| 1130 | import-cwd "^3.0.0" | ||
| 1131 | |||
| 1132 | postcss-merge-longhand@^4.0.11: | ||
| 1133 | version "4.0.11" | ||
| 1134 | resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz#62f49a13e4a0ee04e7b98f42bb16062ca2549e24" | ||
| 1135 | integrity sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw== | ||
| 1136 | dependencies: | ||
| 1137 | css-color-names "0.0.4" | ||
| 1138 | postcss "^7.0.0" | ||
| 1139 | postcss-value-parser "^3.0.0" | ||
| 1140 | stylehacks "^4.0.0" | ||
| 1141 | |||
| 1142 | postcss-merge-rules@^4.0.3: | ||
| 1143 | version "4.0.3" | ||
| 1144 | resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz#362bea4ff5a1f98e4075a713c6cb25aefef9a650" | ||
| 1145 | integrity sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ== | ||
| 1146 | dependencies: | ||
| 1147 | browserslist "^4.0.0" | ||
| 1148 | caniuse-api "^3.0.0" | ||
| 1149 | cssnano-util-same-parent "^4.0.0" | ||
| 1150 | postcss "^7.0.0" | ||
| 1151 | postcss-selector-parser "^3.0.0" | ||
| 1152 | vendors "^1.0.0" | ||
| 1153 | |||
| 1154 | postcss-minify-font-values@^4.0.2: | ||
| 1155 | version "4.0.2" | ||
| 1156 | resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz#cd4c344cce474343fac5d82206ab2cbcb8afd5a6" | ||
| 1157 | integrity sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg== | ||
| 1158 | dependencies: | ||
| 1159 | postcss "^7.0.0" | ||
| 1160 | postcss-value-parser "^3.0.0" | ||
| 1161 | |||
| 1162 | postcss-minify-gradients@^4.0.2: | ||
| 1163 | version "4.0.2" | ||
| 1164 | resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz#93b29c2ff5099c535eecda56c4aa6e665a663471" | ||
| 1165 | integrity sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q== | ||
| 1166 | dependencies: | ||
| 1167 | cssnano-util-get-arguments "^4.0.0" | ||
| 1168 | is-color-stop "^1.0.0" | ||
| 1169 | postcss "^7.0.0" | ||
| 1170 | postcss-value-parser "^3.0.0" | ||
| 1171 | |||
| 1172 | postcss-minify-params@^4.0.2: | ||
| 1173 | version "4.0.2" | ||
| 1174 | resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz#6b9cef030c11e35261f95f618c90036d680db874" | ||
| 1175 | integrity sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg== | ||
| 1176 | dependencies: | ||
| 1177 | alphanum-sort "^1.0.0" | ||
| 1178 | browserslist "^4.0.0" | ||
| 1179 | cssnano-util-get-arguments "^4.0.0" | ||
| 1180 | postcss "^7.0.0" | ||
| 1181 | postcss-value-parser "^3.0.0" | ||
| 1182 | uniqs "^2.0.0" | ||
| 1183 | |||
| 1184 | postcss-minify-selectors@^4.0.2: | ||
| 1185 | version "4.0.2" | ||
| 1186 | resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz#e2e5eb40bfee500d0cd9243500f5f8ea4262fbd8" | ||
| 1187 | integrity sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g== | ||
| 1188 | dependencies: | ||
| 1189 | alphanum-sort "^1.0.0" | ||
| 1190 | has "^1.0.0" | ||
| 1191 | postcss "^7.0.0" | ||
| 1192 | postcss-selector-parser "^3.0.0" | ||
| 1193 | |||
| 1194 | postcss-normalize-charset@^4.0.1: | ||
| 1195 | version "4.0.1" | ||
| 1196 | resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz#8b35add3aee83a136b0471e0d59be58a50285dd4" | ||
| 1197 | integrity sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g== | ||
| 1198 | dependencies: | ||
| 1199 | postcss "^7.0.0" | ||
| 1200 | |||
| 1201 | postcss-normalize-display-values@^4.0.2: | ||
| 1202 | version "4.0.2" | ||
| 1203 | resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz#0dbe04a4ce9063d4667ed2be476bb830c825935a" | ||
| 1204 | integrity sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ== | ||
| 1205 | dependencies: | ||
| 1206 | cssnano-util-get-match "^4.0.0" | ||
| 1207 | postcss "^7.0.0" | ||
| 1208 | postcss-value-parser "^3.0.0" | ||
| 1209 | |||
| 1210 | postcss-normalize-positions@^4.0.2: | ||
| 1211 | version "4.0.2" | ||
| 1212 | resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz#05f757f84f260437378368a91f8932d4b102917f" | ||
| 1213 | integrity sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA== | ||
| 1214 | dependencies: | ||
| 1215 | cssnano-util-get-arguments "^4.0.0" | ||
| 1216 | has "^1.0.0" | ||
| 1217 | postcss "^7.0.0" | ||
| 1218 | postcss-value-parser "^3.0.0" | ||
| 1219 | |||
| 1220 | postcss-normalize-repeat-style@^4.0.2: | ||
| 1221 | version "4.0.2" | ||
| 1222 | resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz#c4ebbc289f3991a028d44751cbdd11918b17910c" | ||
| 1223 | integrity sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q== | ||
| 1224 | dependencies: | ||
| 1225 | cssnano-util-get-arguments "^4.0.0" | ||
| 1226 | cssnano-util-get-match "^4.0.0" | ||
| 1227 | postcss "^7.0.0" | ||
| 1228 | postcss-value-parser "^3.0.0" | ||
| 1229 | |||
| 1230 | postcss-normalize-string@^4.0.2: | ||
| 1231 | version "4.0.2" | ||
| 1232 | resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz#cd44c40ab07a0c7a36dc5e99aace1eca4ec2690c" | ||
| 1233 | integrity sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA== | ||
| 1234 | dependencies: | ||
| 1235 | has "^1.0.0" | ||
| 1236 | postcss "^7.0.0" | ||
| 1237 | postcss-value-parser "^3.0.0" | ||
| 1238 | |||
| 1239 | postcss-normalize-timing-functions@^4.0.2: | ||
| 1240 | version "4.0.2" | ||
| 1241 | resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz#8e009ca2a3949cdaf8ad23e6b6ab99cb5e7d28d9" | ||
| 1242 | integrity sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A== | ||
| 1243 | dependencies: | ||
| 1244 | cssnano-util-get-match "^4.0.0" | ||
| 1245 | postcss "^7.0.0" | ||
| 1246 | postcss-value-parser "^3.0.0" | ||
| 1247 | |||
| 1248 | postcss-normalize-unicode@^4.0.1: | ||
| 1249 | version "4.0.1" | ||
| 1250 | resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz#841bd48fdcf3019ad4baa7493a3d363b52ae1cfb" | ||
| 1251 | integrity sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg== | ||
| 1252 | dependencies: | ||
| 1253 | browserslist "^4.0.0" | ||
| 1254 | postcss "^7.0.0" | ||
| 1255 | postcss-value-parser "^3.0.0" | ||
| 1256 | |||
| 1257 | postcss-normalize-url@^4.0.1: | ||
| 1258 | version "4.0.1" | ||
| 1259 | resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz#10e437f86bc7c7e58f7b9652ed878daaa95faae1" | ||
| 1260 | integrity sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA== | ||
| 1261 | dependencies: | ||
| 1262 | is-absolute-url "^2.0.0" | ||
| 1263 | normalize-url "^3.0.0" | ||
| 1264 | postcss "^7.0.0" | ||
| 1265 | postcss-value-parser "^3.0.0" | ||
| 1266 | |||
| 1267 | postcss-normalize-whitespace@^4.0.2: | ||
| 1268 | version "4.0.2" | ||
| 1269 | resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz#bf1d4070fe4fcea87d1348e825d8cc0c5faa7d82" | ||
| 1270 | integrity sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA== | ||
| 1271 | dependencies: | ||
| 1272 | postcss "^7.0.0" | ||
| 1273 | postcss-value-parser "^3.0.0" | ||
| 1274 | |||
| 1275 | postcss-ordered-values@^4.1.2: | ||
| 1276 | version "4.1.2" | ||
| 1277 | resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz#0cf75c820ec7d5c4d280189559e0b571ebac0eee" | ||
| 1278 | integrity sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw== | ||
| 1279 | dependencies: | ||
| 1280 | cssnano-util-get-arguments "^4.0.0" | ||
| 1281 | postcss "^7.0.0" | ||
| 1282 | postcss-value-parser "^3.0.0" | ||
| 1283 | |||
| 1284 | postcss-reduce-initial@^4.0.3: | ||
| 1285 | version "4.0.3" | ||
| 1286 | resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz#7fd42ebea5e9c814609639e2c2e84ae270ba48df" | ||
| 1287 | integrity sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA== | ||
| 1288 | dependencies: | ||
| 1289 | browserslist "^4.0.0" | ||
| 1290 | caniuse-api "^3.0.0" | ||
| 1291 | has "^1.0.0" | ||
| 1292 | postcss "^7.0.0" | ||
| 1293 | |||
| 1294 | postcss-reduce-transforms@^4.0.2: | ||
| 1295 | version "4.0.2" | ||
| 1296 | resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz#17efa405eacc6e07be3414a5ca2d1074681d4e29" | ||
| 1297 | integrity sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg== | ||
| 1298 | dependencies: | ||
| 1299 | cssnano-util-get-match "^4.0.0" | ||
| 1300 | has "^1.0.0" | ||
| 1301 | postcss "^7.0.0" | ||
| 1302 | postcss-value-parser "^3.0.0" | ||
| 1303 | |||
| 1304 | postcss-reporter@^7.0.0: | ||
| 1305 | version "7.0.2" | ||
| 1306 | resolved "https://registry.yarnpkg.com/postcss-reporter/-/postcss-reporter-7.0.2.tgz#03e9e7381c1afe40646f9c22e7aeeb860e051065" | ||
| 1307 | integrity sha512-JyQ96NTQQsso42y6L1H1RqHfWH1C3Jr0pt91mVv5IdYddZAE9DUZxuferNgk6q0o6vBVOrfVJb10X1FgDzjmDw== | ||
| 1308 | dependencies: | ||
| 1309 | colorette "^1.2.1" | ||
| 1310 | lodash.difference "^4.5.0" | ||
| 1311 | lodash.forown "^4.4.0" | ||
| 1312 | lodash.get "^4.4.2" | ||
| 1313 | lodash.groupby "^4.6.0" | ||
| 1314 | lodash.sortby "^4.7.0" | ||
| 1315 | |||
| 1316 | postcss-selector-parser@^3.0.0: | ||
| 1317 | version "3.1.2" | ||
| 1318 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz#b310f5c4c0fdaf76f94902bbaa30db6aa84f5270" | ||
| 1319 | integrity sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA== | ||
| 1320 | dependencies: | ||
| 1321 | dot-prop "^5.2.0" | ||
| 1322 | indexes-of "^1.0.1" | ||
| 1323 | uniq "^1.0.1" | ||
| 1324 | |||
| 1325 | postcss-selector-parser@^6.0.2: | ||
| 1326 | version "6.0.4" | ||
| 1327 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz#56075a1380a04604c38b063ea7767a129af5c2b3" | ||
| 1328 | integrity sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw== | ||
| 1329 | dependencies: | ||
| 1330 | cssesc "^3.0.0" | ||
| 1331 | indexes-of "^1.0.1" | ||
| 1332 | uniq "^1.0.1" | ||
| 1333 | util-deprecate "^1.0.2" | ||
| 1334 | |||
| 1335 | postcss-svgo@^4.0.2: | ||
| 1336 | version "4.0.2" | ||
| 1337 | resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-4.0.2.tgz#17b997bc711b333bab143aaed3b8d3d6e3d38258" | ||
| 1338 | integrity sha512-C6wyjo3VwFm0QgBy+Fu7gCYOkCmgmClghO+pjcxvrcBKtiKt0uCF+hvbMO1fyv5BMImRK90SMb+dwUnfbGd+jw== | ||
| 1339 | dependencies: | ||
| 1340 | is-svg "^3.0.0" | ||
| 1341 | postcss "^7.0.0" | ||
| 1342 | postcss-value-parser "^3.0.0" | ||
| 1343 | svgo "^1.0.0" | ||
| 1344 | |||
| 1345 | postcss-unique-selectors@^4.0.1: | ||
| 1346 | version "4.0.1" | ||
| 1347 | resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz#9446911f3289bfd64c6d680f073c03b1f9ee4bac" | ||
| 1348 | integrity sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg== | ||
| 1349 | dependencies: | ||
| 1350 | alphanum-sort "^1.0.0" | ||
| 1351 | postcss "^7.0.0" | ||
| 1352 | uniqs "^2.0.0" | ||
| 1353 | |||
| 1354 | postcss-value-parser@^3.0.0: | ||
| 1355 | version "3.3.1" | ||
| 1356 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" | ||
| 1357 | integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== | ||
| 1358 | |||
| 1359 | postcss-value-parser@^4.0.2: | ||
| 1360 | version "4.1.0" | ||
| 1361 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb" | ||
| 1362 | integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ== | ||
| 1363 | |||
| 1364 | postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.27: | ||
| 1365 | version "7.0.35" | ||
| 1366 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.35.tgz#d2be00b998f7f211d8a276974079f2e92b970e24" | ||
| 1367 | integrity sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg== | ||
| 1368 | dependencies: | ||
| 1369 | chalk "^2.4.2" | ||
| 1370 | source-map "^0.6.1" | ||
| 1371 | supports-color "^6.1.0" | ||
| 1372 | |||
| 1373 | postcss@^8.2.1: | ||
| 1374 | version "8.2.1" | ||
| 1375 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.2.1.tgz#eabc5557c4558059b9d9e5b15bce7ffa9089c2a8" | ||
| 1376 | integrity sha512-RhsqOOAQzTgh1UB/IZdca7F9WDb7SUCR2Vnv1x7DbvuuggQIpoDwjK+q0rzoPffhYvWNKX5JSwS4so4K3UC6vA== | ||
| 1377 | dependencies: | ||
| 1378 | colorette "^1.2.1" | ||
| 1379 | nanoid "^3.1.20" | ||
| 1380 | source-map "^0.6.1" | ||
| 1381 | |||
| 1382 | pretty-hrtime@^1.0.3: | ||
| 1383 | version "1.0.3" | ||
| 1384 | resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" | ||
| 1385 | integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE= | ||
| 1386 | |||
| 1387 | q@^1.1.2: | ||
| 1388 | version "1.5.1" | ||
| 1389 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" | ||
| 1390 | integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc= | ||
| 1391 | |||
| 1392 | read-cache@^1.0.0: | ||
| 1393 | version "1.0.0" | ||
| 1394 | resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" | ||
| 1395 | integrity sha1-5mTvMRYRZsl1HNvo28+GtftY93Q= | ||
| 1396 | dependencies: | ||
| 1397 | pify "^2.3.0" | ||
| 1398 | |||
| 1399 | readdirp@~3.5.0: | ||
| 1400 | version "3.5.0" | ||
| 1401 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.5.0.tgz#9ba74c019b15d365278d2e91bb8c48d7b4d42c9e" | ||
| 1402 | integrity sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ== | ||
| 1403 | dependencies: | ||
| 1404 | picomatch "^2.2.1" | ||
| 1405 | |||
| 1406 | require-directory@^2.1.1: | ||
| 1407 | version "2.1.1" | ||
| 1408 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" | ||
| 1409 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= | ||
| 1410 | |||
| 1411 | resolve-from@^3.0.0: | ||
| 1412 | version "3.0.0" | ||
| 1413 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" | ||
| 1414 | integrity sha1-six699nWiBvItuZTM17rywoYh0g= | ||
| 1415 | |||
| 1416 | resolve-from@^4.0.0: | ||
| 1417 | version "4.0.0" | ||
| 1418 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" | ||
| 1419 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== | ||
| 1420 | |||
| 1421 | resolve-from@^5.0.0: | ||
| 1422 | version "5.0.0" | ||
| 1423 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" | ||
| 1424 | integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== | ||
| 1425 | |||
| 1426 | reusify@^1.0.4: | ||
| 1427 | version "1.0.4" | ||
| 1428 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" | ||
| 1429 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== | ||
| 1430 | |||
| 1431 | rgb-regex@^1.0.1: | ||
| 1432 | version "1.0.1" | ||
| 1433 | resolved "https://registry.yarnpkg.com/rgb-regex/-/rgb-regex-1.0.1.tgz#c0e0d6882df0e23be254a475e8edd41915feaeb1" | ||
| 1434 | integrity sha1-wODWiC3w4jviVKR16O3UGRX+rrE= | ||
| 1435 | |||
| 1436 | rgba-regex@^1.0.0: | ||
| 1437 | version "1.0.0" | ||
| 1438 | resolved "https://registry.yarnpkg.com/rgba-regex/-/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3" | ||
| 1439 | integrity sha1-QzdOLiyglosO8VI0YLfXMP8i7rM= | ||
| 1440 | |||
| 1441 | run-parallel@^1.1.9: | ||
| 1442 | version "1.1.10" | ||
| 1443 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.10.tgz#60a51b2ae836636c81377df16cb107351bcd13ef" | ||
| 1444 | integrity sha512-zb/1OuZ6flOlH6tQyMPUrE3x3Ulxjlo9WIVXR4yVYi4H9UXQaeIsPbLn2R3O3vQCnDKkAl2qHiuocKKX4Tz/Sw== | ||
| 1445 | |||
| 1446 | sax@~1.2.4: | ||
| 1447 | version "1.2.4" | ||
| 1448 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" | ||
| 1449 | integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== | ||
| 1450 | |||
| 1451 | simple-swizzle@^0.2.2: | ||
| 1452 | version "0.2.2" | ||
| 1453 | resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" | ||
| 1454 | integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo= | ||
| 1455 | dependencies: | ||
| 1456 | is-arrayish "^0.3.1" | ||
| 1457 | |||
| 1458 | slash@^3.0.0: | ||
| 1459 | version "3.0.0" | ||
| 1460 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" | ||
| 1461 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== | ||
| 1462 | |||
| 1463 | source-map@^0.6.1: | ||
| 1464 | version "0.6.1" | ||
| 1465 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" | ||
| 1466 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== | ||
| 1467 | |||
| 1468 | sprintf-js@~1.0.2: | ||
| 1469 | version "1.0.3" | ||
| 1470 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" | ||
| 1471 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= | ||
| 1472 | |||
| 1473 | stable@^0.1.8: | ||
| 1474 | version "0.1.8" | ||
| 1475 | resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" | ||
| 1476 | integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== | ||
| 1477 | |||
| 1478 | string-width@^4.1.0, string-width@^4.2.0: | ||
| 1479 | version "4.2.0" | ||
| 1480 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5" | ||
| 1481 | integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg== | ||
| 1482 | dependencies: | ||
| 1483 | emoji-regex "^8.0.0" | ||
| 1484 | is-fullwidth-code-point "^3.0.0" | ||
| 1485 | strip-ansi "^6.0.0" | ||
| 1486 | |||
| 1487 | string.prototype.trimend@^1.0.1: | ||
| 1488 | version "1.0.3" | ||
| 1489 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz#a22bd53cca5c7cf44d7c9d5c732118873d6cd18b" | ||
| 1490 | integrity sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw== | ||
| 1491 | dependencies: | ||
| 1492 | call-bind "^1.0.0" | ||
| 1493 | define-properties "^1.1.3" | ||
| 1494 | |||
| 1495 | string.prototype.trimstart@^1.0.1: | ||
| 1496 | version "1.0.3" | ||
| 1497 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz#9b4cb590e123bb36564401d59824298de50fd5aa" | ||
| 1498 | integrity sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg== | ||
| 1499 | dependencies: | ||
| 1500 | call-bind "^1.0.0" | ||
| 1501 | define-properties "^1.1.3" | ||
| 1502 | |||
| 1503 | strip-ansi@^6.0.0: | ||
| 1504 | version "6.0.0" | ||
| 1505 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" | ||
| 1506 | integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== | ||
| 1507 | dependencies: | ||
| 1508 | ansi-regex "^5.0.0" | ||
| 1509 | |||
| 1510 | stylehacks@^4.0.0: | ||
| 1511 | version "4.0.3" | ||
| 1512 | resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-4.0.3.tgz#6718fcaf4d1e07d8a1318690881e8d96726a71d5" | ||
| 1513 | integrity sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g== | ||
| 1514 | dependencies: | ||
| 1515 | browserslist "^4.0.0" | ||
| 1516 | postcss "^7.0.0" | ||
| 1517 | postcss-selector-parser "^3.0.0" | ||
| 1518 | |||
| 1519 | supports-color@^5.3.0: | ||
| 1520 | version "5.5.0" | ||
| 1521 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" | ||
| 1522 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== | ||
| 1523 | dependencies: | ||
| 1524 | has-flag "^3.0.0" | ||
| 1525 | |||
| 1526 | supports-color@^6.1.0: | ||
| 1527 | version "6.1.0" | ||
| 1528 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" | ||
| 1529 | integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== | ||
| 1530 | dependencies: | ||
| 1531 | has-flag "^3.0.0" | ||
| 1532 | |||
| 1533 | supports-color@^7.1.0: | ||
| 1534 | version "7.2.0" | ||
| 1535 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" | ||
| 1536 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== | ||
| 1537 | dependencies: | ||
| 1538 | has-flag "^4.0.0" | ||
| 1539 | |||
| 1540 | svgo@^1.0.0: | ||
| 1541 | version "1.3.2" | ||
| 1542 | resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.3.2.tgz#b6dc511c063346c9e415b81e43401145b96d4167" | ||
| 1543 | integrity sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw== | ||
| 1544 | dependencies: | ||
| 1545 | chalk "^2.4.1" | ||
| 1546 | coa "^2.0.2" | ||
| 1547 | css-select "^2.0.0" | ||
| 1548 | css-select-base-adapter "^0.1.1" | ||
| 1549 | css-tree "1.0.0-alpha.37" | ||
| 1550 | csso "^4.0.2" | ||
| 1551 | js-yaml "^3.13.1" | ||
| 1552 | mkdirp "~0.5.1" | ||
| 1553 | object.values "^1.1.0" | ||
| 1554 | sax "~1.2.4" | ||
| 1555 | stable "^0.1.8" | ||
| 1556 | unquote "~1.1.1" | ||
| 1557 | util.promisify "~1.0.0" | ||
| 1558 | |||
| 1559 | timsort@^0.3.0: | ||
| 1560 | version "0.3.0" | ||
| 1561 | resolved "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4" | ||
| 1562 | integrity sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q= | ||
| 1563 | |||
| 1564 | to-regex-range@^5.0.1: | ||
| 1565 | version "5.0.1" | ||
| 1566 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" | ||
| 1567 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== | ||
| 1568 | dependencies: | ||
| 1569 | is-number "^7.0.0" | ||
| 1570 | |||
| 1571 | uniq@^1.0.1: | ||
| 1572 | version "1.0.1" | ||
| 1573 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" | ||
| 1574 | integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8= | ||
| 1575 | |||
| 1576 | uniqs@^2.0.0: | ||
| 1577 | version "2.0.0" | ||
| 1578 | resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" | ||
| 1579 | integrity sha1-/+3ks2slKQaW5uFl1KWe25mOawI= | ||
| 1580 | |||
| 1581 | universalify@^1.0.0: | ||
| 1582 | version "1.0.0" | ||
| 1583 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-1.0.0.tgz#b61a1da173e8435b2fe3c67d29b9adf8594bd16d" | ||
| 1584 | integrity sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug== | ||
| 1585 | |||
| 1586 | universalify@^2.0.0: | ||
| 1587 | version "2.0.0" | ||
| 1588 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" | ||
| 1589 | integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== | ||
| 1590 | |||
| 1591 | unquote@~1.1.1: | ||
| 1592 | version "1.1.1" | ||
| 1593 | resolved "https://registry.yarnpkg.com/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544" | ||
| 1594 | integrity sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ= | ||
| 1595 | |||
| 1596 | util-deprecate@^1.0.2: | ||
| 1597 | version "1.0.2" | ||
| 1598 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" | ||
| 1599 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= | ||
| 1600 | |||
| 1601 | util.promisify@~1.0.0: | ||
| 1602 | version "1.0.1" | ||
| 1603 | resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.1.tgz#6baf7774b80eeb0f7520d8b81d07982a59abbaee" | ||
| 1604 | integrity sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA== | ||
| 1605 | dependencies: | ||
| 1606 | define-properties "^1.1.3" | ||
| 1607 | es-abstract "^1.17.2" | ||
| 1608 | has-symbols "^1.0.1" | ||
| 1609 | object.getownpropertydescriptors "^2.1.0" | ||
| 1610 | |||
| 1611 | vendors@^1.0.0: | ||
| 1612 | version "1.0.4" | ||
| 1613 | resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.4.tgz#e2b800a53e7a29b93506c3cf41100d16c4c4ad8e" | ||
| 1614 | integrity sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w== | ||
| 1615 | |||
| 1616 | wrap-ansi@^7.0.0: | ||
| 1617 | version "7.0.0" | ||
| 1618 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" | ||
| 1619 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== | ||
| 1620 | dependencies: | ||
| 1621 | ansi-styles "^4.0.0" | ||
| 1622 | string-width "^4.1.0" | ||
| 1623 | strip-ansi "^6.0.0" | ||
| 1624 | |||
| 1625 | y18n@^5.0.5: | ||
| 1626 | version "5.0.5" | ||
| 1627 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.5.tgz#8769ec08d03b1ea2df2500acef561743bbb9ab18" | ||
| 1628 | integrity sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg== | ||
| 1629 | |||
| 1630 | yaml@^1.10.0: | ||
| 1631 | version "1.10.0" | ||
| 1632 | resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e" | ||
| 1633 | integrity sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg== | ||
| 1634 | |||
| 1635 | yargs-parser@^20.2.2: | ||
| 1636 | version "20.2.4" | ||
| 1637 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54" | ||
| 1638 | integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA== | ||
| 1639 | |||
| 1640 | yargs@^16.0.0: | ||
| 1641 | version "16.2.0" | ||
| 1642 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" | ||
| 1643 | integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== | ||
| 1644 | dependencies: | ||
| 1645 | cliui "^7.0.2" | ||
| 1646 | escalade "^3.1.1" | ||
| 1647 | get-caller-file "^2.0.5" | ||
| 1648 | require-directory "^2.1.1" | ||
| 1649 | string-width "^4.2.0" | ||
| 1650 | y18n "^5.0.5" | ||
| 1651 | yargs-parser "^20.2.2" | ||
