Commit 893f3c79e762a19e4364964835ebd30cb466c848
1 parent
e8d6f885
refactor(css): refactored windicss to tailwindcss
Showing
17 changed files
with
3075 additions
and
1425 deletions
.vscode/settings.json
CHANGELOG.zh_CN.md
build/vite/plugin/index.ts
... | ... | @@ -5,7 +5,6 @@ import vueJsx from '@vitejs/plugin-vue-jsx'; |
5 | 5 | import legacy from '@vitejs/plugin-legacy'; |
6 | 6 | |
7 | 7 | import purgeIcons from 'vite-plugin-purge-icons'; |
8 | -import windiCSS from 'vite-plugin-windicss'; | |
9 | 8 | |
10 | 9 | import { configHtmlPlugin } from './html'; |
11 | 10 | import { configPwaConfig } from './pwa'; |
... | ... | @@ -46,9 +45,6 @@ export function createVitePlugins(viteEnv: ViteEnv, isBuild: boolean) { |
46 | 45 | // vite-plugin-svg-icons |
47 | 46 | vitePlugins.push(configSvgIconsPlugin(isBuild)); |
48 | 47 | |
49 | - // vite-plugin-windicss | |
50 | - vitePlugins.push(windiCSS()); | |
51 | - | |
52 | 48 | // vite-plugin-mock |
53 | 49 | VITE_USE_MOCK && vitePlugins.push(configMockPlugin(isBuild)); |
54 | 50 | ... | ... |
jest.config.mjs
... | ... | @@ -17,7 +17,6 @@ export default { |
17 | 17 | ], |
18 | 18 | transform: { |
19 | 19 | '^.+\\.tsx?$': 'ts-jest', |
20 | - '^.+\\.(vue)$': 'vue-jest', | |
21 | 20 | }, |
22 | 21 | transformIgnorePatterns: ['<rootDir>/tests/__mocks__/', '/node_modules/'], |
23 | 22 | // A map from regular expressions to module names that allow to stub out resources with a single module | ... | ... |
package.json
... | ... | @@ -87,9 +87,8 @@ |
87 | 87 | "@vitejs/plugin-vue": "^1.2.3", |
88 | 88 | "@vitejs/plugin-vue-jsx": "^1.1.5", |
89 | 89 | "@vue/compiler-sfc": "3.0.11", |
90 | - "@vue/test-utils": "^2.0.0-rc.6", | |
90 | + "@vue/test-utils": "^2.0.0-rc.7", | |
91 | 91 | "autoprefixer": "^10.2.6", |
92 | - "babel-jest": "^27.0.2", | |
93 | 92 | "commitizen": "^4.2.4", |
94 | 93 | "conventional-changelog-cli": "^2.1.1", |
95 | 94 | "cross-env": "^7.0.3", |
... | ... | @@ -109,6 +108,7 @@ |
109 | 108 | "jest": "^27.0.4", |
110 | 109 | "less": "^4.1.1", |
111 | 110 | "lint-staged": "^11.0.0", |
111 | + "npm-run-all": "^4.1.5", | |
112 | 112 | "postcss": "^8.3.5", |
113 | 113 | "prettier": "^2.3.1", |
114 | 114 | "pretty-quick": "^3.1.1", |
... | ... | @@ -118,10 +118,11 @@ |
118 | 118 | "stylelint-config-prettier": "^8.0.2", |
119 | 119 | "stylelint-config-standard": "^22.0.0", |
120 | 120 | "stylelint-order": "^4.1.0", |
121 | + "tailwindcss": "^2.2.2", | |
121 | 122 | "ts-jest": "^27.0.3", |
122 | 123 | "ts-node": "^10.0.0", |
123 | 124 | "typescript": "4.3.4", |
124 | - "vite": "2.3.7", | |
125 | + "vite": "2.3.8", | |
125 | 126 | "vite-plugin-compression": "^0.2.5", |
126 | 127 | "vite-plugin-html": "^2.0.7", |
127 | 128 | "vite-plugin-imagemin": "^0.3.2", |
... | ... | @@ -131,9 +132,7 @@ |
131 | 132 | "vite-plugin-style-import": "^1.0.0", |
132 | 133 | "vite-plugin-svg-icons": "^0.7.1", |
133 | 134 | "vite-plugin-theme": "^0.8.1", |
134 | - "vite-plugin-windicss": "^1.0.4", | |
135 | 135 | "vue-eslint-parser": "^7.6.0", |
136 | - "vue-jest": "^5.0.0-alpha.10", | |
137 | 136 | "vue-tsc": "^0.1.7" |
138 | 137 | }, |
139 | 138 | "resolutions": { | ... | ... |
postcss.config.js
src/design/tailwind.css
0 → 100644
1 | +/*! tailwindcss v2.2.0 | MIT License | https://tailwindcss.com */ | |
2 | + | |
3 | +/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */ | |
4 | + | |
5 | +/* | |
6 | +Document | |
7 | +======== | |
8 | +*/ | |
9 | + | |
10 | +/** | |
11 | +Use a better box model (opinionated). | |
12 | +*/ | |
13 | + | |
14 | +*, | |
15 | +::before, | |
16 | +::after { | |
17 | + box-sizing: border-box; | |
18 | +} | |
19 | + | |
20 | +/** | |
21 | +Use a more readable tab size (opinionated). | |
22 | +*/ | |
23 | + | |
24 | +html { | |
25 | + -moz-tab-size: 4; | |
26 | + -o-tab-size: 4; | |
27 | + tab-size: 4; | |
28 | +} | |
29 | + | |
30 | +/** | |
31 | +1. Correct the line height in all browsers. | |
32 | +2. Prevent adjustments of font size after orientation changes in iOS. | |
33 | +*/ | |
34 | + | |
35 | +html { | |
36 | + line-height: 1.15; | |
37 | + /* 1 */ | |
38 | + -webkit-text-size-adjust: 100%; | |
39 | + /* 2 */ | |
40 | +} | |
41 | + | |
42 | +/* | |
43 | +Sections | |
44 | +======== | |
45 | +*/ | |
46 | + | |
47 | +/** | |
48 | +Remove the margin in all browsers. | |
49 | +*/ | |
50 | + | |
51 | +body { | |
52 | + margin: 0; | |
53 | +} | |
54 | + | |
55 | +/** | |
56 | +Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) | |
57 | +*/ | |
58 | + | |
59 | +body { | |
60 | + font-family: system-ui, -apple-system, | |
61 | + /* Firefox supports this but not yet `system-ui` */ 'Segoe UI', Roboto, Helvetica, Arial, | |
62 | + sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'; | |
63 | +} | |
64 | + | |
65 | +/* | |
66 | +Grouping content | |
67 | +================ | |
68 | +*/ | |
69 | + | |
70 | +/** | |
71 | +1. Add the correct height in Firefox. | |
72 | +2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655) | |
73 | +*/ | |
74 | + | |
75 | +hr { | |
76 | + height: 0; | |
77 | + /* 1 */ | |
78 | + color: inherit; | |
79 | + /* 2 */ | |
80 | +} | |
81 | + | |
82 | +/* | |
83 | +Text-level semantics | |
84 | +==================== | |
85 | +*/ | |
86 | + | |
87 | +/** | |
88 | +Add the correct text decoration in Chrome, Edge, and Safari. | |
89 | +*/ | |
90 | + | |
91 | +abbr[title] { | |
92 | + -webkit-text-decoration: underline dotted; | |
93 | + text-decoration: underline dotted; | |
94 | +} | |
95 | + | |
96 | +/** | |
97 | +Add the correct font weight in Edge and Safari. | |
98 | +*/ | |
99 | + | |
100 | +b, | |
101 | +strong { | |
102 | + font-weight: bolder; | |
103 | +} | |
104 | + | |
105 | +/** | |
106 | +1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) | |
107 | +2. Correct the odd 'em' font sizing in all browsers. | |
108 | +*/ | |
109 | + | |
110 | +code, | |
111 | +kbd, | |
112 | +samp, | |
113 | +pre { | |
114 | + font-family: ui-monospace, SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; | |
115 | + /* 1 */ | |
116 | + font-size: 1em; | |
117 | + /* 2 */ | |
118 | +} | |
119 | + | |
120 | +/** | |
121 | +Add the correct font size in all browsers. | |
122 | +*/ | |
123 | + | |
124 | +small { | |
125 | + font-size: 80%; | |
126 | +} | |
127 | + | |
128 | +/** | |
129 | +Prevent 'sub' and 'sup' elements from affecting the line height in all browsers. | |
130 | +*/ | |
131 | + | |
132 | +sub, | |
133 | +sup { | |
134 | + font-size: 75%; | |
135 | + line-height: 0; | |
136 | + position: relative; | |
137 | + vertical-align: baseline; | |
138 | +} | |
139 | + | |
140 | +sub { | |
141 | + bottom: -0.25em; | |
142 | +} | |
143 | + | |
144 | +sup { | |
145 | + top: -0.5em; | |
146 | +} | |
147 | + | |
148 | +/* | |
149 | +Tabular data | |
150 | +============ | |
151 | +*/ | |
152 | + | |
153 | +/** | |
154 | +1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297) | |
155 | +2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016) | |
156 | +*/ | |
157 | + | |
158 | +table { | |
159 | + text-indent: 0; | |
160 | + /* 1 */ | |
161 | + border-color: inherit; | |
162 | + /* 2 */ | |
163 | +} | |
164 | + | |
165 | +/* | |
166 | +Forms | |
167 | +===== | |
168 | +*/ | |
169 | + | |
170 | +/** | |
171 | +1. Change the font styles in all browsers. | |
172 | +2. Remove the margin in Firefox and Safari. | |
173 | +*/ | |
174 | + | |
175 | +button, | |
176 | +input, | |
177 | +optgroup, | |
178 | +select, | |
179 | +textarea { | |
180 | + font-family: inherit; | |
181 | + /* 1 */ | |
182 | + font-size: 100%; | |
183 | + /* 1 */ | |
184 | + line-height: 1.15; | |
185 | + /* 1 */ | |
186 | + margin: 0; | |
187 | + /* 2 */ | |
188 | +} | |
189 | + | |
190 | +/** | |
191 | +Remove the inheritance of text transform in Edge and Firefox. | |
192 | +1. Remove the inheritance of text transform in Firefox. | |
193 | +*/ | |
194 | + | |
195 | +button, | |
196 | +select { | |
197 | + /* 1 */ | |
198 | + text-transform: none; | |
199 | +} | |
200 | + | |
201 | +/** | |
202 | +Correct the inability to style clickable types in iOS and Safari. | |
203 | +*/ | |
204 | + | |
205 | +button, | |
206 | +[type='button'], | |
207 | +[type='reset'], | |
208 | +[type='submit'] { | |
209 | + -webkit-appearance: button; | |
210 | +} | |
211 | + | |
212 | +/** | |
213 | +Remove the inner border and padding in Firefox. | |
214 | +*/ | |
215 | + | |
216 | +::-moz-focus-inner { | |
217 | + border-style: none; | |
218 | + padding: 0; | |
219 | +} | |
220 | + | |
221 | +/** | |
222 | +Restore the focus styles unset by the previous rule. | |
223 | +*/ | |
224 | + | |
225 | +:-moz-focusring { | |
226 | + outline: 1px dotted ButtonText; | |
227 | +} | |
228 | + | |
229 | +/** | |
230 | +Remove the additional ':invalid' styles in Firefox. | |
231 | +See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737 | |
232 | +*/ | |
233 | + | |
234 | +:-moz-ui-invalid { | |
235 | + box-shadow: none; | |
236 | +} | |
237 | + | |
238 | +/** | |
239 | +Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers. | |
240 | +*/ | |
241 | + | |
242 | +legend { | |
243 | + padding: 0; | |
244 | +} | |
245 | + | |
246 | +/** | |
247 | +Add the correct vertical alignment in Chrome and Firefox. | |
248 | +*/ | |
249 | + | |
250 | +progress { | |
251 | + vertical-align: baseline; | |
252 | +} | |
253 | + | |
254 | +/** | |
255 | +Correct the cursor style of increment and decrement buttons in Safari. | |
256 | +*/ | |
257 | + | |
258 | +::-webkit-inner-spin-button, | |
259 | +::-webkit-outer-spin-button { | |
260 | + height: auto; | |
261 | +} | |
262 | + | |
263 | +/** | |
264 | +1. Correct the odd appearance in Chrome and Safari. | |
265 | +2. Correct the outline style in Safari. | |
266 | +*/ | |
267 | + | |
268 | +[type='search'] { | |
269 | + -webkit-appearance: textfield; | |
270 | + /* 1 */ | |
271 | + outline-offset: -2px; | |
272 | + /* 2 */ | |
273 | +} | |
274 | + | |
275 | +/** | |
276 | +Remove the inner padding in Chrome and Safari on macOS. | |
277 | +*/ | |
278 | + | |
279 | +::-webkit-search-decoration { | |
280 | + -webkit-appearance: none; | |
281 | +} | |
282 | + | |
283 | +/** | |
284 | +1. Correct the inability to style clickable types in iOS and Safari. | |
285 | +2. Change font properties to 'inherit' in Safari. | |
286 | +*/ | |
287 | + | |
288 | +::-webkit-file-upload-button { | |
289 | + -webkit-appearance: button; | |
290 | + /* 1 */ | |
291 | + font: inherit; | |
292 | + /* 2 */ | |
293 | +} | |
294 | + | |
295 | +/* | |
296 | +Interactive | |
297 | +=========== | |
298 | +*/ | |
299 | + | |
300 | +/* | |
301 | +Add the correct display in Chrome and Safari. | |
302 | +*/ | |
303 | + | |
304 | +summary { | |
305 | + display: list-item; | |
306 | +} | |
307 | + | |
308 | +/** | |
309 | + * Manually forked from SUIT CSS Base: https://github.com/suitcss/base | |
310 | + * A thin layer on top of normalize.css that provides a starting point more | |
311 | + * suitable for web applications. | |
312 | + */ | |
313 | + | |
314 | +/** | |
315 | + * Removes the default spacing and border for appropriate elements. | |
316 | + */ | |
317 | + | |
318 | +blockquote, | |
319 | +dl, | |
320 | +dd, | |
321 | +h1, | |
322 | +h2, | |
323 | +h3, | |
324 | +h4, | |
325 | +h5, | |
326 | +h6, | |
327 | +hr, | |
328 | +figure, | |
329 | +p, | |
330 | +pre { | |
331 | + margin: 0; | |
332 | +} | |
333 | + | |
334 | +button { | |
335 | + background-color: transparent; | |
336 | + background-image: none; | |
337 | +} | |
338 | + | |
339 | +/** | |
340 | + * Work around a Firefox/IE bug where the transparent `button` background | |
341 | + * results in a loss of the default `button` focus styles. | |
342 | + */ | |
343 | + | |
344 | +button:focus { | |
345 | + outline: 1px dotted; | |
346 | + outline: 5px auto -webkit-focus-ring-color; | |
347 | +} | |
348 | + | |
349 | +fieldset { | |
350 | + margin: 0; | |
351 | + padding: 0; | |
352 | +} | |
353 | + | |
354 | +ol, | |
355 | +ul { | |
356 | + list-style: none; | |
357 | + margin: 0; | |
358 | + padding: 0; | |
359 | +} | |
360 | + | |
361 | +/** | |
362 | + * Tailwind custom reset styles | |
363 | + */ | |
364 | + | |
365 | +/** | |
366 | + * 1. Use the user's configured `sans` font-family (with Tailwind's default | |
367 | + * sans-serif font stack as a fallback) as a sane default. | |
368 | + * 2. Use Tailwind's default "normal" line-height so the user isn't forced | |
369 | + * to override it to ensure consistency even when using the default theme. | |
370 | + */ | |
371 | + | |
372 | +html { | |
373 | + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, | |
374 | + 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', | |
375 | + 'Segoe UI Symbol', 'Noto Color Emoji'; | |
376 | + /* 1 */ | |
377 | + line-height: 1.5; | |
378 | + /* 2 */ | |
379 | +} | |
380 | + | |
381 | +/** | |
382 | + * Inherit font-family and line-height from `html` so users can set them as | |
383 | + * a class directly on the `html` element. | |
384 | + */ | |
385 | + | |
386 | +body { | |
387 | + font-family: inherit; | |
388 | + line-height: inherit; | |
389 | +} | |
390 | + | |
391 | +/** | |
392 | + * 1. Prevent padding and border from affecting element width. | |
393 | + * | |
394 | + * We used to set this in the html element and inherit from | |
395 | + * the parent element for everything else. This caused issues | |
396 | + * in shadow-dom-enhanced elements like <details> where the content | |
397 | + * is wrapped by a div with box-sizing set to `content-box`. | |
398 | + * | |
399 | + * https://github.com/mozdevs/cssremedy/issues/4 | |
400 | + * | |
401 | + * | |
402 | + * 2. Allow adding a border to an element by just adding a border-width. | |
403 | + * | |
404 | + * By default, the way the browser specifies that an element should have no | |
405 | + * border is by setting it's border-style to `none` in the user-agent | |
406 | + * stylesheet. | |
407 | + * | |
408 | + * In order to easily add borders to elements by just setting the `border-width` | |
409 | + * property, we change the default border-style for all elements to `solid`, and | |
410 | + * use border-width to hide them instead. This way our `border` utilities only | |
411 | + * need to set the `border-width` property instead of the entire `border` | |
412 | + * shorthand, making our border utilities much more straightforward to compose. | |
413 | + * | |
414 | + * https://github.com/tailwindcss/tailwindcss/pull/116 | |
415 | + */ | |
416 | + | |
417 | +*, | |
418 | +::before, | |
419 | +::after { | |
420 | + box-sizing: border-box; | |
421 | + /* 1 */ | |
422 | + border-width: 0; | |
423 | + /* 2 */ | |
424 | + border-style: solid; | |
425 | + /* 2 */ | |
426 | + border-color: currentColor; | |
427 | + /* 2 */ | |
428 | +} | |
429 | + | |
430 | +/* | |
431 | + * Ensure horizontal rules are visible by default | |
432 | + */ | |
433 | + | |
434 | +hr { | |
435 | + border-top-width: 1px; | |
436 | +} | |
437 | + | |
438 | +/** | |
439 | + * Undo the `border-style: none` reset that Normalize applies to images so that | |
440 | + * our `border-{width}` utilities have the expected effect. | |
441 | + * | |
442 | + * The Normalize reset is unnecessary for us since we default the border-width | |
443 | + * to 0 on all elements. | |
444 | + * | |
445 | + * https://github.com/tailwindcss/tailwindcss/issues/362 | |
446 | + */ | |
447 | + | |
448 | +img { | |
449 | + border-style: solid; | |
450 | +} | |
451 | + | |
452 | +textarea { | |
453 | + resize: vertical; | |
454 | +} | |
455 | + | |
456 | +input::-moz-placeholder, | |
457 | +textarea::-moz-placeholder { | |
458 | + opacity: 1; | |
459 | + color: #a1a1aa; | |
460 | +} | |
461 | + | |
462 | +input:-ms-input-placeholder, | |
463 | +textarea:-ms-input-placeholder { | |
464 | + opacity: 1; | |
465 | + color: #a1a1aa; | |
466 | +} | |
467 | + | |
468 | +input::placeholder, | |
469 | +textarea::placeholder { | |
470 | + opacity: 1; | |
471 | + color: #a1a1aa; | |
472 | +} | |
473 | + | |
474 | +button, | |
475 | +[role='button'] { | |
476 | + cursor: pointer; | |
477 | +} | |
478 | + | |
479 | +table { | |
480 | + border-collapse: collapse; | |
481 | +} | |
482 | + | |
483 | +h1, | |
484 | +h2, | |
485 | +h3, | |
486 | +h4, | |
487 | +h5, | |
488 | +h6 { | |
489 | + font-size: inherit; | |
490 | + font-weight: inherit; | |
491 | +} | |
492 | + | |
493 | +/** | |
494 | + * Reset links to optimize for opt-in styling instead of | |
495 | + * opt-out. | |
496 | + */ | |
497 | + | |
498 | +a { | |
499 | + color: inherit; | |
500 | + text-decoration: inherit; | |
501 | +} | |
502 | + | |
503 | +/** | |
504 | + * Reset form element properties that are easy to forget to | |
505 | + * style explicitly so you don't inadvertently introduce | |
506 | + * styles that deviate from your design system. These styles | |
507 | + * supplement a partial reset that is already applied by | |
508 | + * normalize.css. | |
509 | + */ | |
510 | + | |
511 | +button, | |
512 | +input, | |
513 | +optgroup, | |
514 | +select, | |
515 | +textarea { | |
516 | + padding: 0; | |
517 | + line-height: inherit; | |
518 | + color: inherit; | |
519 | +} | |
520 | + | |
521 | +/** | |
522 | + * Use the configured 'mono' font family for elements that | |
523 | + * are expected to be rendered with a monospace font, falling | |
524 | + * back to the system monospace stack if there is no configured | |
525 | + * 'mono' font family. | |
526 | + */ | |
527 | + | |
528 | +pre, | |
529 | +code, | |
530 | +kbd, | |
531 | +samp { | |
532 | + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', | |
533 | + 'Courier New', monospace; | |
534 | +} | |
535 | + | |
536 | +/** | |
537 | + * 1. Make replaced elements `display: block` by default as that's | |
538 | + * the behavior you want almost all of the time. Inspired by | |
539 | + * CSS Remedy, with `svg` added as well. | |
540 | + * | |
541 | + * https://github.com/mozdevs/cssremedy/issues/14 | |
542 | + * | |
543 | + * 2. Add `vertical-align: middle` to align replaced elements more | |
544 | + * sensibly by default when overriding `display` by adding a | |
545 | + * utility like `inline`. | |
546 | + * | |
547 | + * This can trigger a poorly considered linting error in some | |
548 | + * tools but is included by design. | |
549 | + * | |
550 | + * https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210 | |
551 | + */ | |
552 | + | |
553 | +img, | |
554 | +svg, | |
555 | +video, | |
556 | +canvas, | |
557 | +audio, | |
558 | +iframe, | |
559 | +embed, | |
560 | +object { | |
561 | + display: block; | |
562 | + /* 1 */ | |
563 | + vertical-align: middle; | |
564 | + /* 2 */ | |
565 | +} | |
566 | + | |
567 | +/** | |
568 | + * Constrain images and videos to the parent width and preserve | |
569 | + * their intrinsic aspect ratio. | |
570 | + * | |
571 | + * https://github.com/mozdevs/cssremedy/issues/14 | |
572 | + */ | |
573 | + | |
574 | +img, | |
575 | +video { | |
576 | + max-width: 100%; | |
577 | + height: auto; | |
578 | +} | |
579 | + | |
580 | +*, | |
581 | +::before, | |
582 | +::after { | |
583 | + --tw-translate-x: 0; | |
584 | + --tw-translate-y: 0; | |
585 | + --tw-rotate: 0; | |
586 | + --tw-skew-x: 0; | |
587 | + --tw-skew-y: 0; | |
588 | + --tw-scale-x: 1; | |
589 | + --tw-scale-y: 1; | |
590 | + --tw-transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) | |
591 | + rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) | |
592 | + scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); | |
593 | + --tw-border-opacity: 1; | |
594 | + border-color: rgba(228, 228, 231, var(--tw-border-opacity)); | |
595 | + --tw-shadow: 0 0 #0000; | |
596 | + --tw-ring-inset: var(--tw-empty, /*!*/ /*!*/); | |
597 | + --tw-ring-offset-width: 0px; | |
598 | + --tw-ring-offset-color: #fff; | |
599 | + --tw-ring-color: rgba(59, 130, 246, 0.5); | |
600 | + --tw-ring-offset-shadow: 0 0 #0000; | |
601 | + --tw-ring-shadow: 0 0 #0000; | |
602 | + --tw-blur: var(--tw-empty, /*!*/ /*!*/); | |
603 | + --tw-brightness: var(--tw-empty, /*!*/ /*!*/); | |
604 | + --tw-contrast: var(--tw-empty, /*!*/ /*!*/); | |
605 | + --tw-grayscale: var(--tw-empty, /*!*/ /*!*/); | |
606 | + --tw-hue-rotate: var(--tw-empty, /*!*/ /*!*/); | |
607 | + --tw-invert: var(--tw-empty, /*!*/ /*!*/); | |
608 | + --tw-saturate: var(--tw-empty, /*!*/ /*!*/); | |
609 | + --tw-sepia: var(--tw-empty, /*!*/ /*!*/); | |
610 | + --tw-drop-shadow: var(--tw-empty, /*!*/ /*!*/); | |
611 | + --tw-filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) | |
612 | + var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); | |
613 | + --tw-backdrop-blur: var(--tw-empty, /*!*/ /*!*/); | |
614 | + --tw-backdrop-brightness: var(--tw-empty, /*!*/ /*!*/); | |
615 | + --tw-backdrop-contrast: var(--tw-empty, /*!*/ /*!*/); | |
616 | + --tw-backdrop-grayscale: var(--tw-empty, /*!*/ /*!*/); | |
617 | + --tw-backdrop-hue-rotate: var(--tw-empty, /*!*/ /*!*/); | |
618 | + --tw-backdrop-invert: var(--tw-empty, /*!*/ /*!*/); | |
619 | + --tw-backdrop-opacity: var(--tw-empty, /*!*/ /*!*/); | |
620 | + --tw-backdrop-saturate: var(--tw-empty, /*!*/ /*!*/); | |
621 | + --tw-backdrop-sepia: var(--tw-empty, /*!*/ /*!*/); | |
622 | + --tw-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) | |
623 | + var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) | |
624 | + var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) | |
625 | + var(--tw-backdrop-sepia); | |
626 | +} | |
627 | + | |
628 | +* > .enter-x:nth-child(1) { | |
629 | + transform: translateX(50px); | |
630 | +} | |
631 | + | |
632 | +* > .-enter-x:nth-child(1) { | |
633 | + transform: translateX(-50px); | |
634 | +} | |
635 | + | |
636 | +* > .enter-x:nth-child(1), | |
637 | +* > .-enter-x:nth-child(1) { | |
638 | + z-index: 9; | |
639 | + opacity: 0; | |
640 | + -webkit-animation: enter-x-animation 0.4s ease-in-out 0.3s; | |
641 | + animation: enter-x-animation 0.4s ease-in-out 0.3s; | |
642 | + -webkit-animation-fill-mode: forwards; | |
643 | + animation-fill-mode: forwards; | |
644 | + -webkit-animation-delay: 0.1s; | |
645 | + animation-delay: 0.1s; | |
646 | +} | |
647 | + | |
648 | +* > .enter-y:nth-child(1) { | |
649 | + transform: translateY(50px); | |
650 | +} | |
651 | + | |
652 | +* > .enter-y:nth-child(1), | |
653 | +* > .-enter-y:nth-child(1) { | |
654 | + z-index: 9; | |
655 | + opacity: 0; | |
656 | + -webkit-animation: enter-y-animation 0.4s ease-in-out 0.3s; | |
657 | + animation: enter-y-animation 0.4s ease-in-out 0.3s; | |
658 | + -webkit-animation-fill-mode: forwards; | |
659 | + animation-fill-mode: forwards; | |
660 | + -webkit-animation-delay: 0.1s; | |
661 | + animation-delay: 0.1s; | |
662 | +} | |
663 | + | |
664 | +* > .enter-x:nth-child(2) { | |
665 | + transform: translateX(50px); | |
666 | +} | |
667 | + | |
668 | +* > .-enter-x:nth-child(2) { | |
669 | + transform: translateX(-50px); | |
670 | +} | |
671 | + | |
672 | +* > .enter-x:nth-child(2), | |
673 | +* > .-enter-x:nth-child(2) { | |
674 | + z-index: 8; | |
675 | + opacity: 0; | |
676 | + -webkit-animation: enter-x-animation 0.4s ease-in-out 0.3s; | |
677 | + animation: enter-x-animation 0.4s ease-in-out 0.3s; | |
678 | + -webkit-animation-fill-mode: forwards; | |
679 | + animation-fill-mode: forwards; | |
680 | + -webkit-animation-delay: 0.2s; | |
681 | + animation-delay: 0.2s; | |
682 | +} | |
683 | + | |
684 | +* > .enter-y:nth-child(2) { | |
685 | + transform: translateY(50px); | |
686 | +} | |
687 | + | |
688 | +* > .enter-y:nth-child(2), | |
689 | +* > .-enter-y:nth-child(2) { | |
690 | + z-index: 8; | |
691 | + opacity: 0; | |
692 | + -webkit-animation: enter-y-animation 0.4s ease-in-out 0.3s; | |
693 | + animation: enter-y-animation 0.4s ease-in-out 0.3s; | |
694 | + -webkit-animation-fill-mode: forwards; | |
695 | + animation-fill-mode: forwards; | |
696 | + -webkit-animation-delay: 0.2s; | |
697 | + animation-delay: 0.2s; | |
698 | +} | |
699 | + | |
700 | +* > .enter-x:nth-child(3) { | |
701 | + transform: translateX(50px); | |
702 | +} | |
703 | + | |
704 | +* > .-enter-x:nth-child(3) { | |
705 | + transform: translateX(-50px); | |
706 | +} | |
707 | + | |
708 | +* > .enter-x:nth-child(3), | |
709 | +* > .-enter-x:nth-child(3) { | |
710 | + z-index: 7; | |
711 | + opacity: 0; | |
712 | + -webkit-animation: enter-x-animation 0.4s ease-in-out 0.3s; | |
713 | + animation: enter-x-animation 0.4s ease-in-out 0.3s; | |
714 | + -webkit-animation-fill-mode: forwards; | |
715 | + animation-fill-mode: forwards; | |
716 | + -webkit-animation-delay: 0.3s; | |
717 | + animation-delay: 0.3s; | |
718 | +} | |
719 | + | |
720 | +* > .enter-y:nth-child(3) { | |
721 | + transform: translateY(50px); | |
722 | +} | |
723 | + | |
724 | +* > .enter-y:nth-child(3), | |
725 | +* > .-enter-y:nth-child(3) { | |
726 | + z-index: 7; | |
727 | + opacity: 0; | |
728 | + -webkit-animation: enter-y-animation 0.4s ease-in-out 0.3s; | |
729 | + animation: enter-y-animation 0.4s ease-in-out 0.3s; | |
730 | + -webkit-animation-fill-mode: forwards; | |
731 | + animation-fill-mode: forwards; | |
732 | + -webkit-animation-delay: 0.3s; | |
733 | + animation-delay: 0.3s; | |
734 | +} | |
735 | + | |
736 | +* > .enter-x:nth-child(4) { | |
737 | + transform: translateX(50px); | |
738 | +} | |
739 | + | |
740 | +* > .-enter-x:nth-child(4) { | |
741 | + transform: translateX(-50px); | |
742 | +} | |
743 | + | |
744 | +* > .enter-x:nth-child(4), | |
745 | +* > .-enter-x:nth-child(4) { | |
746 | + z-index: 6; | |
747 | + opacity: 0; | |
748 | + -webkit-animation: enter-x-animation 0.4s ease-in-out 0.3s; | |
749 | + animation: enter-x-animation 0.4s ease-in-out 0.3s; | |
750 | + -webkit-animation-fill-mode: forwards; | |
751 | + animation-fill-mode: forwards; | |
752 | + -webkit-animation-delay: 0.4s; | |
753 | + animation-delay: 0.4s; | |
754 | +} | |
755 | + | |
756 | +* > .enter-y:nth-child(4) { | |
757 | + transform: translateY(50px); | |
758 | +} | |
759 | + | |
760 | +* > .enter-y:nth-child(4), | |
761 | +* > .-enter-y:nth-child(4) { | |
762 | + z-index: 6; | |
763 | + opacity: 0; | |
764 | + -webkit-animation: enter-y-animation 0.4s ease-in-out 0.3s; | |
765 | + animation: enter-y-animation 0.4s ease-in-out 0.3s; | |
766 | + -webkit-animation-fill-mode: forwards; | |
767 | + animation-fill-mode: forwards; | |
768 | + -webkit-animation-delay: 0.4s; | |
769 | + animation-delay: 0.4s; | |
770 | +} | |
771 | + | |
772 | +* > .enter-x:nth-child(5) { | |
773 | + transform: translateX(50px); | |
774 | +} | |
775 | + | |
776 | +* > .-enter-x:nth-child(5) { | |
777 | + transform: translateX(-50px); | |
778 | +} | |
779 | + | |
780 | +* > .enter-x:nth-child(5), | |
781 | +* > .-enter-x:nth-child(5) { | |
782 | + z-index: 5; | |
783 | + opacity: 0; | |
784 | + -webkit-animation: enter-x-animation 0.4s ease-in-out 0.3s; | |
785 | + animation: enter-x-animation 0.4s ease-in-out 0.3s; | |
786 | + -webkit-animation-fill-mode: forwards; | |
787 | + animation-fill-mode: forwards; | |
788 | + -webkit-animation-delay: 0.5s; | |
789 | + animation-delay: 0.5s; | |
790 | +} | |
791 | + | |
792 | +* > .enter-y:nth-child(5) { | |
793 | + transform: translateY(50px); | |
794 | +} | |
795 | + | |
796 | +* > .enter-y:nth-child(5), | |
797 | +* > .-enter-y:nth-child(5) { | |
798 | + z-index: 5; | |
799 | + opacity: 0; | |
800 | + -webkit-animation: enter-y-animation 0.4s ease-in-out 0.3s; | |
801 | + animation: enter-y-animation 0.4s ease-in-out 0.3s; | |
802 | + -webkit-animation-fill-mode: forwards; | |
803 | + animation-fill-mode: forwards; | |
804 | + -webkit-animation-delay: 0.5s; | |
805 | + animation-delay: 0.5s; | |
806 | +} | |
807 | + | |
808 | +@-webkit-keyframes enter-x-animation { | |
809 | + to { | |
810 | + opacity: 1; | |
811 | + transform: translateX(0); | |
812 | + } | |
813 | +} | |
814 | + | |
815 | +@keyframes enter-x-animation { | |
816 | + to { | |
817 | + opacity: 1; | |
818 | + transform: translateX(0); | |
819 | + } | |
820 | +} | |
821 | + | |
822 | +@-webkit-keyframes enter-y-animation { | |
823 | + to { | |
824 | + opacity: 1; | |
825 | + transform: translateY(0); | |
826 | + } | |
827 | +} | |
828 | + | |
829 | +@keyframes enter-y-animation { | |
830 | + to { | |
831 | + opacity: 1; | |
832 | + transform: translateY(0); | |
833 | + } | |
834 | +} | |
835 | + | |
836 | +.container { | |
837 | + width: 100%; | |
838 | +} | |
839 | + | |
840 | +@media (min-width: 576px) { | |
841 | + .container { | |
842 | + max-width: 576px; | |
843 | + } | |
844 | +} | |
845 | + | |
846 | +@media (min-width: 768px) { | |
847 | + .container { | |
848 | + max-width: 768px; | |
849 | + } | |
850 | +} | |
851 | + | |
852 | +@media (min-width: 992px) { | |
853 | + .container { | |
854 | + max-width: 992px; | |
855 | + } | |
856 | +} | |
857 | + | |
858 | +@media (min-width: 1200px) { | |
859 | + .container { | |
860 | + max-width: 1200px; | |
861 | + } | |
862 | +} | |
863 | + | |
864 | +@media (min-width: 1600px) { | |
865 | + .container { | |
866 | + max-width: 1600px; | |
867 | + } | |
868 | +} | |
869 | + | |
870 | +.visible { | |
871 | + visibility: visible; | |
872 | +} | |
873 | + | |
874 | +.invisible { | |
875 | + visibility: hidden; | |
876 | +} | |
877 | + | |
878 | +.static { | |
879 | + position: static; | |
880 | +} | |
881 | + | |
882 | +.fixed { | |
883 | + position: fixed; | |
884 | +} | |
885 | + | |
886 | +.absolute { | |
887 | + position: absolute; | |
888 | +} | |
889 | + | |
890 | +.relative { | |
891 | + position: relative; | |
892 | +} | |
893 | + | |
894 | +.inset-0 { | |
895 | + top: 0px; | |
896 | + right: 0px; | |
897 | + bottom: 0px; | |
898 | + left: 0px; | |
899 | +} | |
900 | + | |
901 | +.top-0 { | |
902 | + top: 0px; | |
903 | +} | |
904 | + | |
905 | +.left-1\/2 { | |
906 | + left: 50%; | |
907 | +} | |
908 | + | |
909 | +.left-5 { | |
910 | + left: 1.25rem; | |
911 | +} | |
912 | + | |
913 | +.top-5 { | |
914 | + top: 1.25rem; | |
915 | +} | |
916 | + | |
917 | +.bottom-5 { | |
918 | + bottom: 1.25rem; | |
919 | +} | |
920 | + | |
921 | +.top-4 { | |
922 | + top: 1rem; | |
923 | +} | |
924 | + | |
925 | +.right-4 { | |
926 | + right: 1rem; | |
927 | +} | |
928 | + | |
929 | +.top-3 { | |
930 | + top: 0.75rem; | |
931 | +} | |
932 | + | |
933 | +.right-7 { | |
934 | + right: 1.75rem; | |
935 | +} | |
936 | + | |
937 | +.m-3 { | |
938 | + margin: 0.75rem; | |
939 | +} | |
940 | + | |
941 | +.m-10 { | |
942 | + margin: 2.5rem; | |
943 | +} | |
944 | + | |
945 | +.m-4 { | |
946 | + margin: 1rem; | |
947 | +} | |
948 | + | |
949 | +.m-5 { | |
950 | + margin: 1.25rem; | |
951 | +} | |
952 | + | |
953 | +.mx-auto { | |
954 | + margin-left: auto; | |
955 | + margin-right: auto; | |
956 | +} | |
957 | + | |
958 | +.\!my-4 { | |
959 | + margin-top: 1rem !important; | |
960 | + margin-bottom: 1rem !important; | |
961 | +} | |
962 | + | |
963 | +.mx-4 { | |
964 | + margin-left: 1rem; | |
965 | + margin-right: 1rem; | |
966 | +} | |
967 | + | |
968 | +.my-4 { | |
969 | + margin-top: 1rem; | |
970 | + margin-bottom: 1rem; | |
971 | +} | |
972 | + | |
973 | +.my-auto { | |
974 | + margin-top: auto; | |
975 | + margin-bottom: auto; | |
976 | +} | |
977 | + | |
978 | +.\!my-2 { | |
979 | + margin-top: 0.5rem !important; | |
980 | + margin-bottom: 0.5rem !important; | |
981 | +} | |
982 | + | |
983 | +.mx-1 { | |
984 | + margin-left: 0.25rem; | |
985 | + margin-right: 0.25rem; | |
986 | +} | |
987 | + | |
988 | +.my-3 { | |
989 | + margin-top: 0.75rem; | |
990 | + margin-bottom: 0.75rem; | |
991 | +} | |
992 | + | |
993 | +.\!mx-auto { | |
994 | + margin-left: auto !important; | |
995 | + margin-right: auto !important; | |
996 | +} | |
997 | + | |
998 | +.mx-12 { | |
999 | + margin-left: 3rem; | |
1000 | + margin-right: 3rem; | |
1001 | +} | |
1002 | + | |
1003 | +.my-2 { | |
1004 | + margin-top: 0.5rem; | |
1005 | + margin-bottom: 0.5rem; | |
1006 | +} | |
1007 | + | |
1008 | +.my-5 { | |
1009 | + margin-top: 1.25rem; | |
1010 | + margin-bottom: 1.25rem; | |
1011 | +} | |
1012 | + | |
1013 | +.mx-2 { | |
1014 | + margin-left: 0.5rem; | |
1015 | + margin-right: 0.5rem; | |
1016 | +} | |
1017 | + | |
1018 | +.ml-1 { | |
1019 | + margin-left: 0.25rem; | |
1020 | +} | |
1021 | + | |
1022 | +.ml-2 { | |
1023 | + margin-left: 0.5rem; | |
1024 | +} | |
1025 | + | |
1026 | +.mr-2 { | |
1027 | + margin-right: 0.5rem; | |
1028 | +} | |
1029 | + | |
1030 | +.mr-1 { | |
1031 | + margin-right: 0.25rem; | |
1032 | +} | |
1033 | + | |
1034 | +.mt-1 { | |
1035 | + margin-top: 0.25rem; | |
1036 | +} | |
1037 | + | |
1038 | +.mt-2 { | |
1039 | + margin-top: 0.5rem; | |
1040 | +} | |
1041 | + | |
1042 | +.\!mt-4 { | |
1043 | + margin-top: 1rem !important; | |
1044 | +} | |
1045 | + | |
1046 | +.mb-1 { | |
1047 | + margin-bottom: 0.25rem; | |
1048 | +} | |
1049 | + | |
1050 | +.\!mr-4 { | |
1051 | + margin-right: 1rem !important; | |
1052 | +} | |
1053 | + | |
1054 | +.mt-4 { | |
1055 | + margin-top: 1rem; | |
1056 | +} | |
1057 | + | |
1058 | +.mb-4 { | |
1059 | + margin-bottom: 1rem; | |
1060 | +} | |
1061 | + | |
1062 | +.mt-5 { | |
1063 | + margin-top: 1.25rem; | |
1064 | +} | |
1065 | + | |
1066 | +.mt-10 { | |
1067 | + margin-top: 2.5rem; | |
1068 | +} | |
1069 | + | |
1070 | +.ml-4 { | |
1071 | + margin-left: 1rem; | |
1072 | +} | |
1073 | + | |
1074 | +.mr-5 { | |
1075 | + margin-right: 1.25rem; | |
1076 | +} | |
1077 | + | |
1078 | +.mr-4 { | |
1079 | + margin-right: 1rem; | |
1080 | +} | |
1081 | + | |
1082 | +.-mt-16 { | |
1083 | + margin-top: -4rem; | |
1084 | +} | |
1085 | + | |
1086 | +.mb-6 { | |
1087 | + margin-bottom: 1.5rem; | |
1088 | +} | |
1089 | + | |
1090 | +.mr-10 { | |
1091 | + margin-right: 2.5rem; | |
1092 | +} | |
1093 | + | |
1094 | +.mb-2 { | |
1095 | + margin-bottom: 0.5rem; | |
1096 | +} | |
1097 | + | |
1098 | +.mr-0 { | |
1099 | + margin-right: 0px; | |
1100 | +} | |
1101 | + | |
1102 | +.\!ml-4 { | |
1103 | + margin-left: 1rem !important; | |
1104 | +} | |
1105 | + | |
1106 | +.ml-5 { | |
1107 | + margin-left: 1.25rem; | |
1108 | +} | |
1109 | + | |
1110 | +.block { | |
1111 | + display: block; | |
1112 | +} | |
1113 | + | |
1114 | +.\!block { | |
1115 | + display: block !important; | |
1116 | +} | |
1117 | + | |
1118 | +.inline-block { | |
1119 | + display: inline-block; | |
1120 | +} | |
1121 | + | |
1122 | +.inline { | |
1123 | + display: inline; | |
1124 | +} | |
1125 | + | |
1126 | +.flex { | |
1127 | + display: flex; | |
1128 | +} | |
1129 | + | |
1130 | +.inline-flex { | |
1131 | + display: inline-flex; | |
1132 | +} | |
1133 | + | |
1134 | +.table { | |
1135 | + display: table; | |
1136 | +} | |
1137 | + | |
1138 | +.\!table { | |
1139 | + display: table !important; | |
1140 | +} | |
1141 | + | |
1142 | +.grid { | |
1143 | + display: grid; | |
1144 | +} | |
1145 | + | |
1146 | +.contents { | |
1147 | + display: contents; | |
1148 | +} | |
1149 | + | |
1150 | +.list-item { | |
1151 | + display: list-item; | |
1152 | +} | |
1153 | + | |
1154 | +.hidden { | |
1155 | + display: none; | |
1156 | +} | |
1157 | + | |
1158 | +.h-full { | |
1159 | + height: 100%; | |
1160 | +} | |
1161 | + | |
1162 | +.h-20 { | |
1163 | + height: 5rem; | |
1164 | +} | |
1165 | + | |
1166 | +.h-screen { | |
1167 | + height: 100vh; | |
1168 | +} | |
1169 | + | |
1170 | +.h-16 { | |
1171 | + height: 4rem; | |
1172 | +} | |
1173 | + | |
1174 | +.h-2\/5 { | |
1175 | + height: 40%; | |
1176 | +} | |
1177 | + | |
1178 | +.\!h-full { | |
1179 | + height: 100% !important; | |
1180 | +} | |
1181 | + | |
1182 | +.h-10 { | |
1183 | + height: 2.5rem; | |
1184 | +} | |
1185 | + | |
1186 | +.h-32 { | |
1187 | + height: 8rem; | |
1188 | +} | |
1189 | + | |
1190 | +.h-64 { | |
1191 | + height: 16rem; | |
1192 | +} | |
1193 | + | |
1194 | +.max-h-80 { | |
1195 | + max-height: 20rem; | |
1196 | +} | |
1197 | + | |
1198 | +.min-h-full { | |
1199 | + min-height: 100%; | |
1200 | +} | |
1201 | + | |
1202 | +.w-full { | |
1203 | + width: 100%; | |
1204 | +} | |
1205 | + | |
1206 | +.w-2\/3 { | |
1207 | + width: 66.666667%; | |
1208 | +} | |
1209 | + | |
1210 | +.w-1\/3 { | |
1211 | + width: 33.333333%; | |
1212 | +} | |
1213 | + | |
1214 | +.w-screen { | |
1215 | + width: 100vw; | |
1216 | +} | |
1217 | + | |
1218 | +.w-2\/5 { | |
1219 | + width: 40%; | |
1220 | +} | |
1221 | + | |
1222 | +.w-1\/2 { | |
1223 | + width: 50%; | |
1224 | +} | |
1225 | + | |
1226 | +.\!w-full { | |
1227 | + width: 100% !important; | |
1228 | +} | |
1229 | + | |
1230 | +.w-12 { | |
1231 | + width: 3rem; | |
1232 | +} | |
1233 | + | |
1234 | +.w-1\/4 { | |
1235 | + width: 25%; | |
1236 | +} | |
1237 | + | |
1238 | +.w-3\/4 { | |
1239 | + width: 75%; | |
1240 | +} | |
1241 | + | |
1242 | +.flex-1 { | |
1243 | + flex: 1 1 0%; | |
1244 | +} | |
1245 | + | |
1246 | +.flex-shrink { | |
1247 | + flex-shrink: 1; | |
1248 | +} | |
1249 | + | |
1250 | +.flex-grow-0 { | |
1251 | + flex-grow: 0; | |
1252 | +} | |
1253 | + | |
1254 | +.border-collapse { | |
1255 | + border-collapse: collapse; | |
1256 | +} | |
1257 | + | |
1258 | +.translate-x-1\/2 { | |
1259 | + --tw-translate-x: 50%; | |
1260 | + transform: var(--tw-transform); | |
1261 | +} | |
1262 | + | |
1263 | +.cursor-pointer { | |
1264 | + cursor: pointer; | |
1265 | +} | |
1266 | + | |
1267 | +.cursor-not-allowed { | |
1268 | + cursor: not-allowed; | |
1269 | +} | |
1270 | + | |
1271 | +.resize { | |
1272 | + resize: both; | |
1273 | +} | |
1274 | + | |
1275 | +.flex-col { | |
1276 | + flex-direction: column; | |
1277 | +} | |
1278 | + | |
1279 | +.flex-wrap { | |
1280 | + flex-wrap: wrap; | |
1281 | +} | |
1282 | + | |
1283 | +.items-center { | |
1284 | + align-items: center; | |
1285 | +} | |
1286 | + | |
1287 | +.justify-end { | |
1288 | + justify-content: flex-end; | |
1289 | +} | |
1290 | + | |
1291 | +.justify-center { | |
1292 | + justify-content: center; | |
1293 | +} | |
1294 | + | |
1295 | +.justify-between { | |
1296 | + justify-content: space-between; | |
1297 | +} | |
1298 | + | |
1299 | +.justify-around { | |
1300 | + justify-content: space-around; | |
1301 | +} | |
1302 | + | |
1303 | +.justify-evenly { | |
1304 | + justify-content: space-evenly; | |
1305 | +} | |
1306 | + | |
1307 | +.overflow-auto { | |
1308 | + overflow: auto; | |
1309 | +} | |
1310 | + | |
1311 | +.overflow-hidden { | |
1312 | + overflow: hidden; | |
1313 | +} | |
1314 | + | |
1315 | +.truncate { | |
1316 | + overflow: hidden; | |
1317 | + text-overflow: ellipsis; | |
1318 | + white-space: nowrap; | |
1319 | +} | |
1320 | + | |
1321 | +.rounded-md { | |
1322 | + border-radius: 0.375rem; | |
1323 | +} | |
1324 | + | |
1325 | +.border { | |
1326 | + border-width: 1px; | |
1327 | +} | |
1328 | + | |
1329 | +.\!border { | |
1330 | + border-width: 1px !important; | |
1331 | +} | |
1332 | + | |
1333 | +.border-t-0 { | |
1334 | + border-top-width: 0px; | |
1335 | +} | |
1336 | + | |
1337 | +.border-solid { | |
1338 | + border-style: solid; | |
1339 | +} | |
1340 | + | |
1341 | +.border-primary { | |
1342 | + --tw-border-opacity: 1; | |
1343 | + border-color: rgba(9, 96, 189, var(--tw-border-opacity)); | |
1344 | +} | |
1345 | + | |
1346 | +.bg-black { | |
1347 | + --tw-bg-opacity: 1; | |
1348 | + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); | |
1349 | +} | |
1350 | + | |
1351 | +.bg-gray-700 { | |
1352 | + --tw-bg-opacity: 1; | |
1353 | + background-color: rgba(63, 63, 70, var(--tw-bg-opacity)); | |
1354 | +} | |
1355 | + | |
1356 | +.bg-white { | |
1357 | + --tw-bg-opacity: 1; | |
1358 | + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); | |
1359 | +} | |
1360 | + | |
1361 | +.p-2 { | |
1362 | + padding: 0.5rem; | |
1363 | +} | |
1364 | + | |
1365 | +.p-5 { | |
1366 | + padding: 1.25rem; | |
1367 | +} | |
1368 | + | |
1369 | +.p-4 { | |
1370 | + padding: 1rem; | |
1371 | +} | |
1372 | + | |
1373 | +.p-1 { | |
1374 | + padding: 0.25rem; | |
1375 | +} | |
1376 | + | |
1377 | +.p-3 { | |
1378 | + padding: 0.75rem; | |
1379 | +} | |
1380 | + | |
1381 | +.p-10 { | |
1382 | + padding: 2.5rem; | |
1383 | +} | |
1384 | + | |
1385 | +.px-4 { | |
1386 | + padding-left: 1rem; | |
1387 | + padding-right: 1rem; | |
1388 | +} | |
1389 | + | |
1390 | +.px-2 { | |
1391 | + padding-left: 0.5rem; | |
1392 | + padding-right: 0.5rem; | |
1393 | +} | |
1394 | + | |
1395 | +.py-1 { | |
1396 | + padding-top: 0.25rem; | |
1397 | + padding-bottom: 0.25rem; | |
1398 | +} | |
1399 | + | |
1400 | +.py-2 { | |
1401 | + padding-top: 0.5rem; | |
1402 | + padding-bottom: 0.5rem; | |
1403 | +} | |
1404 | + | |
1405 | +.py-1\.5 { | |
1406 | + padding-top: 0.375rem; | |
1407 | + padding-bottom: 0.375rem; | |
1408 | +} | |
1409 | + | |
1410 | +.py-5 { | |
1411 | + padding-top: 1.25rem; | |
1412 | + padding-bottom: 1.25rem; | |
1413 | +} | |
1414 | + | |
1415 | +.px-5 { | |
1416 | + padding-left: 1.25rem; | |
1417 | + padding-right: 1.25rem; | |
1418 | +} | |
1419 | + | |
1420 | +.py-8 { | |
1421 | + padding-top: 2rem; | |
1422 | + padding-bottom: 2rem; | |
1423 | +} | |
1424 | + | |
1425 | +.py-4 { | |
1426 | + padding-top: 1rem; | |
1427 | + padding-bottom: 1rem; | |
1428 | +} | |
1429 | + | |
1430 | +.pl-2 { | |
1431 | + padding-left: 0.5rem; | |
1432 | +} | |
1433 | + | |
1434 | +.pt-5 { | |
1435 | + padding-top: 1.25rem; | |
1436 | +} | |
1437 | + | |
1438 | +.pl-4 { | |
1439 | + padding-left: 1rem; | |
1440 | +} | |
1441 | + | |
1442 | +.pt-4 { | |
1443 | + padding-top: 1rem; | |
1444 | +} | |
1445 | + | |
1446 | +.text-center { | |
1447 | + text-align: center; | |
1448 | +} | |
1449 | + | |
1450 | +.text-right { | |
1451 | + text-align: right; | |
1452 | +} | |
1453 | + | |
1454 | +.text-4xl { | |
1455 | + font-size: 2.25rem; | |
1456 | + line-height: 2.5rem; | |
1457 | +} | |
1458 | + | |
1459 | +.text-5xl { | |
1460 | + font-size: 3rem; | |
1461 | + line-height: 1; | |
1462 | +} | |
1463 | + | |
1464 | +.text-3xl { | |
1465 | + font-size: 1.875rem; | |
1466 | + line-height: 2.25rem; | |
1467 | +} | |
1468 | + | |
1469 | +.text-2xl { | |
1470 | + font-size: 1.5rem; | |
1471 | + line-height: 2rem; | |
1472 | +} | |
1473 | + | |
1474 | +.text-lg { | |
1475 | + font-size: 1.125rem; | |
1476 | + line-height: 1.75rem; | |
1477 | +} | |
1478 | + | |
1479 | +.font-medium { | |
1480 | + font-weight: 500; | |
1481 | +} | |
1482 | + | |
1483 | +.font-normal { | |
1484 | + font-weight: 400; | |
1485 | +} | |
1486 | + | |
1487 | +.font-bold { | |
1488 | + font-weight: 700; | |
1489 | +} | |
1490 | + | |
1491 | +.uppercase { | |
1492 | + text-transform: uppercase; | |
1493 | +} | |
1494 | + | |
1495 | +.italic { | |
1496 | + font-style: italic; | |
1497 | +} | |
1498 | + | |
1499 | +.text-white { | |
1500 | + --tw-text-opacity: 1; | |
1501 | + color: rgba(255, 255, 255, var(--tw-text-opacity)); | |
1502 | +} | |
1503 | + | |
1504 | +.text-gray-300 { | |
1505 | + --tw-text-opacity: 1; | |
1506 | + color: rgba(212, 212, 216, var(--tw-text-opacity)); | |
1507 | +} | |
1508 | + | |
1509 | +.text-primary { | |
1510 | + --tw-text-opacity: 1; | |
1511 | + color: rgba(9, 96, 189, var(--tw-text-opacity)); | |
1512 | +} | |
1513 | + | |
1514 | +.underline { | |
1515 | + text-decoration: underline; | |
1516 | +} | |
1517 | + | |
1518 | +.shadow { | |
1519 | + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); | |
1520 | + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), | |
1521 | + var(--tw-shadow); | |
1522 | +} | |
1523 | + | |
1524 | +.shadow-md { | |
1525 | + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); | |
1526 | + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), | |
1527 | + var(--tw-shadow); | |
1528 | +} | |
1529 | + | |
1530 | +.blur { | |
1531 | + --tw-blur: blur(8px); | |
1532 | + filter: var(--tw-filter); | |
1533 | +} | |
1534 | + | |
1535 | +.transition { | |
1536 | + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, | |
1537 | + transform, filter, -webkit-backdrop-filter; | |
1538 | + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, | |
1539 | + transform, filter, backdrop-filter; | |
1540 | + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, | |
1541 | + transform, filter, backdrop-filter, -webkit-backdrop-filter; | |
1542 | + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); | |
1543 | + transition-duration: 150ms; | |
1544 | +} | |
1545 | + | |
1546 | +.hover\:border-primary:hover { | |
1547 | + --tw-border-opacity: 1; | |
1548 | + border-color: rgba(9, 96, 189, var(--tw-border-opacity)); | |
1549 | +} | |
1550 | + | |
1551 | +@media (min-width: 576px) { | |
1552 | + .sm\:w-3\/4 { | |
1553 | + width: 75%; | |
1554 | + } | |
1555 | + | |
1556 | + .sm\:px-10 { | |
1557 | + padding-left: 2.5rem; | |
1558 | + padding-right: 2.5rem; | |
1559 | + } | |
1560 | + | |
1561 | + .sm\:px-8 { | |
1562 | + padding-left: 2rem; | |
1563 | + padding-right: 2rem; | |
1564 | + } | |
1565 | +} | |
1566 | + | |
1567 | +@media (min-width: 768px) { | |
1568 | + .md\:\!mx-4 { | |
1569 | + margin-left: 1rem !important; | |
1570 | + margin-right: 1rem !important; | |
1571 | + } | |
1572 | + | |
1573 | + .md\:\!my-0 { | |
1574 | + margin-top: 0px !important; | |
1575 | + margin-bottom: 0px !important; | |
1576 | + } | |
1577 | + | |
1578 | + .md\:mx-2 { | |
1579 | + margin-left: 0.5rem; | |
1580 | + margin-right: 0.5rem; | |
1581 | + } | |
1582 | + | |
1583 | + .md\:mx-16 { | |
1584 | + margin-left: 4rem; | |
1585 | + margin-right: 4rem; | |
1586 | + } | |
1587 | + | |
1588 | + .md\:mr-20 { | |
1589 | + margin-right: 5rem; | |
1590 | + } | |
1591 | + | |
1592 | + .md\:\!mt-0 { | |
1593 | + margin-top: 0px !important; | |
1594 | + } | |
1595 | + | |
1596 | + .md\:\!mr-4 { | |
1597 | + margin-right: 1rem !important; | |
1598 | + } | |
1599 | + | |
1600 | + .md\:ml-6 { | |
1601 | + margin-left: 1.5rem; | |
1602 | + } | |
1603 | + | |
1604 | + .md\:mt-0 { | |
1605 | + margin-top: 0px; | |
1606 | + } | |
1607 | + | |
1608 | + .md\:mr-10 { | |
1609 | + margin-right: 2.5rem; | |
1610 | + } | |
1611 | + | |
1612 | + .md\:block { | |
1613 | + display: block; | |
1614 | + } | |
1615 | + | |
1616 | + .md\:flex { | |
1617 | + display: flex; | |
1618 | + } | |
1619 | + | |
1620 | + .md\:h-4\/5 { | |
1621 | + height: 80%; | |
1622 | + } | |
1623 | + | |
1624 | + .md\:w-1\/3 { | |
1625 | + width: 33.333333%; | |
1626 | + } | |
1627 | + | |
1628 | + .md\:w-1\/4 { | |
1629 | + width: 25%; | |
1630 | + } | |
1631 | + | |
1632 | + .md\:\!w-1\/3 { | |
1633 | + width: 33.333333% !important; | |
1634 | + } | |
1635 | + | |
1636 | + .md\:text-lg { | |
1637 | + font-size: 1.125rem; | |
1638 | + line-height: 1.75rem; | |
1639 | + } | |
1640 | + | |
1641 | + .md\:opacity-100 { | |
1642 | + opacity: 1; | |
1643 | + } | |
1644 | +} | |
1645 | + | |
1646 | +@media (min-width: 992px) { | |
1647 | + .lg\:flex { | |
1648 | + display: flex; | |
1649 | + } | |
1650 | + | |
1651 | + .lg\:w-2\/4 { | |
1652 | + width: 50%; | |
1653 | + } | |
1654 | +} | |
1655 | + | |
1656 | +@media (min-width: 1200px) { | |
1657 | + .xl\:my-0 { | |
1658 | + margin-top: 0px; | |
1659 | + margin-bottom: 0px; | |
1660 | + } | |
1661 | + | |
1662 | + .xl\:ml-20 { | |
1663 | + margin-left: 5rem; | |
1664 | + } | |
1665 | + | |
1666 | + .xl\:flex { | |
1667 | + display: flex; | |
1668 | + } | |
1669 | + | |
1670 | + .xl\:hidden { | |
1671 | + display: none; | |
1672 | + } | |
1673 | + | |
1674 | + .xl\:h-auto { | |
1675 | + height: auto; | |
1676 | + } | |
1677 | + | |
1678 | + .xl\:w-6\/12 { | |
1679 | + width: 50%; | |
1680 | + } | |
1681 | + | |
1682 | + .xl\:w-auto { | |
1683 | + width: auto; | |
1684 | + } | |
1685 | + | |
1686 | + .xl\:w-1\/5 { | |
1687 | + width: 20%; | |
1688 | + } | |
1689 | + | |
1690 | + .xl\:w-4\/5 { | |
1691 | + width: 80%; | |
1692 | + } | |
1693 | + | |
1694 | + .xl\:flex-col { | |
1695 | + flex-direction: column; | |
1696 | + } | |
1697 | + | |
1698 | + .xl\:justify-start { | |
1699 | + justify-content: flex-start; | |
1700 | + } | |
1701 | + | |
1702 | + .xl\:p-4 { | |
1703 | + padding: 1rem; | |
1704 | + } | |
1705 | + | |
1706 | + .xl\:py-0 { | |
1707 | + padding-top: 0px; | |
1708 | + padding-bottom: 0px; | |
1709 | + } | |
1710 | + | |
1711 | + .xl\:text-left { | |
1712 | + text-align: left; | |
1713 | + } | |
1714 | + | |
1715 | + .xl\:text-xl { | |
1716 | + font-size: 1.25rem; | |
1717 | + line-height: 1.75rem; | |
1718 | + } | |
1719 | + | |
1720 | + .xl\:text-3xl { | |
1721 | + font-size: 1.875rem; | |
1722 | + line-height: 2.25rem; | |
1723 | + } | |
1724 | + | |
1725 | + .xl\:text-gray-600 { | |
1726 | + --tw-text-opacity: 1; | |
1727 | + color: rgba(82, 82, 91, var(--tw-text-opacity)); | |
1728 | + } | |
1729 | + | |
1730 | + .xl\:shadow-none { | |
1731 | + --tw-shadow: 0 0 #0000; | |
1732 | + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), | |
1733 | + var(--tw-shadow); | |
1734 | + } | |
1735 | +} | |
1736 | + | |
1737 | +@media (min-width: 1600px) { | |
1738 | + .\32xl\:text-3xl { | |
1739 | + font-size: 1.875rem; | |
1740 | + line-height: 2.25rem; | |
1741 | + } | |
1742 | +} | ... | ... |
src/main.ts
src/utils/mitt.ts
... | ... | @@ -27,6 +27,7 @@ export interface Emitter { |
27 | 27 | |
28 | 28 | emit<T = any>(type: EventType, event?: T): void; |
29 | 29 | emit(type: '*', event?: any): void; |
30 | + clear(): void; | |
30 | 31 | } |
31 | 32 | |
32 | 33 | /** |
... | ... | @@ -88,5 +89,12 @@ export default function mitt(all?: EventHandlerMap): Emitter { |
88 | 89 | handler(type, evt); |
89 | 90 | }); |
90 | 91 | }, |
92 | + | |
93 | + /** | |
94 | + * Clear all | |
95 | + */ | |
96 | + clear() { | |
97 | + this.all.clear(); | |
98 | + }, | |
91 | 99 | }; |
92 | 100 | } | ... | ... |
src/views/dashboard/analysis/components/GrowCard.vue
... | ... | @@ -5,8 +5,8 @@ |
5 | 5 | size="small" |
6 | 6 | :loading="$attrs.loading" |
7 | 7 | :title="item.title" |
8 | - class="md:w-1/4 w-full !md:mt-0 !mt-4" | |
9 | - :class="[index + 1 < 4 && '!md:mr-4']" | |
8 | + class="md:w-1/4 w-full md:!mt-0 !mt-4" | |
9 | + :class="[index + 1 < 4 && 'md:!mr-4']" | |
10 | 10 | :canExpan="false" |
11 | 11 | > |
12 | 12 | <template #extra> | ... | ... |
src/views/dashboard/analysis/index.vue
... | ... | @@ -6,7 +6,7 @@ |
6 | 6 | <div class="md:flex enter-y"> |
7 | 7 | <VisitRadar class="md:w-1/3 w-full" :loading="loading" /> |
8 | 8 | |
9 | - <VisitSource class="md:w-1/3 !md:mx-4 !md:my-0 !my-4 w-full" :loading="loading" /> | |
9 | + <VisitSource class="md:w-1/3 md:!mx-4 md:!my-0 !my-4 w-full" :loading="loading" /> | |
10 | 10 | <SalesProductPie class="md:w-1/3 w-full" :loading="loading" /> |
11 | 11 | </div> |
12 | 12 | </div> | ... | ... |
src/views/dashboard/workbench/components/ProjectCard.vue
... | ... | @@ -5,7 +5,7 @@ |
5 | 5 | </template> |
6 | 6 | |
7 | 7 | <template v-for="item in items" :key="item"> |
8 | - <CardGrid class="!md:w-1/3 !w-full"> | |
8 | + <CardGrid class="md:!w-1/3 !w-full"> | |
9 | 9 | <span class="flex"> |
10 | 10 | <Icon :icon="item.icon" :color="item.color" size="30" /> |
11 | 11 | <span class="text-lg ml-4">{{ item.title }}</span> | ... | ... |
src/views/dashboard/workbench/index.vue
... | ... | @@ -10,7 +10,11 @@ |
10 | 10 | <QuickNav :loading="loading" class="enter-y" /> |
11 | 11 | |
12 | 12 | <Card class="!my-4 enter-y" :loading="loading"> |
13 | - <img class="xl:h-50 h-30 mx-auto" src="../../../assets/svg/illustration.svg" /> | |
13 | + <img | |
14 | + style="height: 216px" | |
15 | + class="h-20 mx-auto" | |
16 | + src="../../../assets/svg/illustration.svg" | |
17 | + /> | |
14 | 18 | </Card> |
15 | 19 | |
16 | 20 | <SaleRadar :loading="loading" class="enter-y" /> | ... | ... |
src/views/sys/login/LoginForm.vue
... | ... | @@ -53,7 +53,7 @@ |
53 | 53 | {{ t('sys.login.mobileSignInFormTitle') }} |
54 | 54 | </Button> |
55 | 55 | </ACol> |
56 | - <ACol :md="8" :xs="24" class="!my-2 !md:my-0 xs:mx-0 md:mx-2"> | |
56 | + <ACol :md="8" :xs="24" class="!my-2 md:!my-0 xs:mx-0 md:mx-2"> | |
57 | 57 | <Button block @click="setLoginState(LoginStateEnum.QR_CODE)"> |
58 | 58 | {{ t('sys.login.qrSignInFormTitle') }} |
59 | 59 | </Button> | ... | ... |
stylelint.config.js
... | ... | @@ -18,7 +18,18 @@ module.exports = { |
18 | 18 | 'at-rule-no-unknown': [ |
19 | 19 | true, |
20 | 20 | { |
21 | - ignoreAtRules: ['function', 'if', 'each', 'include', 'mixin'], | |
21 | + ignoreAtRules: [ | |
22 | + 'tailwind', | |
23 | + 'apply', | |
24 | + 'variants', | |
25 | + 'responsive', | |
26 | + 'screen', | |
27 | + 'function', | |
28 | + 'if', | |
29 | + 'each', | |
30 | + 'include', | |
31 | + 'mixin', | |
32 | + ], | |
22 | 33 | }, |
23 | 34 | ], |
24 | 35 | 'no-empty-source': null, | ... | ... |
windi.config.ts renamed to tailwind.config.js
1 | -import lineClamp from 'windicss/plugin/line-clamp'; | |
2 | -import colors from 'windicss/colors'; | |
1 | +const colors = require('tailwindcss/colors'); | |
3 | 2 | |
4 | -import { defineConfig } from 'vite-plugin-windicss'; | |
5 | -import { primaryColor } from './build/config/themeConfig'; | |
6 | - | |
7 | -export default defineConfig({ | |
8 | - darkMode: 'class', | |
9 | - plugins: [lineClamp, createEnterPlugin()], | |
3 | +module.exports = { | |
4 | + mode: 'jit', | |
5 | + // darkMode: 'class', | |
6 | + plugins: [createEnterPlugin()], | |
7 | + purge: { | |
8 | + enabled: false, | |
9 | + content: ['./index.html', './src/**/*.{vue,ts,tsx}'], | |
10 | + }, | |
10 | 11 | theme: { |
11 | 12 | extend: { |
12 | - colors: { | |
13 | - ...colors, | |
14 | - primary: primaryColor, | |
13 | + zIndex: { | |
14 | + '-1': '-1', | |
15 | 15 | }, |
16 | - screens: { | |
17 | - sm: '576px', | |
18 | - md: '768px', | |
19 | - lg: '992px', | |
20 | - xl: '1200px', | |
21 | - '2xl': '1600px', | |
16 | + }, | |
17 | + colors: { | |
18 | + ...colors, | |
19 | + primary: { | |
20 | + DEFAULT: '#0960bd', | |
21 | + // dark: primaryColorDark, | |
22 | 22 | }, |
23 | 23 | }, |
24 | + screens: { | |
25 | + sm: '576px', | |
26 | + md: '768px', | |
27 | + lg: '992px', | |
28 | + xl: '1200px', | |
29 | + '2xl': '1600px', | |
30 | + }, | |
24 | 31 | }, |
25 | -}); | |
26 | - | |
32 | +}; | |
27 | 33 | /** |
28 | 34 | * Used for animation when the element is displayed |
29 | 35 | * @param maxOutput The larger the maxOutput output, the larger the generated css volume |
30 | 36 | */ |
31 | -function createEnterPlugin(maxOutput = 10) { | |
32 | - const createCss = (index: number, d = 'x') => { | |
37 | +function createEnterPlugin(maxOutput = 6) { | |
38 | + const createCss = (index, d = 'x') => { | |
33 | 39 | const upd = d.toUpperCase(); |
34 | 40 | return { |
35 | 41 | [`*> .enter-${d}:nth-child(${index})`]: { | ... | ... |
yarn.lock
... | ... | @@ -3,9 +3,9 @@ |
3 | 3 | |
4 | 4 | |
5 | 5 | "@ant-design-vue/use@^0.0.1-0": |
6 | - version "0.0.1-alpha.9" | |
7 | - resolved "https://registry.npmjs.org/@ant-design-vue/use/-/use-0.0.1-alpha.9.tgz#b7df26150469391383ba1c2dd4ba250267a58411" | |
8 | - integrity sha512-X+ESJt+e95sRwlSkpzETjc0opE5l34tCjMEm92JkoM4BVl6YxG9IgyX1dBy0W2jF74SSCOiCc7GdIlsPFQvE/g== | |
6 | + version "0.0.1-alpha.10" | |
7 | + resolved "https://registry.npmjs.org/@ant-design-vue/use/-/use-0.0.1-alpha.10.tgz#14697ced4aa3e6d76a63008e87dbf6d3ef3e07da" | |
8 | + integrity sha512-og9a6Glx3X/8WHPasTTNRBPg+e5Jsp6J7gKH2dQ1/HDvMTYP/BCy08HrUfvTk9crkGc0kbxDmY+7M8KEtC80zw== | |
9 | 9 | dependencies: |
10 | 10 | async-validator "^3.4.0" |
11 | 11 | lodash-es "^4.17.15" |
... | ... | @@ -34,11 +34,6 @@ |
34 | 34 | "@types/lodash" "^4.14.165" |
35 | 35 | lodash "^4.17.15" |
36 | 36 | |
37 | -"@antfu/utils@^0.1.6": | |
38 | - version "0.1.6" | |
39 | - resolved "https://registry.yarnpkg.com/@antfu/utils/-/utils-0.1.6.tgz#a9e801f103fd14a59785dd0485fec06b6dc34d94" | |
40 | - integrity sha512-1lcCCEOv4gYlYa/OCjM2JA5nbNll04mNMhSXYu4QetbG14m3LdCvkyDAPlc2AmqRQEqkKpJldRL++9sPpOIydw== | |
41 | - | |
42 | 37 | "@babel/code-frame@7.12.11": |
43 | 38 | version "7.12.11" |
44 | 39 | resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" |
... | ... | @@ -46,52 +41,19 @@ |
46 | 41 | dependencies: |
47 | 42 | "@babel/highlight" "^7.10.4" |
48 | 43 | |
49 | -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13": | |
50 | - version "7.12.13" | |
51 | - resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz#dcfc826beef65e75c50e21d3837d7d95798dd658" | |
52 | - integrity sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g== | |
53 | - dependencies: | |
54 | - "@babel/highlight" "^7.12.13" | |
55 | - | |
56 | -"@babel/code-frame@^7.14.5": | |
44 | +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.14.5": | |
57 | 45 | version "7.14.5" |
58 | 46 | resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.14.5.tgz#23b08d740e83f49c5e59945fbf1b43e80bbf4edb" |
59 | 47 | integrity sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw== |
60 | 48 | dependencies: |
61 | 49 | "@babel/highlight" "^7.14.5" |
62 | 50 | |
63 | -"@babel/compat-data@^7.13.11", "@babel/compat-data@^7.13.12", "@babel/compat-data@^7.13.15", "@babel/compat-data@^7.13.8": | |
64 | - version "7.13.15" | |
65 | - resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.13.15.tgz#7e8eea42d0b64fda2b375b22d06c605222e848f4" | |
66 | - integrity sha512-ltnibHKR1VnrU4ymHyQ/CXtNXI6yZC0oJThyW78Hft8XndANwi+9H+UIklBDraIjFEJzw8wmcM427oDd9KS5wA== | |
67 | - | |
68 | -"@babel/compat-data@^7.14.5": | |
51 | +"@babel/compat-data@^7.13.11", "@babel/compat-data@^7.14.5": | |
69 | 52 | version "7.14.5" |
70 | 53 | resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.14.5.tgz#8ef4c18e58e801c5c95d3c1c0f2874a2680fadea" |
71 | 54 | integrity sha512-kixrYn4JwfAVPa0f2yfzc2AWti6WRRyO3XjWW5PJAvtE11qhSayrrcrEnee05KAtNaPC+EwehE8Qt1UedEVB8w== |
72 | 55 | |
73 | -"@babel/core@>=7.9.0", "@babel/core@^7.11.1", "@babel/core@^7.12.10": | |
74 | - version "7.13.15" | |
75 | - resolved "https://registry.npmjs.org/@babel/core/-/core-7.13.15.tgz#a6d40917df027487b54312202a06812c4f7792d0" | |
76 | - integrity sha512-6GXmNYeNjS2Uz+uls5jalOemgIhnTMeaXo+yBUA72kC2uX/8VW6XyhVIo2L8/q0goKQA3EVKx0KOQpVKSeWadQ== | |
77 | - dependencies: | |
78 | - "@babel/code-frame" "^7.12.13" | |
79 | - "@babel/generator" "^7.13.9" | |
80 | - "@babel/helper-compilation-targets" "^7.13.13" | |
81 | - "@babel/helper-module-transforms" "^7.13.14" | |
82 | - "@babel/helpers" "^7.13.10" | |
83 | - "@babel/parser" "^7.13.15" | |
84 | - "@babel/template" "^7.12.13" | |
85 | - "@babel/traverse" "^7.13.15" | |
86 | - "@babel/types" "^7.13.14" | |
87 | - convert-source-map "^1.7.0" | |
88 | - debug "^4.1.0" | |
89 | - gensync "^1.0.0-beta.2" | |
90 | - json5 "^2.1.2" | |
91 | - semver "^6.3.0" | |
92 | - source-map "^0.5.0" | |
93 | - | |
94 | -"@babel/core@^7.1.0", "@babel/core@^7.7.2", "@babel/core@^7.7.5": | |
56 | +"@babel/core@>=7.9.0", "@babel/core@^7.1.0", "@babel/core@^7.11.1", "@babel/core@^7.12.10", "@babel/core@^7.7.2", "@babel/core@^7.7.5": | |
95 | 57 | version "7.14.6" |
96 | 58 | resolved "https://registry.npmjs.org/@babel/core/-/core-7.14.6.tgz#e0814ec1a950032ff16c13a2721de39a8416fcab" |
97 | 59 | integrity sha512-gJnOEWSqTk96qG5BoIrl5bVtc23DCycmIePPYnamY9RboYdI4nFy5vAQMSl81O5K/W0sLDWfGysnOECC+KUUCA== |
... | ... | @@ -112,15 +74,6 @@ |
112 | 74 | semver "^6.3.0" |
113 | 75 | source-map "^0.5.0" |
114 | 76 | |
115 | -"@babel/generator@^7.13.9": | |
116 | - version "7.13.9" | |
117 | - resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.13.9.tgz#3a7aa96f9efb8e2be42d38d80e2ceb4c64d8de39" | |
118 | - integrity sha512-mHOOmY0Axl/JCTkxTU6Lf5sWOg/v8nUa+Xkt4zMTftX0wqmb6Sh7J8gvcehBw7q0AhrhAR+FDacKjCZ2X8K+Sw== | |
119 | - dependencies: | |
120 | - "@babel/types" "^7.13.0" | |
121 | - jsesc "^2.5.1" | |
122 | - source-map "^0.5.0" | |
123 | - | |
124 | 77 | "@babel/generator@^7.14.5", "@babel/generator@^7.7.2": |
125 | 78 | version "7.14.5" |
126 | 79 | resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.14.5.tgz#848d7b9f031caca9d0cd0af01b063f226f52d785" |
... | ... | @@ -130,32 +83,22 @@ |
130 | 83 | jsesc "^2.5.1" |
131 | 84 | source-map "^0.5.0" |
132 | 85 | |
133 | -"@babel/helper-annotate-as-pure@^7.12.13": | |
134 | - version "7.12.13" | |
135 | - resolved "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz#0f58e86dfc4bb3b1fcd7db806570e177d439b6ab" | |
136 | - integrity sha512-7YXfX5wQ5aYM/BOlbSccHDbuXXFPxeoUmfWtz8le2yTkTZc+BxsiEnENFoi2SlmA8ewDkG2LgIMIVzzn2h8kfw== | |
137 | - dependencies: | |
138 | - "@babel/types" "^7.12.13" | |
139 | - | |
140 | -"@babel/helper-builder-binary-assignment-operator-visitor@^7.12.13": | |
141 | - version "7.12.13" | |
142 | - resolved "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.12.13.tgz#6bc20361c88b0a74d05137a65cac8d3cbf6f61fc" | |
143 | - integrity sha512-CZOv9tGphhDRlVjVkAgm8Nhklm9RzSmWpX2my+t7Ua/KT616pEzXsQCjinzvkRvHWJ9itO4f296efroX23XCMA== | |
86 | +"@babel/helper-annotate-as-pure@^7.14.5": | |
87 | + version "7.14.5" | |
88 | + resolved "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.14.5.tgz#7bf478ec3b71726d56a8ca5775b046fc29879e61" | |
89 | + integrity sha512-EivH9EgBIb+G8ij1B2jAwSH36WnGvkQSEC6CkX/6v6ZFlw5fVOHvsgGF4uiEHO2GzMvunZb6tDLQEQSdrdocrA== | |
144 | 90 | dependencies: |
145 | - "@babel/helper-explode-assignable-expression" "^7.12.13" | |
146 | - "@babel/types" "^7.12.13" | |
91 | + "@babel/types" "^7.14.5" | |
147 | 92 | |
148 | -"@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.13.13", "@babel/helper-compilation-targets@^7.13.8": | |
149 | - version "7.13.13" | |
150 | - resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.13.tgz#2b2972a0926474853f41e4adbc69338f520600e5" | |
151 | - integrity sha512-q1kcdHNZehBwD9jYPh3WyXcsFERi39X4I59I3NadciWtNDyZ6x+GboOxncFK0kXlKIv6BJm5acncehXWUjWQMQ== | |
93 | +"@babel/helper-builder-binary-assignment-operator-visitor@^7.14.5": | |
94 | + version "7.14.5" | |
95 | + resolved "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.14.5.tgz#b939b43f8c37765443a19ae74ad8b15978e0a191" | |
96 | + integrity sha512-YTA/Twn0vBXDVGJuAX6PwW7x5zQei1luDDo2Pl6q1qZ7hVNl0RZrhHCQG/ArGpR29Vl7ETiB8eJyrvpuRp300w== | |
152 | 97 | dependencies: |
153 | - "@babel/compat-data" "^7.13.12" | |
154 | - "@babel/helper-validator-option" "^7.12.17" | |
155 | - browserslist "^4.14.5" | |
156 | - semver "^6.3.0" | |
98 | + "@babel/helper-explode-assignable-expression" "^7.14.5" | |
99 | + "@babel/types" "^7.14.5" | |
157 | 100 | |
158 | -"@babel/helper-compilation-targets@^7.14.5": | |
101 | +"@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.14.5": | |
159 | 102 | version "7.14.5" |
160 | 103 | resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.14.5.tgz#7a99c5d0967911e972fe2c3411f7d5b498498ecf" |
161 | 104 | integrity sha512-v+QtZqXEiOnpO6EYvlImB6zCD2Lel06RzOPzmkz/D/XgQiUu3C/Jb1LOqSt/AIA34TYi/Q+KlT8vTQrgdxkbLw== |
... | ... | @@ -165,29 +108,30 @@ |
165 | 108 | browserslist "^4.16.6" |
166 | 109 | semver "^6.3.0" |
167 | 110 | |
168 | -"@babel/helper-create-class-features-plugin@^7.13.0": | |
169 | - version "7.13.11" | |
170 | - resolved "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.13.11.tgz#30d30a005bca2c953f5653fc25091a492177f4f6" | |
171 | - integrity sha512-ays0I7XYq9xbjCSvT+EvysLgfc3tOkwCULHjrnscGT3A9qD4sk3wXnJ3of0MAWsWGjdinFvajHU2smYuqXKMrw== | |
111 | +"@babel/helper-create-class-features-plugin@^7.14.5", "@babel/helper-create-class-features-plugin@^7.14.6": | |
112 | + version "7.14.6" | |
113 | + resolved "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.6.tgz#f114469b6c06f8b5c59c6c4e74621f5085362542" | |
114 | + integrity sha512-Z6gsfGofTxH/+LQXqYEK45kxmcensbzmk/oi8DmaQytlQCgqNZt9XQF8iqlI/SeXWVjaMNxvYvzaYw+kh42mDg== | |
172 | 115 | dependencies: |
173 | - "@babel/helper-function-name" "^7.12.13" | |
174 | - "@babel/helper-member-expression-to-functions" "^7.13.0" | |
175 | - "@babel/helper-optimise-call-expression" "^7.12.13" | |
176 | - "@babel/helper-replace-supers" "^7.13.0" | |
177 | - "@babel/helper-split-export-declaration" "^7.12.13" | |
116 | + "@babel/helper-annotate-as-pure" "^7.14.5" | |
117 | + "@babel/helper-function-name" "^7.14.5" | |
118 | + "@babel/helper-member-expression-to-functions" "^7.14.5" | |
119 | + "@babel/helper-optimise-call-expression" "^7.14.5" | |
120 | + "@babel/helper-replace-supers" "^7.14.5" | |
121 | + "@babel/helper-split-export-declaration" "^7.14.5" | |
178 | 122 | |
179 | -"@babel/helper-create-regexp-features-plugin@^7.12.13": | |
180 | - version "7.12.17" | |
181 | - resolved "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.17.tgz#a2ac87e9e319269ac655b8d4415e94d38d663cb7" | |
182 | - integrity sha512-p2VGmBu9oefLZ2nQpgnEnG0ZlRPvL8gAGvPUMQwUdaE8k49rOMuZpOwdQoy5qJf6K8jL3bcAMhVUlHAjIgJHUg== | |
123 | +"@babel/helper-create-regexp-features-plugin@^7.14.5": | |
124 | + version "7.14.5" | |
125 | + resolved "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.14.5.tgz#c7d5ac5e9cf621c26057722fb7a8a4c5889358c4" | |
126 | + integrity sha512-TLawwqpOErY2HhWbGJ2nZT5wSkR192QpN+nBg1THfBfftrlvOh+WbhrxXCH4q4xJ9Gl16BGPR/48JA+Ryiho/A== | |
183 | 127 | dependencies: |
184 | - "@babel/helper-annotate-as-pure" "^7.12.13" | |
128 | + "@babel/helper-annotate-as-pure" "^7.14.5" | |
185 | 129 | regexpu-core "^4.7.1" |
186 | 130 | |
187 | -"@babel/helper-define-polyfill-provider@^0.2.0": | |
188 | - version "0.2.0" | |
189 | - resolved "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.0.tgz#a640051772045fedaaecc6f0c6c69f02bdd34bf1" | |
190 | - integrity sha512-JT8tHuFjKBo8NnaUbblz7mIu1nnvUDiHVjXXkulZULyidvo/7P6TY7+YqpV37IfF+KUFxmlK04elKtGKXaiVgw== | |
131 | +"@babel/helper-define-polyfill-provider@^0.2.2": | |
132 | + version "0.2.3" | |
133 | + resolved "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.3.tgz#0525edec5094653a282688d34d846e4c75e9c0b6" | |
134 | + integrity sha512-RH3QDAfRMzj7+0Nqu5oqgO5q9mFtQEVvCRsi8qCEfzLR9p2BHfn5FzhSB2oj1fF7I2+DcTORkYaQ6aTR9Cofew== | |
191 | 135 | dependencies: |
192 | 136 | "@babel/helper-compilation-targets" "^7.13.0" |
193 | 137 | "@babel/helper-module-imports" "^7.12.13" |
... | ... | @@ -198,21 +142,12 @@ |
198 | 142 | resolve "^1.14.2" |
199 | 143 | semver "^6.1.2" |
200 | 144 | |
201 | -"@babel/helper-explode-assignable-expression@^7.12.13": | |
202 | - version "7.13.0" | |
203 | - resolved "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.13.0.tgz#17b5c59ff473d9f956f40ef570cf3a76ca12657f" | |
204 | - integrity sha512-qS0peLTDP8kOisG1blKbaoBg/o9OSa1qoumMjTK5pM+KDTtpxpsiubnCGP34vK8BXGcb2M9eigwgvoJryrzwWA== | |
205 | - dependencies: | |
206 | - "@babel/types" "^7.13.0" | |
207 | - | |
208 | -"@babel/helper-function-name@^7.12.13": | |
209 | - version "7.12.13" | |
210 | - resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz#93ad656db3c3c2232559fd7b2c3dbdcbe0eb377a" | |
211 | - integrity sha512-TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA== | |
145 | +"@babel/helper-explode-assignable-expression@^7.14.5": | |
146 | + version "7.14.5" | |
147 | + resolved "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.14.5.tgz#8aa72e708205c7bb643e45c73b4386cdf2a1f645" | |
148 | + integrity sha512-Htb24gnGJdIGT4vnRKMdoXiOIlqOLmdiUYpAQ0mYfgVT/GDm8GOYhgi4GL+hMKrkiPRohO4ts34ELFsGAPQLDQ== | |
212 | 149 | dependencies: |
213 | - "@babel/helper-get-function-arity" "^7.12.13" | |
214 | - "@babel/template" "^7.12.13" | |
215 | - "@babel/types" "^7.12.13" | |
150 | + "@babel/types" "^7.14.5" | |
216 | 151 | |
217 | 152 | "@babel/helper-function-name@^7.14.5": |
218 | 153 | version "7.14.5" |
... | ... | @@ -223,13 +158,6 @@ |
223 | 158 | "@babel/template" "^7.14.5" |
224 | 159 | "@babel/types" "^7.14.5" |
225 | 160 | |
226 | -"@babel/helper-get-function-arity@^7.12.13": | |
227 | - version "7.12.13" | |
228 | - resolved "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz#bc63451d403a3b3082b97e1d8b3fe5bd4091e583" | |
229 | - integrity sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg== | |
230 | - dependencies: | |
231 | - "@babel/types" "^7.12.13" | |
232 | - | |
233 | 161 | "@babel/helper-get-function-arity@^7.14.5": |
234 | 162 | version "7.14.5" |
235 | 163 | resolved "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz#25fbfa579b0937eee1f3b805ece4ce398c431815" |
... | ... | @@ -237,14 +165,6 @@ |
237 | 165 | dependencies: |
238 | 166 | "@babel/types" "^7.14.5" |
239 | 167 | |
240 | -"@babel/helper-hoist-variables@^7.13.0": | |
241 | - version "7.13.0" | |
242 | - resolved "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.13.0.tgz#5d5882e855b5c5eda91e0cadc26c6e7a2c8593d8" | |
243 | - integrity sha512-0kBzvXiIKfsCA0y6cFEIJf4OdzfpRuNk4+YTeHZpGGc666SATFKTz6sRncwFnQk7/ugJ4dSrCj6iJuvW4Qwr2g== | |
244 | - dependencies: | |
245 | - "@babel/traverse" "^7.13.0" | |
246 | - "@babel/types" "^7.13.0" | |
247 | - | |
248 | 168 | "@babel/helper-hoist-variables@^7.14.5": |
249 | 169 | version "7.14.5" |
250 | 170 | resolved "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.14.5.tgz#e0dd27c33a78e577d7c8884916a3e7ef1f7c7f8d" |
... | ... | @@ -252,13 +172,6 @@ |
252 | 172 | dependencies: |
253 | 173 | "@babel/types" "^7.14.5" |
254 | 174 | |
255 | -"@babel/helper-member-expression-to-functions@^7.13.0", "@babel/helper-member-expression-to-functions@^7.13.12": | |
256 | - version "7.13.12" | |
257 | - resolved "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.12.tgz#dfe368f26d426a07299d8d6513821768216e6d72" | |
258 | - integrity sha512-48ql1CLL59aKbU94Y88Xgb2VFy7a95ykGRbJJaaVv+LX5U8wFpLfiGXJJGUozsmA1oEh/o5Bp60Voq7ACyA/Sw== | |
259 | - dependencies: | |
260 | - "@babel/types" "^7.13.12" | |
261 | - | |
262 | 175 | "@babel/helper-member-expression-to-functions@^7.14.5": |
263 | 176 | version "7.14.5" |
264 | 177 | resolved "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.14.5.tgz#d5c70e4ad13b402c95156c7a53568f504e2fb7b8" |
... | ... | @@ -266,34 +179,13 @@ |
266 | 179 | dependencies: |
267 | 180 | "@babel/types" "^7.14.5" |
268 | 181 | |
269 | -"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.13.12": | |
270 | - version "7.13.12" | |
271 | - resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz#c6a369a6f3621cb25da014078684da9196b61977" | |
272 | - integrity sha512-4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA== | |
273 | - dependencies: | |
274 | - "@babel/types" "^7.13.12" | |
275 | - | |
276 | -"@babel/helper-module-imports@^7.14.5": | |
182 | +"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.14.5": | |
277 | 183 | version "7.14.5" |
278 | 184 | resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.14.5.tgz#6d1a44df6a38c957aa7c312da076429f11b422f3" |
279 | 185 | integrity sha512-SwrNHu5QWS84XlHwGYPDtCxcA0hrSlL2yhWYLgeOc0w7ccOl2qv4s/nARI0aYZW+bSwAL5CukeXA47B/1NKcnQ== |
280 | 186 | dependencies: |
281 | 187 | "@babel/types" "^7.14.5" |
282 | 188 | |
283 | -"@babel/helper-module-transforms@^7.13.0", "@babel/helper-module-transforms@^7.13.14": | |
284 | - version "7.13.14" | |
285 | - resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.13.14.tgz#e600652ba48ccb1641775413cb32cfa4e8b495ef" | |
286 | - integrity sha512-QuU/OJ0iAOSIatyVZmfqB0lbkVP0kDRiKj34xy+QNsnVZi/PA6BoSoreeqnxxa9EHFAIL0R9XOaAR/G9WlIy5g== | |
287 | - dependencies: | |
288 | - "@babel/helper-module-imports" "^7.13.12" | |
289 | - "@babel/helper-replace-supers" "^7.13.12" | |
290 | - "@babel/helper-simple-access" "^7.13.12" | |
291 | - "@babel/helper-split-export-declaration" "^7.12.13" | |
292 | - "@babel/helper-validator-identifier" "^7.12.11" | |
293 | - "@babel/template" "^7.12.13" | |
294 | - "@babel/traverse" "^7.13.13" | |
295 | - "@babel/types" "^7.13.14" | |
296 | - | |
297 | 189 | "@babel/helper-module-transforms@^7.14.5": |
298 | 190 | version "7.14.5" |
299 | 191 | resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.14.5.tgz#7de42f10d789b423eb902ebd24031ca77cb1e10e" |
... | ... | @@ -308,13 +200,6 @@ |
308 | 200 | "@babel/traverse" "^7.14.5" |
309 | 201 | "@babel/types" "^7.14.5" |
310 | 202 | |
311 | -"@babel/helper-optimise-call-expression@^7.12.13": | |
312 | - version "7.12.13" | |
313 | - resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz#5c02d171b4c8615b1e7163f888c1c81c30a2aaea" | |
314 | - integrity sha512-BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA== | |
315 | - dependencies: | |
316 | - "@babel/types" "^7.12.13" | |
317 | - | |
318 | 203 | "@babel/helper-optimise-call-expression@^7.14.5": |
319 | 204 | version "7.14.5" |
320 | 205 | resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz#f27395a8619e0665b3f0364cddb41c25d71b499c" |
... | ... | @@ -322,34 +207,19 @@ |
322 | 207 | dependencies: |
323 | 208 | "@babel/types" "^7.14.5" |
324 | 209 | |
325 | -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": | |
326 | - version "7.13.0" | |
327 | - resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz#806526ce125aed03373bc416a828321e3a6a33af" | |
328 | - integrity sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ== | |
329 | - | |
330 | -"@babel/helper-plugin-utils@^7.14.5": | |
210 | +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": | |
331 | 211 | version "7.14.5" |
332 | 212 | resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz#5ac822ce97eec46741ab70a517971e443a70c5a9" |
333 | 213 | integrity sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ== |
334 | 214 | |
335 | -"@babel/helper-remap-async-to-generator@^7.13.0": | |
336 | - version "7.13.0" | |
337 | - resolved "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.13.0.tgz#376a760d9f7b4b2077a9dd05aa9c3927cadb2209" | |
338 | - integrity sha512-pUQpFBE9JvC9lrQbpX0TmeNIy5s7GnZjna2lhhcHC7DzgBs6fWn722Y5cfwgrtrqc7NAJwMvOa0mKhq6XaE4jg== | |
339 | - dependencies: | |
340 | - "@babel/helper-annotate-as-pure" "^7.12.13" | |
341 | - "@babel/helper-wrap-function" "^7.13.0" | |
342 | - "@babel/types" "^7.13.0" | |
343 | - | |
344 | -"@babel/helper-replace-supers@^7.12.13", "@babel/helper-replace-supers@^7.13.0", "@babel/helper-replace-supers@^7.13.12": | |
345 | - version "7.13.12" | |
346 | - resolved "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.13.12.tgz#6442f4c1ad912502481a564a7386de0c77ff3804" | |
347 | - integrity sha512-Gz1eiX+4yDO8mT+heB94aLVNCL+rbuT2xy4YfyNqu8F+OI6vMvJK891qGBTqL9Uc8wxEvRW92Id6G7sDen3fFw== | |
215 | +"@babel/helper-remap-async-to-generator@^7.14.5": | |
216 | + version "7.14.5" | |
217 | + resolved "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.14.5.tgz#51439c913612958f54a987a4ffc9ee587a2045d6" | |
218 | + integrity sha512-rLQKdQU+HYlxBwQIj8dk4/0ENOUEhA/Z0l4hN8BexpvmSMN9oA9EagjnhnDpNsRdWCfjwa4mn/HyBXO9yhQP6A== | |
348 | 219 | dependencies: |
349 | - "@babel/helper-member-expression-to-functions" "^7.13.12" | |
350 | - "@babel/helper-optimise-call-expression" "^7.12.13" | |
351 | - "@babel/traverse" "^7.13.0" | |
352 | - "@babel/types" "^7.13.12" | |
220 | + "@babel/helper-annotate-as-pure" "^7.14.5" | |
221 | + "@babel/helper-wrap-function" "^7.14.5" | |
222 | + "@babel/types" "^7.14.5" | |
353 | 223 | |
354 | 224 | "@babel/helper-replace-supers@^7.14.5": |
355 | 225 | version "7.14.5" |
... | ... | @@ -361,13 +231,6 @@ |
361 | 231 | "@babel/traverse" "^7.14.5" |
362 | 232 | "@babel/types" "^7.14.5" |
363 | 233 | |
364 | -"@babel/helper-simple-access@^7.12.13", "@babel/helper-simple-access@^7.13.12": | |
365 | - version "7.13.12" | |
366 | - resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.13.12.tgz#dd6c538afb61819d205a012c31792a39c7a5eaf6" | |
367 | - integrity sha512-7FEjbrx5SL9cWvXioDbnlYTppcZGuCY6ow3/D5vMggb2Ywgu4dMrpTJX0JdQAIcRRUElOIxF3yEooa9gUb9ZbA== | |
368 | - dependencies: | |
369 | - "@babel/types" "^7.13.12" | |
370 | - | |
371 | 234 | "@babel/helper-simple-access@^7.14.5": |
372 | 235 | version "7.14.5" |
373 | 236 | resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.14.5.tgz#66ea85cf53ba0b4e588ba77fc813f53abcaa41c4" |
... | ... | @@ -375,19 +238,12 @@ |
375 | 238 | dependencies: |
376 | 239 | "@babel/types" "^7.14.5" |
377 | 240 | |
378 | -"@babel/helper-skip-transparent-expression-wrappers@^7.12.1": | |
379 | - version "7.12.1" | |
380 | - resolved "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz#462dc63a7e435ade8468385c63d2b84cce4b3cbf" | |
381 | - integrity sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA== | |
382 | - dependencies: | |
383 | - "@babel/types" "^7.12.1" | |
384 | - | |
385 | -"@babel/helper-split-export-declaration@^7.12.13": | |
386 | - version "7.12.13" | |
387 | - resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz#e9430be00baf3e88b0e13e6f9d4eaf2136372b05" | |
388 | - integrity sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg== | |
241 | +"@babel/helper-skip-transparent-expression-wrappers@^7.14.5": | |
242 | + version "7.14.5" | |
243 | + resolved "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.14.5.tgz#96f486ac050ca9f44b009fbe5b7d394cab3a0ee4" | |
244 | + integrity sha512-dmqZB7mrb94PZSAOYtr+ZN5qt5owZIAgqtoTuqiFbHFtxgEcmQlRJVI+bO++fciBunXtB6MK7HrzrfcAzIz2NQ== | |
389 | 245 | dependencies: |
390 | - "@babel/types" "^7.12.13" | |
246 | + "@babel/types" "^7.14.5" | |
391 | 247 | |
392 | 248 | "@babel/helper-split-export-declaration@^7.14.5": |
393 | 249 | version "7.14.5" |
... | ... | @@ -396,49 +252,25 @@ |
396 | 252 | dependencies: |
397 | 253 | "@babel/types" "^7.14.5" |
398 | 254 | |
399 | -"@babel/helper-validator-identifier@^7.12.11": | |
400 | - version "7.12.11" | |
401 | - resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz#c9a1f021917dcb5ccf0d4e453e399022981fc9ed" | |
402 | - integrity sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw== | |
403 | - | |
404 | -"@babel/helper-validator-identifier@^7.14.0": | |
405 | - version "7.14.0" | |
406 | - resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz#d26cad8a47c65286b15df1547319a5d0bcf27288" | |
407 | - integrity sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A== | |
408 | - | |
409 | 255 | "@babel/helper-validator-identifier@^7.14.5": |
410 | 256 | version "7.14.5" |
411 | 257 | resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.5.tgz#d0f0e277c512e0c938277faa85a3968c9a44c0e8" |
412 | 258 | integrity sha512-5lsetuxCLilmVGyiLEfoHBRX8UCFD+1m2x3Rj97WrW3V7H3u4RWRXA4evMjImCsin2J2YT0QaVDGf+z8ondbAg== |
413 | 259 | |
414 | -"@babel/helper-validator-option@^7.12.17": | |
415 | - version "7.12.17" | |
416 | - resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz#d1fbf012e1a79b7eebbfdc6d270baaf8d9eb9831" | |
417 | - integrity sha512-TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw== | |
418 | - | |
419 | 260 | "@babel/helper-validator-option@^7.14.5": |
420 | 261 | version "7.14.5" |
421 | 262 | resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz#6e72a1fff18d5dfcb878e1e62f1a021c4b72d5a3" |
422 | 263 | integrity sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow== |
423 | 264 | |
424 | -"@babel/helper-wrap-function@^7.13.0": | |
425 | - version "7.13.0" | |
426 | - resolved "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.13.0.tgz#bdb5c66fda8526ec235ab894ad53a1235c79fcc4" | |
427 | - integrity sha512-1UX9F7K3BS42fI6qd2A4BjKzgGjToscyZTdp1DjknHLCIvpgne6918io+aL5LXFcER/8QWiwpoY902pVEqgTXA== | |
428 | - dependencies: | |
429 | - "@babel/helper-function-name" "^7.12.13" | |
430 | - "@babel/template" "^7.12.13" | |
431 | - "@babel/traverse" "^7.13.0" | |
432 | - "@babel/types" "^7.13.0" | |
433 | - | |
434 | -"@babel/helpers@^7.13.10": | |
435 | - version "7.13.10" | |
436 | - resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.13.10.tgz#fd8e2ba7488533cdeac45cc158e9ebca5e3c7df8" | |
437 | - integrity sha512-4VO883+MWPDUVRF3PhiLBUFHoX/bsLTGFpFK/HqvvfBZz2D57u9XzPVNFVBTc0PW/CWR9BXTOKt8NF4DInUHcQ== | |
265 | +"@babel/helper-wrap-function@^7.14.5": | |
266 | + version "7.14.5" | |
267 | + resolved "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.14.5.tgz#5919d115bf0fe328b8a5d63bcb610f51601f2bff" | |
268 | + integrity sha512-YEdjTCq+LNuNS1WfxsDCNpgXkJaIyqco6DAelTUjT4f2KIWC1nBcaCaSdHTBqQVLnTBexBcVcFhLSU1KnYuePQ== | |
438 | 269 | dependencies: |
439 | - "@babel/template" "^7.12.13" | |
440 | - "@babel/traverse" "^7.13.0" | |
441 | - "@babel/types" "^7.13.0" | |
270 | + "@babel/helper-function-name" "^7.14.5" | |
271 | + "@babel/template" "^7.14.5" | |
272 | + "@babel/traverse" "^7.14.5" | |
273 | + "@babel/types" "^7.14.5" | |
442 | 274 | |
443 | 275 | "@babel/helpers@^7.14.6": |
444 | 276 | version "7.14.6" |
... | ... | @@ -449,16 +281,7 @@ |
449 | 281 | "@babel/traverse" "^7.14.5" |
450 | 282 | "@babel/types" "^7.14.5" |
451 | 283 | |
452 | -"@babel/highlight@^7.10.4", "@babel/highlight@^7.12.13": | |
453 | - version "7.13.10" | |
454 | - resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.13.10.tgz#a8b2a66148f5b27d666b15d81774347a731d52d1" | |
455 | - integrity sha512-5aPpe5XQPzflQrFwL1/QoeHkP2MsA4JCntcXHRhEsdsfPVkvPi2w7Qix4iV7t5S/oC9OodGrggd8aco1g3SZFg== | |
456 | - dependencies: | |
457 | - "@babel/helper-validator-identifier" "^7.12.11" | |
458 | - chalk "^2.0.0" | |
459 | - js-tokens "^4.0.0" | |
460 | - | |
461 | -"@babel/highlight@^7.14.5": | |
284 | +"@babel/highlight@^7.10.4", "@babel/highlight@^7.14.5": | |
462 | 285 | version "7.14.5" |
463 | 286 | resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz#6861a52f03966405001f6aa534a01a24d99e8cd9" |
464 | 287 | integrity sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg== |
... | ... | @@ -467,138 +290,147 @@ |
467 | 290 | chalk "^2.0.0" |
468 | 291 | js-tokens "^4.0.0" |
469 | 292 | |
470 | -"@babel/parser@^7.1.0", "@babel/parser@^7.14.5", "@babel/parser@^7.14.6", "@babel/parser@^7.7.2": | |
293 | +"@babel/parser@^7.1.0", "@babel/parser@^7.12.0", "@babel/parser@^7.13.9", "@babel/parser@^7.14.5", "@babel/parser@^7.14.6", "@babel/parser@^7.6.0", "@babel/parser@^7.7.2", "@babel/parser@^7.9.6": | |
471 | 294 | version "7.14.6" |
472 | 295 | resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.14.6.tgz#d85cc68ca3cac84eae384c06f032921f5227f4b2" |
473 | 296 | integrity sha512-oG0ej7efjEXxb4UgE+klVx+3j4MVo+A2vCzm7OUN4CLo6WhQ+vSOD2yJ8m7B+DghObxtLxt3EfgMWpq+AsWehQ== |
474 | 297 | |
475 | -"@babel/parser@^7.12.0", "@babel/parser@^7.12.13", "@babel/parser@^7.13.15", "@babel/parser@^7.13.9": | |
476 | - version "7.13.15" | |
477 | - resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.13.15.tgz#8e66775fb523599acb6a289e12929fa5ab0954d8" | |
478 | - integrity sha512-b9COtcAlVEQljy/9fbcMHpG+UIW9ReF+gpaxDHTlZd0c6/UU9ng8zdySAW9sRTzpvcdCHn6bUcbuYUgGzLAWVQ== | |
479 | - | |
480 | -"@babel/parser@^7.6.0", "@babel/parser@^7.9.6": | |
481 | - version "7.14.1" | |
482 | - resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.14.1.tgz#1bd644b5db3f5797c4479d89ec1817fe02b84c47" | |
483 | - integrity sha512-muUGEKu8E/ftMTPlNp+mc6zL3E9zKWmF5sDHZ5MSsoTP9Wyz64AhEf9kD08xYJ7w6Hdcu8H550ircnPyWSIF0Q== | |
484 | - | |
485 | -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.13.12": | |
486 | - version "7.13.12" | |
487 | - resolved "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12.tgz#a3484d84d0b549f3fc916b99ee4783f26fabad2a" | |
488 | - integrity sha512-d0u3zWKcoZf379fOeJdr1a5WPDny4aOFZ6hlfKivgK0LY7ZxNfoaHL2fWwdGtHyVvra38FC+HVYkO+byfSA8AQ== | |
298 | +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.14.5": | |
299 | + version "7.14.5" | |
300 | + resolved "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5.tgz#4b467302e1548ed3b1be43beae2cc9cf45e0bb7e" | |
301 | + integrity sha512-ZoJS2XCKPBfTmL122iP6NM9dOg+d4lc9fFk3zxc8iDjvt8Pk4+TlsHSKhIPf6X+L5ORCdBzqMZDjL/WHj7WknQ== | |
489 | 302 | dependencies: |
490 | - "@babel/helper-plugin-utils" "^7.13.0" | |
491 | - "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1" | |
492 | - "@babel/plugin-proposal-optional-chaining" "^7.13.12" | |
303 | + "@babel/helper-plugin-utils" "^7.14.5" | |
304 | + "@babel/helper-skip-transparent-expression-wrappers" "^7.14.5" | |
305 | + "@babel/plugin-proposal-optional-chaining" "^7.14.5" | |
493 | 306 | |
494 | -"@babel/plugin-proposal-async-generator-functions@^7.13.15": | |
495 | - version "7.13.15" | |
496 | - resolved "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.13.15.tgz#80e549df273a3b3050431b148c892491df1bcc5b" | |
497 | - integrity sha512-VapibkWzFeoa6ubXy/NgV5U2U4MVnUlvnx6wo1XhlsaTrLYWE0UFpDQsVrmn22q5CzeloqJ8gEMHSKxuee6ZdA== | |
307 | +"@babel/plugin-proposal-async-generator-functions@^7.14.5": | |
308 | + version "7.14.5" | |
309 | + resolved "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.14.5.tgz#4024990e3dd74181f4f426ea657769ff49a2df39" | |
310 | + integrity sha512-tbD/CG3l43FIXxmu4a7RBe4zH7MLJ+S/lFowPFO7HetS2hyOZ/0nnnznegDuzFzfkyQYTxqdTH/hKmuBngaDAA== | |
498 | 311 | dependencies: |
499 | - "@babel/helper-plugin-utils" "^7.13.0" | |
500 | - "@babel/helper-remap-async-to-generator" "^7.13.0" | |
312 | + "@babel/helper-plugin-utils" "^7.14.5" | |
313 | + "@babel/helper-remap-async-to-generator" "^7.14.5" | |
501 | 314 | "@babel/plugin-syntax-async-generators" "^7.8.4" |
502 | 315 | |
503 | -"@babel/plugin-proposal-class-properties@^7.13.0": | |
504 | - version "7.13.0" | |
505 | - resolved "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.13.0.tgz#146376000b94efd001e57a40a88a525afaab9f37" | |
506 | - integrity sha512-KnTDjFNC1g+45ka0myZNvSBFLhNCLN+GeGYLDEA8Oq7MZ6yMgfLoIRh86GRT0FjtJhZw8JyUskP9uvj5pHM9Zg== | |
316 | +"@babel/plugin-proposal-class-properties@^7.14.5": | |
317 | + version "7.14.5" | |
318 | + resolved "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.14.5.tgz#40d1ee140c5b1e31a350f4f5eed945096559b42e" | |
319 | + integrity sha512-q/PLpv5Ko4dVc1LYMpCY7RVAAO4uk55qPwrIuJ5QJ8c6cVuAmhu7I/49JOppXL6gXf7ZHzpRVEUZdYoPLM04Gg== | |
507 | 320 | dependencies: |
508 | - "@babel/helper-create-class-features-plugin" "^7.13.0" | |
509 | - "@babel/helper-plugin-utils" "^7.13.0" | |
321 | + "@babel/helper-create-class-features-plugin" "^7.14.5" | |
322 | + "@babel/helper-plugin-utils" "^7.14.5" | |
510 | 323 | |
511 | -"@babel/plugin-proposal-dynamic-import@^7.13.8": | |
512 | - version "7.13.8" | |
513 | - resolved "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.13.8.tgz#876a1f6966e1dec332e8c9451afda3bebcdf2e1d" | |
514 | - integrity sha512-ONWKj0H6+wIRCkZi9zSbZtE/r73uOhMVHh256ys0UzfM7I3d4n+spZNWjOnJv2gzopumP2Wxi186vI8N0Y2JyQ== | |
324 | +"@babel/plugin-proposal-class-static-block@^7.14.5": | |
325 | + version "7.14.5" | |
326 | + resolved "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.14.5.tgz#158e9e10d449c3849ef3ecde94a03d9f1841b681" | |
327 | + integrity sha512-KBAH5ksEnYHCegqseI5N9skTdxgJdmDoAOc0uXa+4QMYKeZD0w5IARh4FMlTNtaHhbB8v+KzMdTgxMMzsIy6Yg== | |
515 | 328 | dependencies: |
516 | - "@babel/helper-plugin-utils" "^7.13.0" | |
329 | + "@babel/helper-create-class-features-plugin" "^7.14.5" | |
330 | + "@babel/helper-plugin-utils" "^7.14.5" | |
331 | + "@babel/plugin-syntax-class-static-block" "^7.14.5" | |
332 | + | |
333 | +"@babel/plugin-proposal-dynamic-import@^7.14.5": | |
334 | + version "7.14.5" | |
335 | + resolved "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.14.5.tgz#0c6617df461c0c1f8fff3b47cd59772360101d2c" | |
336 | + integrity sha512-ExjiNYc3HDN5PXJx+bwC50GIx/KKanX2HiggnIUAYedbARdImiCU4RhhHfdf0Kd7JNXGpsBBBCOm+bBVy3Gb0g== | |
337 | + dependencies: | |
338 | + "@babel/helper-plugin-utils" "^7.14.5" | |
517 | 339 | "@babel/plugin-syntax-dynamic-import" "^7.8.3" |
518 | 340 | |
519 | -"@babel/plugin-proposal-export-namespace-from@^7.12.13": | |
520 | - version "7.12.13" | |
521 | - resolved "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.13.tgz#393be47a4acd03fa2af6e3cde9b06e33de1b446d" | |
522 | - integrity sha512-INAgtFo4OnLN3Y/j0VwAgw3HDXcDtX+C/erMvWzuV9v71r7urb6iyMXu7eM9IgLr1ElLlOkaHjJ0SbCmdOQ3Iw== | |
341 | +"@babel/plugin-proposal-export-namespace-from@^7.14.5": | |
342 | + version "7.14.5" | |
343 | + resolved "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.14.5.tgz#dbad244310ce6ccd083072167d8cea83a52faf76" | |
344 | + integrity sha512-g5POA32bXPMmSBu5Dx/iZGLGnKmKPc5AiY7qfZgurzrCYgIztDlHFbznSNCoQuv57YQLnQfaDi7dxCtLDIdXdA== | |
523 | 345 | dependencies: |
524 | - "@babel/helper-plugin-utils" "^7.12.13" | |
346 | + "@babel/helper-plugin-utils" "^7.14.5" | |
525 | 347 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3" |
526 | 348 | |
527 | -"@babel/plugin-proposal-json-strings@^7.13.8": | |
528 | - version "7.13.8" | |
529 | - resolved "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.13.8.tgz#bf1fb362547075afda3634ed31571c5901afef7b" | |
530 | - integrity sha512-w4zOPKUFPX1mgvTmL/fcEqy34hrQ1CRcGxdphBc6snDnnqJ47EZDIyop6IwXzAC8G916hsIuXB2ZMBCExC5k7Q== | |
349 | +"@babel/plugin-proposal-json-strings@^7.14.5": | |
350 | + version "7.14.5" | |
351 | + resolved "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.14.5.tgz#38de60db362e83a3d8c944ac858ddf9f0c2239eb" | |
352 | + integrity sha512-NSq2fczJYKVRIsUJyNxrVUMhB27zb7N7pOFGQOhBKJrChbGcgEAqyZrmZswkPk18VMurEeJAaICbfm57vUeTbQ== | |
531 | 353 | dependencies: |
532 | - "@babel/helper-plugin-utils" "^7.13.0" | |
354 | + "@babel/helper-plugin-utils" "^7.14.5" | |
533 | 355 | "@babel/plugin-syntax-json-strings" "^7.8.3" |
534 | 356 | |
535 | -"@babel/plugin-proposal-logical-assignment-operators@^7.13.8": | |
536 | - version "7.13.8" | |
537 | - resolved "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.13.8.tgz#93fa78d63857c40ce3c8c3315220fd00bfbb4e1a" | |
538 | - integrity sha512-aul6znYB4N4HGweImqKn59Su9RS8lbUIqxtXTOcAGtNIDczoEFv+l1EhmX8rUBp3G1jMjKJm8m0jXVp63ZpS4A== | |
357 | +"@babel/plugin-proposal-logical-assignment-operators@^7.14.5": | |
358 | + version "7.14.5" | |
359 | + resolved "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.14.5.tgz#6e6229c2a99b02ab2915f82571e0cc646a40c738" | |
360 | + integrity sha512-YGn2AvZAo9TwyhlLvCCWxD90Xq8xJ4aSgaX3G5D/8DW94L8aaT+dS5cSP+Z06+rCJERGSr9GxMBZ601xoc2taw== | |
539 | 361 | dependencies: |
540 | - "@babel/helper-plugin-utils" "^7.13.0" | |
362 | + "@babel/helper-plugin-utils" "^7.14.5" | |
541 | 363 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" |
542 | 364 | |
543 | -"@babel/plugin-proposal-nullish-coalescing-operator@^7.13.8": | |
544 | - version "7.13.8" | |
545 | - resolved "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.13.8.tgz#3730a31dafd3c10d8ccd10648ed80a2ac5472ef3" | |
546 | - integrity sha512-iePlDPBn//UhxExyS9KyeYU7RM9WScAG+D3Hhno0PLJebAEpDZMocbDe64eqynhNAnwz/vZoL/q/QB2T1OH39A== | |
365 | +"@babel/plugin-proposal-nullish-coalescing-operator@^7.14.5": | |
366 | + version "7.14.5" | |
367 | + resolved "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.5.tgz#ee38589ce00e2cc59b299ec3ea406fcd3a0fdaf6" | |
368 | + integrity sha512-gun/SOnMqjSb98Nkaq2rTKMwervfdAoz6NphdY0vTfuzMfryj+tDGb2n6UkDKwez+Y8PZDhE3D143v6Gepp4Hg== | |
547 | 369 | dependencies: |
548 | - "@babel/helper-plugin-utils" "^7.13.0" | |
370 | + "@babel/helper-plugin-utils" "^7.14.5" | |
549 | 371 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" |
550 | 372 | |
551 | -"@babel/plugin-proposal-numeric-separator@^7.12.13": | |
552 | - version "7.12.13" | |
553 | - resolved "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.13.tgz#bd9da3188e787b5120b4f9d465a8261ce67ed1db" | |
554 | - integrity sha512-O1jFia9R8BUCl3ZGB7eitaAPu62TXJRHn7rh+ojNERCFyqRwJMTmhz+tJ+k0CwI6CLjX/ee4qW74FSqlq9I35w== | |
373 | +"@babel/plugin-proposal-numeric-separator@^7.14.5": | |
374 | + version "7.14.5" | |
375 | + resolved "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.5.tgz#83631bf33d9a51df184c2102a069ac0c58c05f18" | |
376 | + integrity sha512-yiclALKe0vyZRZE0pS6RXgjUOt87GWv6FYa5zqj15PvhOGFO69R5DusPlgK/1K5dVnCtegTiWu9UaBSrLLJJBg== | |
555 | 377 | dependencies: |
556 | - "@babel/helper-plugin-utils" "^7.12.13" | |
378 | + "@babel/helper-plugin-utils" "^7.14.5" | |
557 | 379 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" |
558 | 380 | |
559 | -"@babel/plugin-proposal-object-rest-spread@^7.13.8": | |
560 | - version "7.13.8" | |
561 | - resolved "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.13.8.tgz#5d210a4d727d6ce3b18f9de82cc99a3964eed60a" | |
562 | - integrity sha512-DhB2EuB1Ih7S3/IRX5AFVgZ16k3EzfRbq97CxAVI1KSYcW+lexV8VZb7G7L8zuPVSdQMRn0kiBpf/Yzu9ZKH0g== | |
381 | +"@babel/plugin-proposal-object-rest-spread@^7.14.5": | |
382 | + version "7.14.5" | |
383 | + resolved "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.5.tgz#e581d5ccdfa187ea6ed73f56c6a21c1580b90fbf" | |
384 | + integrity sha512-VzMyY6PWNPPT3pxc5hi9LloKNr4SSrVCg7Yr6aZpW4Ym07r7KqSU/QXYwjXLVxqwSv0t/XSXkFoKBPUkZ8vb2A== | |
563 | 385 | dependencies: |
564 | - "@babel/compat-data" "^7.13.8" | |
565 | - "@babel/helper-compilation-targets" "^7.13.8" | |
566 | - "@babel/helper-plugin-utils" "^7.13.0" | |
386 | + "@babel/compat-data" "^7.14.5" | |
387 | + "@babel/helper-compilation-targets" "^7.14.5" | |
388 | + "@babel/helper-plugin-utils" "^7.14.5" | |
567 | 389 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3" |
568 | - "@babel/plugin-transform-parameters" "^7.13.0" | |
390 | + "@babel/plugin-transform-parameters" "^7.14.5" | |
569 | 391 | |
570 | -"@babel/plugin-proposal-optional-catch-binding@^7.13.8": | |
571 | - version "7.13.8" | |
572 | - resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.13.8.tgz#3ad6bd5901506ea996fc31bdcf3ccfa2bed71107" | |
573 | - integrity sha512-0wS/4DUF1CuTmGo+NiaHfHcVSeSLj5S3e6RivPTg/2k3wOv3jO35tZ6/ZWsQhQMvdgI7CwphjQa/ccarLymHVA== | |
392 | +"@babel/plugin-proposal-optional-catch-binding@^7.14.5": | |
393 | + version "7.14.5" | |
394 | + resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.5.tgz#939dd6eddeff3a67fdf7b3f044b5347262598c3c" | |
395 | + integrity sha512-3Oyiixm0ur7bzO5ybNcZFlmVsygSIQgdOa7cTfOYCMY+wEPAYhZAJxi3mixKFCTCKUhQXuCTtQ1MzrpL3WT8ZQ== | |
574 | 396 | dependencies: |
575 | - "@babel/helper-plugin-utils" "^7.13.0" | |
397 | + "@babel/helper-plugin-utils" "^7.14.5" | |
576 | 398 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" |
577 | 399 | |
578 | -"@babel/plugin-proposal-optional-chaining@^7.13.12": | |
579 | - version "7.13.12" | |
580 | - resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.13.12.tgz#ba9feb601d422e0adea6760c2bd6bbb7bfec4866" | |
581 | - integrity sha512-fcEdKOkIB7Tf4IxrgEVeFC4zeJSTr78no9wTdBuZZbqF64kzllU0ybo2zrzm7gUQfxGhBgq4E39oRs8Zx/RMYQ== | |
400 | +"@babel/plugin-proposal-optional-chaining@^7.14.5": | |
401 | + version "7.14.5" | |
402 | + resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.5.tgz#fa83651e60a360e3f13797eef00b8d519695b603" | |
403 | + integrity sha512-ycz+VOzo2UbWNI1rQXxIuMOzrDdHGrI23fRiz/Si2R4kv2XZQ1BK8ccdHwehMKBlcH/joGW/tzrUmo67gbJHlQ== | |
582 | 404 | dependencies: |
583 | - "@babel/helper-plugin-utils" "^7.13.0" | |
584 | - "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1" | |
405 | + "@babel/helper-plugin-utils" "^7.14.5" | |
406 | + "@babel/helper-skip-transparent-expression-wrappers" "^7.14.5" | |
585 | 407 | "@babel/plugin-syntax-optional-chaining" "^7.8.3" |
586 | 408 | |
587 | -"@babel/plugin-proposal-private-methods@^7.13.0": | |
588 | - version "7.13.0" | |
589 | - resolved "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.13.0.tgz#04bd4c6d40f6e6bbfa2f57e2d8094bad900ef787" | |
590 | - integrity sha512-MXyyKQd9inhx1kDYPkFRVOBXQ20ES8Pto3T7UZ92xj2mY0EVD8oAVzeyYuVfy/mxAdTSIayOvg+aVzcHV2bn6Q== | |
409 | +"@babel/plugin-proposal-private-methods@^7.14.5": | |
410 | + version "7.14.5" | |
411 | + resolved "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.14.5.tgz#37446495996b2945f30f5be5b60d5e2aa4f5792d" | |
412 | + integrity sha512-838DkdUA1u+QTCplatfq4B7+1lnDa/+QMI89x5WZHBcnNv+47N8QEj2k9I2MUU9xIv8XJ4XvPCviM/Dj7Uwt9g== | |
591 | 413 | dependencies: |
592 | - "@babel/helper-create-class-features-plugin" "^7.13.0" | |
593 | - "@babel/helper-plugin-utils" "^7.13.0" | |
414 | + "@babel/helper-create-class-features-plugin" "^7.14.5" | |
415 | + "@babel/helper-plugin-utils" "^7.14.5" | |
594 | 416 | |
595 | -"@babel/plugin-proposal-unicode-property-regex@^7.12.13", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": | |
596 | - version "7.12.13" | |
597 | - resolved "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.13.tgz#bebde51339be829c17aaaaced18641deb62b39ba" | |
598 | - integrity sha512-XyJmZidNfofEkqFV5VC/bLabGmO5QzenPO/YOfGuEbgU+2sSwMmio3YLb4WtBgcmmdwZHyVyv8on77IUjQ5Gvg== | |
417 | +"@babel/plugin-proposal-private-property-in-object@^7.14.5": | |
418 | + version "7.14.5" | |
419 | + resolved "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.14.5.tgz#9f65a4d0493a940b4c01f8aa9d3f1894a587f636" | |
420 | + integrity sha512-62EyfyA3WA0mZiF2e2IV9mc9Ghwxcg8YTu8BS4Wss4Y3PY725OmS9M0qLORbJwLqFtGh+jiE4wAmocK2CTUK2Q== | |
599 | 421 | dependencies: |
600 | - "@babel/helper-create-regexp-features-plugin" "^7.12.13" | |
601 | - "@babel/helper-plugin-utils" "^7.12.13" | |
422 | + "@babel/helper-annotate-as-pure" "^7.14.5" | |
423 | + "@babel/helper-create-class-features-plugin" "^7.14.5" | |
424 | + "@babel/helper-plugin-utils" "^7.14.5" | |
425 | + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" | |
426 | + | |
427 | +"@babel/plugin-proposal-unicode-property-regex@^7.14.5", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": | |
428 | + version "7.14.5" | |
429 | + resolved "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.14.5.tgz#0f95ee0e757a5d647f378daa0eca7e93faa8bbe8" | |
430 | + integrity sha512-6axIeOU5LnY471KenAB9vI8I5j7NQ2d652hIYwVyRfgaZT5UpiqFKCuVXCDMSrU+3VFafnu2c5m3lrWIlr6A5Q== | |
431 | + dependencies: | |
432 | + "@babel/helper-create-regexp-features-plugin" "^7.14.5" | |
433 | + "@babel/helper-plugin-utils" "^7.14.5" | |
602 | 434 | |
603 | 435 | "@babel/plugin-syntax-async-generators@^7.8.4": |
604 | 436 | version "7.8.4" |
... | ... | @@ -621,6 +453,13 @@ |
621 | 453 | dependencies: |
622 | 454 | "@babel/helper-plugin-utils" "^7.12.13" |
623 | 455 | |
456 | +"@babel/plugin-syntax-class-static-block@^7.14.5": | |
457 | + version "7.14.5" | |
458 | + resolved "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406" | |
459 | + integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== | |
460 | + dependencies: | |
461 | + "@babel/helper-plugin-utils" "^7.14.5" | |
462 | + | |
624 | 463 | "@babel/plugin-syntax-dynamic-import@^7.8.3": |
625 | 464 | version "7.8.3" |
626 | 465 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" |
... | ... | @@ -650,11 +489,11 @@ |
650 | 489 | "@babel/helper-plugin-utils" "^7.8.0" |
651 | 490 | |
652 | 491 | "@babel/plugin-syntax-jsx@^7.0.0": |
653 | - version "7.12.13" | |
654 | - resolved "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.13.tgz#044fb81ebad6698fe62c478875575bcbb9b70f15" | |
655 | - integrity sha512-d4HM23Q1K7oq/SLNmG6mRt85l2csmQ0cHRaxRXjKW0YFdEXqlZ5kzFQKH5Uc3rDJECgu+yCRgPkG04Mm98R/1g== | |
492 | + version "7.14.5" | |
493 | + resolved "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.14.5.tgz#000e2e25d8673cce49300517a3eda44c263e4201" | |
494 | + integrity sha512-ohuFIsOMXJnbOMRfX7/w7LocdR6R7whhuRD4ax8IipLcLPlZGJKkBxgHp++U4N/vKyU16/YDQr2f5seajD3jIw== | |
656 | 495 | dependencies: |
657 | - "@babel/helper-plugin-utils" "^7.12.13" | |
496 | + "@babel/helper-plugin-utils" "^7.14.5" | |
658 | 497 | |
659 | 498 | "@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": |
660 | 499 | version "7.10.4" |
... | ... | @@ -698,163 +537,146 @@ |
698 | 537 | dependencies: |
699 | 538 | "@babel/helper-plugin-utils" "^7.8.0" |
700 | 539 | |
701 | -"@babel/plugin-syntax-top-level-await@^7.12.13": | |
702 | - version "7.12.13" | |
703 | - resolved "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.13.tgz#c5f0fa6e249f5b739727f923540cf7a806130178" | |
704 | - integrity sha512-A81F9pDwyS7yM//KwbCSDqy3Uj4NMIurtplxphWxoYtNPov7cJsDkAFNNyVlIZ3jwGycVsurZ+LtOA8gZ376iQ== | |
540 | +"@babel/plugin-syntax-private-property-in-object@^7.14.5": | |
541 | + version "7.14.5" | |
542 | + resolved "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad" | |
543 | + integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== | |
705 | 544 | dependencies: |
706 | - "@babel/helper-plugin-utils" "^7.12.13" | |
545 | + "@babel/helper-plugin-utils" "^7.14.5" | |
707 | 546 | |
708 | -"@babel/plugin-syntax-top-level-await@^7.8.3": | |
547 | +"@babel/plugin-syntax-top-level-await@^7.14.5", "@babel/plugin-syntax-top-level-await@^7.8.3": | |
709 | 548 | version "7.14.5" |
710 | 549 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" |
711 | 550 | integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== |
712 | 551 | dependencies: |
713 | 552 | "@babel/helper-plugin-utils" "^7.14.5" |
714 | 553 | |
715 | -"@babel/plugin-syntax-typescript@^7.12.13": | |
716 | - version "7.12.13" | |
717 | - resolved "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.12.13.tgz#9dff111ca64154cef0f4dc52cf843d9f12ce4474" | |
718 | - integrity sha512-cHP3u1JiUiG2LFDKbXnwVad81GvfyIOmCD6HIEId6ojrY0Drfy2q1jw7BwN7dE84+kTnBjLkXoL3IEy/3JPu2w== | |
719 | - dependencies: | |
720 | - "@babel/helper-plugin-utils" "^7.12.13" | |
721 | - | |
722 | -"@babel/plugin-syntax-typescript@^7.7.2": | |
554 | +"@babel/plugin-syntax-typescript@^7.14.5", "@babel/plugin-syntax-typescript@^7.7.2": | |
723 | 555 | version "7.14.5" |
724 | 556 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.14.5.tgz#b82c6ce471b165b5ce420cf92914d6fb46225716" |
725 | 557 | integrity sha512-u6OXzDaIXjEstBRRoBCQ/uKQKlbuaeE5in0RvWdA4pN6AhqxTIwUsnHPU1CFZA/amYObMsuWhYfRl3Ch90HD0Q== |
726 | 558 | dependencies: |
727 | 559 | "@babel/helper-plugin-utils" "^7.14.5" |
728 | 560 | |
729 | -"@babel/plugin-transform-arrow-functions@^7.13.0": | |
730 | - version "7.13.0" | |
731 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.13.0.tgz#10a59bebad52d637a027afa692e8d5ceff5e3dae" | |
732 | - integrity sha512-96lgJagobeVmazXFaDrbmCLQxBysKu7U6Do3mLsx27gf5Dk85ezysrs2BZUpXD703U/Su1xTBDxxar2oa4jAGg== | |
561 | +"@babel/plugin-transform-arrow-functions@^7.14.5": | |
562 | + version "7.14.5" | |
563 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.14.5.tgz#f7187d9588a768dd080bf4c9ffe117ea62f7862a" | |
564 | + integrity sha512-KOnO0l4+tD5IfOdi4x8C1XmEIRWUjNRV8wc6K2vz/3e8yAOoZZvsRXRRIF/yo/MAOFb4QjtAw9xSxMXbSMRy8A== | |
733 | 565 | dependencies: |
734 | - "@babel/helper-plugin-utils" "^7.13.0" | |
566 | + "@babel/helper-plugin-utils" "^7.14.5" | |
735 | 567 | |
736 | -"@babel/plugin-transform-async-to-generator@^7.13.0": | |
737 | - version "7.13.0" | |
738 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.13.0.tgz#8e112bf6771b82bf1e974e5e26806c5c99aa516f" | |
739 | - integrity sha512-3j6E004Dx0K3eGmhxVJxwwI89CTJrce7lg3UrtFuDAVQ/2+SJ/h/aSFOeE6/n0WB1GsOffsJp6MnPQNQ8nmwhg== | |
568 | +"@babel/plugin-transform-async-to-generator@^7.14.5": | |
569 | + version "7.14.5" | |
570 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.14.5.tgz#72c789084d8f2094acb945633943ef8443d39e67" | |
571 | + integrity sha512-szkbzQ0mNk0rpu76fzDdqSyPu0MuvpXgC+6rz5rpMb5OIRxdmHfQxrktL8CYolL2d8luMCZTR0DpIMIdL27IjA== | |
740 | 572 | dependencies: |
741 | - "@babel/helper-module-imports" "^7.12.13" | |
742 | - "@babel/helper-plugin-utils" "^7.13.0" | |
743 | - "@babel/helper-remap-async-to-generator" "^7.13.0" | |
573 | + "@babel/helper-module-imports" "^7.14.5" | |
574 | + "@babel/helper-plugin-utils" "^7.14.5" | |
575 | + "@babel/helper-remap-async-to-generator" "^7.14.5" | |
744 | 576 | |
745 | -"@babel/plugin-transform-block-scoped-functions@^7.12.13": | |
746 | - version "7.12.13" | |
747 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.13.tgz#a9bf1836f2a39b4eb6cf09967739de29ea4bf4c4" | |
748 | - integrity sha512-zNyFqbc3kI/fVpqwfqkg6RvBgFpC4J18aKKMmv7KdQ/1GgREapSJAykLMVNwfRGO3BtHj3YQZl8kxCXPcVMVeg== | |
577 | +"@babel/plugin-transform-block-scoped-functions@^7.14.5": | |
578 | + version "7.14.5" | |
579 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.14.5.tgz#e48641d999d4bc157a67ef336aeb54bc44fd3ad4" | |
580 | + integrity sha512-dtqWqdWZ5NqBX3KzsVCWfQI3A53Ft5pWFCT2eCVUftWZgjc5DpDponbIF1+c+7cSGk2wN0YK7HGL/ezfRbpKBQ== | |
749 | 581 | dependencies: |
750 | - "@babel/helper-plugin-utils" "^7.12.13" | |
582 | + "@babel/helper-plugin-utils" "^7.14.5" | |
751 | 583 | |
752 | -"@babel/plugin-transform-block-scoping@^7.12.13": | |
753 | - version "7.12.13" | |
754 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.13.tgz#f36e55076d06f41dfd78557ea039c1b581642e61" | |
755 | - integrity sha512-Pxwe0iqWJX4fOOM2kEZeUuAxHMWb9nK+9oh5d11bsLoB0xMg+mkDpt0eYuDZB7ETrY9bbcVlKUGTOGWy7BHsMQ== | |
584 | +"@babel/plugin-transform-block-scoping@^7.14.5": | |
585 | + version "7.14.5" | |
586 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.14.5.tgz#8cc63e61e50f42e078e6f09be775a75f23ef9939" | |
587 | + integrity sha512-LBYm4ZocNgoCqyxMLoOnwpsmQ18HWTQvql64t3GvMUzLQrNoV1BDG0lNftC8QKYERkZgCCT/7J5xWGObGAyHDw== | |
756 | 588 | dependencies: |
757 | - "@babel/helper-plugin-utils" "^7.12.13" | |
589 | + "@babel/helper-plugin-utils" "^7.14.5" | |
758 | 590 | |
759 | -"@babel/plugin-transform-classes@^7.13.0": | |
760 | - version "7.13.0" | |
761 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.13.0.tgz#0265155075c42918bf4d3a4053134176ad9b533b" | |
762 | - integrity sha512-9BtHCPUARyVH1oXGcSJD3YpsqRLROJx5ZNP6tN5vnk17N0SVf9WCtf8Nuh1CFmgByKKAIMstitKduoCmsaDK5g== | |
591 | +"@babel/plugin-transform-classes@^7.14.5": | |
592 | + version "7.14.5" | |
593 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.14.5.tgz#0e98e82097b38550b03b483f9b51a78de0acb2cf" | |
594 | + integrity sha512-J4VxKAMykM06K/64z9rwiL6xnBHgB1+FVspqvlgCdwD1KUbQNfszeKVVOMh59w3sztHYIZDgnhOC4WbdEfHFDA== | |
763 | 595 | dependencies: |
764 | - "@babel/helper-annotate-as-pure" "^7.12.13" | |
765 | - "@babel/helper-function-name" "^7.12.13" | |
766 | - "@babel/helper-optimise-call-expression" "^7.12.13" | |
767 | - "@babel/helper-plugin-utils" "^7.13.0" | |
768 | - "@babel/helper-replace-supers" "^7.13.0" | |
769 | - "@babel/helper-split-export-declaration" "^7.12.13" | |
596 | + "@babel/helper-annotate-as-pure" "^7.14.5" | |
597 | + "@babel/helper-function-name" "^7.14.5" | |
598 | + "@babel/helper-optimise-call-expression" "^7.14.5" | |
599 | + "@babel/helper-plugin-utils" "^7.14.5" | |
600 | + "@babel/helper-replace-supers" "^7.14.5" | |
601 | + "@babel/helper-split-export-declaration" "^7.14.5" | |
770 | 602 | globals "^11.1.0" |
771 | 603 | |
772 | -"@babel/plugin-transform-computed-properties@^7.13.0": | |
773 | - version "7.13.0" | |
774 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.13.0.tgz#845c6e8b9bb55376b1fa0b92ef0bdc8ea06644ed" | |
775 | - integrity sha512-RRqTYTeZkZAz8WbieLTvKUEUxZlUTdmL5KGMyZj7FnMfLNKV4+r5549aORG/mgojRmFlQMJDUupwAMiF2Q7OUg== | |
776 | - dependencies: | |
777 | - "@babel/helper-plugin-utils" "^7.13.0" | |
778 | - | |
779 | -"@babel/plugin-transform-destructuring@^7.13.0": | |
780 | - version "7.13.0" | |
781 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.13.0.tgz#c5dce270014d4e1ebb1d806116694c12b7028963" | |
782 | - integrity sha512-zym5em7tePoNT9s964c0/KU3JPPnuq7VhIxPRefJ4/s82cD+q1mgKfuGRDMCPL0HTyKz4dISuQlCusfgCJ86HA== | |
604 | +"@babel/plugin-transform-computed-properties@^7.14.5": | |
605 | + version "7.14.5" | |
606 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.14.5.tgz#1b9d78987420d11223d41195461cc43b974b204f" | |
607 | + integrity sha512-pWM+E4283UxaVzLb8UBXv4EIxMovU4zxT1OPnpHJcmnvyY9QbPPTKZfEj31EUvG3/EQRbYAGaYEUZ4yWOBC2xg== | |
783 | 608 | dependencies: |
784 | - "@babel/helper-plugin-utils" "^7.13.0" | |
609 | + "@babel/helper-plugin-utils" "^7.14.5" | |
785 | 610 | |
786 | -"@babel/plugin-transform-dotall-regex@^7.12.13", "@babel/plugin-transform-dotall-regex@^7.4.4": | |
787 | - version "7.12.13" | |
788 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.13.tgz#3f1601cc29905bfcb67f53910f197aeafebb25ad" | |
789 | - integrity sha512-foDrozE65ZFdUC2OfgeOCrEPTxdB3yjqxpXh8CH+ipd9CHd4s/iq81kcUpyH8ACGNEPdFqbtzfgzbT/ZGlbDeQ== | |
611 | +"@babel/plugin-transform-destructuring@^7.14.5": | |
612 | + version "7.14.5" | |
613 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.5.tgz#d32ad19ff1a6da1e861dc62720d80d9776e3bf35" | |
614 | + integrity sha512-wU9tYisEbRMxqDezKUqC9GleLycCRoUsai9ddlsq54r8QRLaeEhc+d+9DqCG+kV9W2GgQjTZESPTpn5bAFMDww== | |
790 | 615 | dependencies: |
791 | - "@babel/helper-create-regexp-features-plugin" "^7.12.13" | |
792 | - "@babel/helper-plugin-utils" "^7.12.13" | |
616 | + "@babel/helper-plugin-utils" "^7.14.5" | |
793 | 617 | |
794 | -"@babel/plugin-transform-duplicate-keys@^7.12.13": | |
795 | - version "7.12.13" | |
796 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.13.tgz#6f06b87a8b803fd928e54b81c258f0a0033904de" | |
797 | - integrity sha512-NfADJiiHdhLBW3pulJlJI2NB0t4cci4WTZ8FtdIuNc2+8pslXdPtRRAEWqUY+m9kNOk2eRYbTAOipAxlrOcwwQ== | |
618 | +"@babel/plugin-transform-dotall-regex@^7.14.5", "@babel/plugin-transform-dotall-regex@^7.4.4": | |
619 | + version "7.14.5" | |
620 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.14.5.tgz#2f6bf76e46bdf8043b4e7e16cf24532629ba0c7a" | |
621 | + integrity sha512-loGlnBdj02MDsFaHhAIJzh7euK89lBrGIdM9EAtHFo6xKygCUGuuWe07o1oZVk287amtW1n0808sQM99aZt3gw== | |
798 | 622 | dependencies: |
799 | - "@babel/helper-plugin-utils" "^7.12.13" | |
623 | + "@babel/helper-create-regexp-features-plugin" "^7.14.5" | |
624 | + "@babel/helper-plugin-utils" "^7.14.5" | |
800 | 625 | |
801 | -"@babel/plugin-transform-exponentiation-operator@^7.12.13": | |
802 | - version "7.12.13" | |
803 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.13.tgz#4d52390b9a273e651e4aba6aee49ef40e80cd0a1" | |
804 | - integrity sha512-fbUelkM1apvqez/yYx1/oICVnGo2KM5s63mhGylrmXUxK/IAXSIf87QIxVfZldWf4QsOafY6vV3bX8aMHSvNrA== | |
626 | +"@babel/plugin-transform-duplicate-keys@^7.14.5": | |
627 | + version "7.14.5" | |
628 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.14.5.tgz#365a4844881bdf1501e3a9f0270e7f0f91177954" | |
629 | + integrity sha512-iJjbI53huKbPDAsJ8EmVmvCKeeq21bAze4fu9GBQtSLqfvzj2oRuHVx4ZkDwEhg1htQ+5OBZh/Ab0XDf5iBZ7A== | |
805 | 630 | dependencies: |
806 | - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.12.13" | |
807 | - "@babel/helper-plugin-utils" "^7.12.13" | |
631 | + "@babel/helper-plugin-utils" "^7.14.5" | |
808 | 632 | |
809 | -"@babel/plugin-transform-for-of@^7.13.0": | |
810 | - version "7.13.0" | |
811 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.13.0.tgz#c799f881a8091ac26b54867a845c3e97d2696062" | |
812 | - integrity sha512-IHKT00mwUVYE0zzbkDgNRP6SRzvfGCYsOxIRz8KsiaaHCcT9BWIkO+H9QRJseHBLOGBZkHUdHiqj6r0POsdytg== | |
633 | +"@babel/plugin-transform-exponentiation-operator@^7.14.5": | |
634 | + version "7.14.5" | |
635 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.14.5.tgz#5154b8dd6a3dfe6d90923d61724bd3deeb90b493" | |
636 | + integrity sha512-jFazJhMBc9D27o9jDnIE5ZErI0R0m7PbKXVq77FFvqFbzvTMuv8jaAwLZ5PviOLSFttqKIW0/wxNSDbjLk0tYA== | |
813 | 637 | dependencies: |
814 | - "@babel/helper-plugin-utils" "^7.13.0" | |
638 | + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.14.5" | |
639 | + "@babel/helper-plugin-utils" "^7.14.5" | |
815 | 640 | |
816 | -"@babel/plugin-transform-function-name@^7.12.13": | |
817 | - version "7.12.13" | |
818 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.13.tgz#bb024452f9aaed861d374c8e7a24252ce3a50051" | |
819 | - integrity sha512-6K7gZycG0cmIwwF7uMK/ZqeCikCGVBdyP2J5SKNCXO5EOHcqi+z7Jwf8AmyDNcBgxET8DrEtCt/mPKPyAzXyqQ== | |
641 | +"@babel/plugin-transform-for-of@^7.14.5": | |
642 | + version "7.14.5" | |
643 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.14.5.tgz#dae384613de8f77c196a8869cbf602a44f7fc0eb" | |
644 | + integrity sha512-CfmqxSUZzBl0rSjpoQSFoR9UEj3HzbGuGNL21/iFTmjb5gFggJp3ph0xR1YBhexmLoKRHzgxuFvty2xdSt6gTA== | |
820 | 645 | dependencies: |
821 | - "@babel/helper-function-name" "^7.12.13" | |
822 | - "@babel/helper-plugin-utils" "^7.12.13" | |
646 | + "@babel/helper-plugin-utils" "^7.14.5" | |
823 | 647 | |
824 | -"@babel/plugin-transform-literals@^7.12.13": | |
825 | - version "7.12.13" | |
826 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.13.tgz#2ca45bafe4a820197cf315794a4d26560fe4bdb9" | |
827 | - integrity sha512-FW+WPjSR7hiUxMcKqyNjP05tQ2kmBCdpEpZHY1ARm96tGQCCBvXKnpjILtDplUnJ/eHZ0lALLM+d2lMFSpYJrQ== | |
648 | +"@babel/plugin-transform-function-name@^7.14.5": | |
649 | + version "7.14.5" | |
650 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.14.5.tgz#e81c65ecb900746d7f31802f6bed1f52d915d6f2" | |
651 | + integrity sha512-vbO6kv0fIzZ1GpmGQuvbwwm+O4Cbm2NrPzwlup9+/3fdkuzo1YqOZcXw26+YUJB84Ja7j9yURWposEHLYwxUfQ== | |
828 | 652 | dependencies: |
829 | - "@babel/helper-plugin-utils" "^7.12.13" | |
653 | + "@babel/helper-function-name" "^7.14.5" | |
654 | + "@babel/helper-plugin-utils" "^7.14.5" | |
830 | 655 | |
831 | -"@babel/plugin-transform-member-expression-literals@^7.12.13": | |
832 | - version "7.12.13" | |
833 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.13.tgz#5ffa66cd59b9e191314c9f1f803b938e8c081e40" | |
834 | - integrity sha512-kxLkOsg8yir4YeEPHLuO2tXP9R/gTjpuTOjshqSpELUN3ZAg2jfDnKUvzzJxObun38sw3wm4Uu69sX/zA7iRvg== | |
656 | +"@babel/plugin-transform-literals@^7.14.5": | |
657 | + version "7.14.5" | |
658 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.14.5.tgz#41d06c7ff5d4d09e3cf4587bd3ecf3930c730f78" | |
659 | + integrity sha512-ql33+epql2F49bi8aHXxvLURHkxJbSmMKl9J5yHqg4PLtdE6Uc48CH1GS6TQvZ86eoB/ApZXwm7jlA+B3kra7A== | |
835 | 660 | dependencies: |
836 | - "@babel/helper-plugin-utils" "^7.12.13" | |
661 | + "@babel/helper-plugin-utils" "^7.14.5" | |
837 | 662 | |
838 | -"@babel/plugin-transform-modules-amd@^7.13.0": | |
839 | - version "7.13.0" | |
840 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.13.0.tgz#19f511d60e3d8753cc5a6d4e775d3a5184866cc3" | |
841 | - integrity sha512-EKy/E2NHhY/6Vw5d1k3rgoobftcNUmp9fGjb9XZwQLtTctsRBOTRO7RHHxfIky1ogMN5BxN7p9uMA3SzPfotMQ== | |
663 | +"@babel/plugin-transform-member-expression-literals@^7.14.5": | |
664 | + version "7.14.5" | |
665 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.14.5.tgz#b39cd5212a2bf235a617d320ec2b48bcc091b8a7" | |
666 | + integrity sha512-WkNXxH1VXVTKarWFqmso83xl+2V3Eo28YY5utIkbsmXoItO8Q3aZxN4BTS2k0hz9dGUloHK26mJMyQEYfkn/+Q== | |
842 | 667 | dependencies: |
843 | - "@babel/helper-module-transforms" "^7.13.0" | |
844 | - "@babel/helper-plugin-utils" "^7.13.0" | |
845 | - babel-plugin-dynamic-import-node "^2.3.3" | |
668 | + "@babel/helper-plugin-utils" "^7.14.5" | |
846 | 669 | |
847 | -"@babel/plugin-transform-modules-commonjs@^7.13.8": | |
848 | - version "7.13.8" | |
849 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.13.8.tgz#7b01ad7c2dcf2275b06fa1781e00d13d420b3e1b" | |
850 | - integrity sha512-9QiOx4MEGglfYZ4XOnU79OHr6vIWUakIj9b4mioN8eQIoEh+pf5p/zEB36JpDFWA12nNMiRf7bfoRvl9Rn79Bw== | |
670 | +"@babel/plugin-transform-modules-amd@^7.14.5": | |
671 | + version "7.14.5" | |
672 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.5.tgz#4fd9ce7e3411cb8b83848480b7041d83004858f7" | |
673 | + integrity sha512-3lpOU8Vxmp3roC4vzFpSdEpGUWSMsHFreTWOMMLzel2gNGfHE5UWIh/LN6ghHs2xurUp4jRFYMUIZhuFbody1g== | |
851 | 674 | dependencies: |
852 | - "@babel/helper-module-transforms" "^7.13.0" | |
853 | - "@babel/helper-plugin-utils" "^7.13.0" | |
854 | - "@babel/helper-simple-access" "^7.12.13" | |
675 | + "@babel/helper-module-transforms" "^7.14.5" | |
676 | + "@babel/helper-plugin-utils" "^7.14.5" | |
855 | 677 | babel-plugin-dynamic-import-node "^2.3.3" |
856 | 678 | |
857 | -"@babel/plugin-transform-modules-commonjs@^7.2.0": | |
679 | +"@babel/plugin-transform-modules-commonjs@^7.14.5": | |
858 | 680 | version "7.14.5" |
859 | 681 | resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.14.5.tgz#7aaee0ea98283de94da98b28f8c35701429dad97" |
860 | 682 | integrity sha512-en8GfBtgnydoao2PS+87mKyw62k02k7kJ9ltbKe0fXTHrQmG6QZZflYuGI1VVG7sVpx4E1n7KBpNlPb8m78J+A== |
... | ... | @@ -864,160 +686,163 @@ |
864 | 686 | "@babel/helper-simple-access" "^7.14.5" |
865 | 687 | babel-plugin-dynamic-import-node "^2.3.3" |
866 | 688 | |
867 | -"@babel/plugin-transform-modules-systemjs@^7.13.8": | |
868 | - version "7.13.8" | |
869 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.13.8.tgz#6d066ee2bff3c7b3d60bf28dec169ad993831ae3" | |
870 | - integrity sha512-hwqctPYjhM6cWvVIlOIe27jCIBgHCsdH2xCJVAYQm7V5yTMoilbVMi9f6wKg0rpQAOn6ZG4AOyvCqFF/hUh6+A== | |
689 | +"@babel/plugin-transform-modules-systemjs@^7.14.5": | |
690 | + version "7.14.5" | |
691 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.14.5.tgz#c75342ef8b30dcde4295d3401aae24e65638ed29" | |
692 | + integrity sha512-mNMQdvBEE5DcMQaL5LbzXFMANrQjd2W7FPzg34Y4yEz7dBgdaC+9B84dSO+/1Wba98zoDbInctCDo4JGxz1VYA== | |
871 | 693 | dependencies: |
872 | - "@babel/helper-hoist-variables" "^7.13.0" | |
873 | - "@babel/helper-module-transforms" "^7.13.0" | |
874 | - "@babel/helper-plugin-utils" "^7.13.0" | |
875 | - "@babel/helper-validator-identifier" "^7.12.11" | |
694 | + "@babel/helper-hoist-variables" "^7.14.5" | |
695 | + "@babel/helper-module-transforms" "^7.14.5" | |
696 | + "@babel/helper-plugin-utils" "^7.14.5" | |
697 | + "@babel/helper-validator-identifier" "^7.14.5" | |
876 | 698 | babel-plugin-dynamic-import-node "^2.3.3" |
877 | 699 | |
878 | -"@babel/plugin-transform-modules-umd@^7.13.0": | |
879 | - version "7.13.0" | |
880 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.13.0.tgz#8a3d96a97d199705b9fd021580082af81c06e70b" | |
881 | - integrity sha512-D/ILzAh6uyvkWjKKyFE/W0FzWwasv6vPTSqPcjxFqn6QpX3u8DjRVliq4F2BamO2Wee/om06Vyy+vPkNrd4wxw== | |
700 | +"@babel/plugin-transform-modules-umd@^7.14.5": | |
701 | + version "7.14.5" | |
702 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.5.tgz#fb662dfee697cce274a7cda525190a79096aa6e0" | |
703 | + integrity sha512-RfPGoagSngC06LsGUYyM9QWSXZ8MysEjDJTAea1lqRjNECE3y0qIJF/qbvJxc4oA4s99HumIMdXOrd+TdKaAAA== | |
882 | 704 | dependencies: |
883 | - "@babel/helper-module-transforms" "^7.13.0" | |
884 | - "@babel/helper-plugin-utils" "^7.13.0" | |
705 | + "@babel/helper-module-transforms" "^7.14.5" | |
706 | + "@babel/helper-plugin-utils" "^7.14.5" | |
885 | 707 | |
886 | -"@babel/plugin-transform-named-capturing-groups-regex@^7.12.13": | |
887 | - version "7.12.13" | |
888 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.13.tgz#2213725a5f5bbbe364b50c3ba5998c9599c5c9d9" | |
889 | - integrity sha512-Xsm8P2hr5hAxyYblrfACXpQKdQbx4m2df9/ZZSQ8MAhsadw06+jW7s9zsSw6he+mJZXRlVMyEnVktJo4zjk1WA== | |
708 | +"@babel/plugin-transform-named-capturing-groups-regex@^7.14.5": | |
709 | + version "7.14.5" | |
710 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.14.5.tgz#d537e8ee083ee6f6aa4f4eef9d2081d555746e4c" | |
711 | + integrity sha512-+Xe5+6MWFo311U8SchgeX5c1+lJM+eZDBZgD+tvXu9VVQPXwwVzeManMMjYX6xw2HczngfOSZjoFYKwdeB/Jvw== | |
890 | 712 | dependencies: |
891 | - "@babel/helper-create-regexp-features-plugin" "^7.12.13" | |
713 | + "@babel/helper-create-regexp-features-plugin" "^7.14.5" | |
892 | 714 | |
893 | -"@babel/plugin-transform-new-target@^7.12.13": | |
894 | - version "7.12.13" | |
895 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.13.tgz#e22d8c3af24b150dd528cbd6e685e799bf1c351c" | |
896 | - integrity sha512-/KY2hbLxrG5GTQ9zzZSc3xWiOy379pIETEhbtzwZcw9rvuaVV4Fqy7BYGYOWZnaoXIQYbbJ0ziXLa/sKcGCYEQ== | |
715 | +"@babel/plugin-transform-new-target@^7.14.5": | |
716 | + version "7.14.5" | |
717 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.14.5.tgz#31bdae8b925dc84076ebfcd2a9940143aed7dbf8" | |
718 | + integrity sha512-Nx054zovz6IIRWEB49RDRuXGI4Gy0GMgqG0cII9L3MxqgXz/+rgII+RU58qpo4g7tNEx1jG7rRVH4ihZoP4esQ== | |
897 | 719 | dependencies: |
898 | - "@babel/helper-plugin-utils" "^7.12.13" | |
720 | + "@babel/helper-plugin-utils" "^7.14.5" | |
899 | 721 | |
900 | -"@babel/plugin-transform-object-super@^7.12.13": | |
901 | - version "7.12.13" | |
902 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.13.tgz#b4416a2d63b8f7be314f3d349bd55a9c1b5171f7" | |
903 | - integrity sha512-JzYIcj3XtYspZDV8j9ulnoMPZZnF/Cj0LUxPOjR89BdBVx+zYJI9MdMIlUZjbXDX+6YVeS6I3e8op+qQ3BYBoQ== | |
722 | +"@babel/plugin-transform-object-super@^7.14.5": | |
723 | + version "7.14.5" | |
724 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.14.5.tgz#d0b5faeac9e98597a161a9cf78c527ed934cdc45" | |
725 | + integrity sha512-MKfOBWzK0pZIrav9z/hkRqIk/2bTv9qvxHzPQc12RcVkMOzpIKnFCNYJip00ssKWYkd8Sf5g0Wr7pqJ+cmtuFg== | |
904 | 726 | dependencies: |
905 | - "@babel/helper-plugin-utils" "^7.12.13" | |
906 | - "@babel/helper-replace-supers" "^7.12.13" | |
727 | + "@babel/helper-plugin-utils" "^7.14.5" | |
728 | + "@babel/helper-replace-supers" "^7.14.5" | |
907 | 729 | |
908 | -"@babel/plugin-transform-parameters@^7.13.0": | |
909 | - version "7.13.0" | |
910 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.13.0.tgz#8fa7603e3097f9c0b7ca1a4821bc2fb52e9e5007" | |
911 | - integrity sha512-Jt8k/h/mIwE2JFEOb3lURoY5C85ETcYPnbuAJ96zRBzh1XHtQZfs62ChZ6EP22QlC8c7Xqr9q+e1SU5qttwwjw== | |
730 | +"@babel/plugin-transform-parameters@^7.14.5": | |
731 | + version "7.14.5" | |
732 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.14.5.tgz#49662e86a1f3ddccac6363a7dfb1ff0a158afeb3" | |
733 | + integrity sha512-Tl7LWdr6HUxTmzQtzuU14SqbgrSKmaR77M0OKyq4njZLQTPfOvzblNKyNkGwOfEFCEx7KeYHQHDI0P3F02IVkA== | |
912 | 734 | dependencies: |
913 | - "@babel/helper-plugin-utils" "^7.13.0" | |
735 | + "@babel/helper-plugin-utils" "^7.14.5" | |
914 | 736 | |
915 | -"@babel/plugin-transform-property-literals@^7.12.13": | |
916 | - version "7.12.13" | |
917 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.13.tgz#4e6a9e37864d8f1b3bc0e2dce7bf8857db8b1a81" | |
918 | - integrity sha512-nqVigwVan+lR+g8Fj8Exl0UQX2kymtjcWfMOYM1vTYEKujeyv2SkMgazf2qNcK7l4SDiKyTA/nHCPqL4e2zo1A== | |
737 | +"@babel/plugin-transform-property-literals@^7.14.5": | |
738 | + version "7.14.5" | |
739 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.14.5.tgz#0ddbaa1f83db3606f1cdf4846fa1dfb473458b34" | |
740 | + integrity sha512-r1uilDthkgXW8Z1vJz2dKYLV1tuw2xsbrp3MrZmD99Wh9vsfKoob+JTgri5VUb/JqyKRXotlOtwgu4stIYCmnw== | |
919 | 741 | dependencies: |
920 | - "@babel/helper-plugin-utils" "^7.12.13" | |
742 | + "@babel/helper-plugin-utils" "^7.14.5" | |
921 | 743 | |
922 | -"@babel/plugin-transform-regenerator@^7.13.15": | |
923 | - version "7.13.15" | |
924 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.13.15.tgz#e5eb28945bf8b6563e7f818945f966a8d2997f39" | |
925 | - integrity sha512-Bk9cOLSz8DiurcMETZ8E2YtIVJbFCPGW28DJWUakmyVWtQSm6Wsf0p4B4BfEr/eL2Nkhe/CICiUiMOCi1TPhuQ== | |
744 | +"@babel/plugin-transform-regenerator@^7.14.5": | |
745 | + version "7.14.5" | |
746 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.14.5.tgz#9676fd5707ed28f522727c5b3c0aa8544440b04f" | |
747 | + integrity sha512-NVIY1W3ITDP5xQl50NgTKlZ0GrotKtLna08/uGY6ErQt6VEQZXla86x/CTddm5gZdcr+5GSsvMeTmWA5Ii6pkg== | |
926 | 748 | dependencies: |
927 | 749 | regenerator-transform "^0.14.2" |
928 | 750 | |
929 | -"@babel/plugin-transform-reserved-words@^7.12.13": | |
930 | - version "7.12.13" | |
931 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.13.tgz#7d9988d4f06e0fe697ea1d9803188aa18b472695" | |
932 | - integrity sha512-xhUPzDXxZN1QfiOy/I5tyye+TRz6lA7z6xaT4CLOjPRMVg1ldRf0LHw0TDBpYL4vG78556WuHdyO9oi5UmzZBg== | |
751 | +"@babel/plugin-transform-reserved-words@^7.14.5": | |
752 | + version "7.14.5" | |
753 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.14.5.tgz#c44589b661cfdbef8d4300dcc7469dffa92f8304" | |
754 | + integrity sha512-cv4F2rv1nD4qdexOGsRQXJrOcyb5CrgjUH9PKrrtyhSDBNWGxd0UIitjyJiWagS+EbUGjG++22mGH1Pub8D6Vg== | |
933 | 755 | dependencies: |
934 | - "@babel/helper-plugin-utils" "^7.12.13" | |
756 | + "@babel/helper-plugin-utils" "^7.14.5" | |
935 | 757 | |
936 | -"@babel/plugin-transform-shorthand-properties@^7.12.13": | |
937 | - version "7.12.13" | |
938 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.13.tgz#db755732b70c539d504c6390d9ce90fe64aff7ad" | |
939 | - integrity sha512-xpL49pqPnLtf0tVluuqvzWIgLEhuPpZzvs2yabUHSKRNlN7ScYU7aMlmavOeyXJZKgZKQRBlh8rHbKiJDraTSw== | |
758 | +"@babel/plugin-transform-shorthand-properties@^7.14.5": | |
759 | + version "7.14.5" | |
760 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.14.5.tgz#97f13855f1409338d8cadcbaca670ad79e091a58" | |
761 | + integrity sha512-xLucks6T1VmGsTB+GWK5Pl9Jl5+nRXD1uoFdA5TSO6xtiNjtXTjKkmPdFXVLGlK5A2/or/wQMKfmQ2Y0XJfn5g== | |
940 | 762 | dependencies: |
941 | - "@babel/helper-plugin-utils" "^7.12.13" | |
763 | + "@babel/helper-plugin-utils" "^7.14.5" | |
942 | 764 | |
943 | -"@babel/plugin-transform-spread@^7.13.0": | |
944 | - version "7.13.0" | |
945 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.13.0.tgz#84887710e273c1815ace7ae459f6f42a5d31d5fd" | |
946 | - integrity sha512-V6vkiXijjzYeFmQTr3dBxPtZYLPcUfY34DebOU27jIl2M/Y8Egm52Hw82CSjjPqd54GTlJs5x+CR7HeNr24ckg== | |
765 | +"@babel/plugin-transform-spread@^7.14.5": | |
766 | + version "7.14.6" | |
767 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.14.6.tgz#6bd40e57fe7de94aa904851963b5616652f73144" | |
768 | + integrity sha512-Zr0x0YroFJku7n7+/HH3A2eIrGMjbmAIbJSVv0IZ+t3U2WUQUA64S/oeied2e+MaGSjmt4alzBCsK9E8gh+fag== | |
947 | 769 | dependencies: |
948 | - "@babel/helper-plugin-utils" "^7.13.0" | |
949 | - "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1" | |
770 | + "@babel/helper-plugin-utils" "^7.14.5" | |
771 | + "@babel/helper-skip-transparent-expression-wrappers" "^7.14.5" | |
950 | 772 | |
951 | -"@babel/plugin-transform-sticky-regex@^7.12.13": | |
952 | - version "7.12.13" | |
953 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.13.tgz#760ffd936face73f860ae646fb86ee82f3d06d1f" | |
954 | - integrity sha512-Jc3JSaaWT8+fr7GRvQP02fKDsYk4K/lYwWq38r/UGfaxo89ajud321NH28KRQ7xy1Ybc0VUE5Pz8psjNNDUglg== | |
773 | +"@babel/plugin-transform-sticky-regex@^7.14.5": | |
774 | + version "7.14.5" | |
775 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.14.5.tgz#5b617542675e8b7761294381f3c28c633f40aeb9" | |
776 | + integrity sha512-Z7F7GyvEMzIIbwnziAZmnSNpdijdr4dWt+FJNBnBLz5mwDFkqIXU9wmBcWWad3QeJF5hMTkRe4dAq2sUZiG+8A== | |
955 | 777 | dependencies: |
956 | - "@babel/helper-plugin-utils" "^7.12.13" | |
778 | + "@babel/helper-plugin-utils" "^7.14.5" | |
957 | 779 | |
958 | -"@babel/plugin-transform-template-literals@^7.13.0": | |
959 | - version "7.13.0" | |
960 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.13.0.tgz#a36049127977ad94438dee7443598d1cefdf409d" | |
961 | - integrity sha512-d67umW6nlfmr1iehCcBv69eSUSySk1EsIS8aTDX4Xo9qajAh6mYtcl4kJrBkGXuxZPEgVr7RVfAvNW6YQkd4Mw== | |
780 | +"@babel/plugin-transform-template-literals@^7.14.5": | |
781 | + version "7.14.5" | |
782 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.14.5.tgz#a5f2bc233937d8453885dc736bdd8d9ffabf3d93" | |
783 | + integrity sha512-22btZeURqiepOfuy/VkFr+zStqlujWaarpMErvay7goJS6BWwdd6BY9zQyDLDa4x2S3VugxFb162IZ4m/S/+Gg== | |
962 | 784 | dependencies: |
963 | - "@babel/helper-plugin-utils" "^7.13.0" | |
785 | + "@babel/helper-plugin-utils" "^7.14.5" | |
964 | 786 | |
965 | -"@babel/plugin-transform-typeof-symbol@^7.12.13": | |
966 | - version "7.12.13" | |
967 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.13.tgz#785dd67a1f2ea579d9c2be722de8c84cb85f5a7f" | |
968 | - integrity sha512-eKv/LmUJpMnu4npgfvs3LiHhJua5fo/CysENxa45YCQXZwKnGCQKAg87bvoqSW1fFT+HA32l03Qxsm8ouTY3ZQ== | |
787 | +"@babel/plugin-transform-typeof-symbol@^7.14.5": | |
788 | + version "7.14.5" | |
789 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.14.5.tgz#39af2739e989a2bd291bf6b53f16981423d457d4" | |
790 | + integrity sha512-lXzLD30ffCWseTbMQzrvDWqljvZlHkXU+CnseMhkMNqU1sASnCsz3tSzAaH3vCUXb9PHeUb90ZT1BdFTm1xxJw== | |
969 | 791 | dependencies: |
970 | - "@babel/helper-plugin-utils" "^7.12.13" | |
792 | + "@babel/helper-plugin-utils" "^7.14.5" | |
971 | 793 | |
972 | 794 | "@babel/plugin-transform-typescript@^7.12.1": |
973 | - version "7.13.0" | |
974 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.13.0.tgz#4a498e1f3600342d2a9e61f60131018f55774853" | |
975 | - integrity sha512-elQEwluzaU8R8dbVuW2Q2Y8Nznf7hnjM7+DSCd14Lo5fF63C9qNLbwZYbmZrtV9/ySpSUpkRpQXvJb6xyu4hCQ== | |
795 | + version "7.14.6" | |
796 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.14.6.tgz#6e9c2d98da2507ebe0a883b100cde3c7279df36c" | |
797 | + integrity sha512-XlTdBq7Awr4FYIzqhmYY80WN0V0azF74DMPyFqVHBvf81ZUgc4X7ZOpx6O8eLDK6iM5cCQzeyJw0ynTaefixRA== | |
976 | 798 | dependencies: |
977 | - "@babel/helper-create-class-features-plugin" "^7.13.0" | |
978 | - "@babel/helper-plugin-utils" "^7.13.0" | |
979 | - "@babel/plugin-syntax-typescript" "^7.12.13" | |
799 | + "@babel/helper-create-class-features-plugin" "^7.14.6" | |
800 | + "@babel/helper-plugin-utils" "^7.14.5" | |
801 | + "@babel/plugin-syntax-typescript" "^7.14.5" | |
980 | 802 | |
981 | -"@babel/plugin-transform-unicode-escapes@^7.12.13": | |
982 | - version "7.12.13" | |
983 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.13.tgz#840ced3b816d3b5127dd1d12dcedc5dead1a5e74" | |
984 | - integrity sha512-0bHEkdwJ/sN/ikBHfSmOXPypN/beiGqjo+o4/5K+vxEFNPRPdImhviPakMKG4x96l85emoa0Z6cDflsdBusZbw== | |
803 | +"@babel/plugin-transform-unicode-escapes@^7.14.5": | |
804 | + version "7.14.5" | |
805 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.14.5.tgz#9d4bd2a681e3c5d7acf4f57fa9e51175d91d0c6b" | |
806 | + integrity sha512-crTo4jATEOjxj7bt9lbYXcBAM3LZaUrbP2uUdxb6WIorLmjNKSpHfIybgY4B8SRpbf8tEVIWH3Vtm7ayCrKocA== | |
985 | 807 | dependencies: |
986 | - "@babel/helper-plugin-utils" "^7.12.13" | |
808 | + "@babel/helper-plugin-utils" "^7.14.5" | |
987 | 809 | |
988 | -"@babel/plugin-transform-unicode-regex@^7.12.13": | |
989 | - version "7.12.13" | |
990 | - resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.13.tgz#b52521685804e155b1202e83fc188d34bb70f5ac" | |
991 | - integrity sha512-mDRzSNY7/zopwisPZ5kM9XKCfhchqIYwAKRERtEnhYscZB79VRekuRSoYbN0+KVe3y8+q1h6A4svXtP7N+UoCA== | |
810 | +"@babel/plugin-transform-unicode-regex@^7.14.5": | |
811 | + version "7.14.5" | |
812 | + resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.14.5.tgz#4cd09b6c8425dd81255c7ceb3fb1836e7414382e" | |
813 | + integrity sha512-UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw== | |
992 | 814 | dependencies: |
993 | - "@babel/helper-create-regexp-features-plugin" "^7.12.13" | |
994 | - "@babel/helper-plugin-utils" "^7.12.13" | |
815 | + "@babel/helper-create-regexp-features-plugin" "^7.14.5" | |
816 | + "@babel/helper-plugin-utils" "^7.14.5" | |
995 | 817 | |
996 | 818 | "@babel/preset-env@^7.11.0": |
997 | - version "7.13.15" | |
998 | - resolved "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.13.15.tgz#c8a6eb584f96ecba183d3d414a83553a599f478f" | |
999 | - integrity sha512-D4JAPMXcxk69PKe81jRJ21/fP/uYdcTZ3hJDF5QX2HSI9bBxxYw/dumdR6dGumhjxlprHPE4XWoPaqzZUVy2MA== | |
819 | + version "7.14.5" | |
820 | + resolved "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.14.5.tgz#c0c84e763661fd0e74292c3d511cb33b0c668997" | |
821 | + integrity sha512-ci6TsS0bjrdPpWGnQ+m4f+JSSzDKlckqKIJJt9UZ/+g7Zz9k0N8lYU8IeLg/01o2h8LyNZDMLGgRLDTxpudLsA== | |
1000 | 822 | dependencies: |
1001 | - "@babel/compat-data" "^7.13.15" | |
1002 | - "@babel/helper-compilation-targets" "^7.13.13" | |
1003 | - "@babel/helper-plugin-utils" "^7.13.0" | |
1004 | - "@babel/helper-validator-option" "^7.12.17" | |
1005 | - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.13.12" | |
1006 | - "@babel/plugin-proposal-async-generator-functions" "^7.13.15" | |
1007 | - "@babel/plugin-proposal-class-properties" "^7.13.0" | |
1008 | - "@babel/plugin-proposal-dynamic-import" "^7.13.8" | |
1009 | - "@babel/plugin-proposal-export-namespace-from" "^7.12.13" | |
1010 | - "@babel/plugin-proposal-json-strings" "^7.13.8" | |
1011 | - "@babel/plugin-proposal-logical-assignment-operators" "^7.13.8" | |
1012 | - "@babel/plugin-proposal-nullish-coalescing-operator" "^7.13.8" | |
1013 | - "@babel/plugin-proposal-numeric-separator" "^7.12.13" | |
1014 | - "@babel/plugin-proposal-object-rest-spread" "^7.13.8" | |
1015 | - "@babel/plugin-proposal-optional-catch-binding" "^7.13.8" | |
1016 | - "@babel/plugin-proposal-optional-chaining" "^7.13.12" | |
1017 | - "@babel/plugin-proposal-private-methods" "^7.13.0" | |
1018 | - "@babel/plugin-proposal-unicode-property-regex" "^7.12.13" | |
823 | + "@babel/compat-data" "^7.14.5" | |
824 | + "@babel/helper-compilation-targets" "^7.14.5" | |
825 | + "@babel/helper-plugin-utils" "^7.14.5" | |
826 | + "@babel/helper-validator-option" "^7.14.5" | |
827 | + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.14.5" | |
828 | + "@babel/plugin-proposal-async-generator-functions" "^7.14.5" | |
829 | + "@babel/plugin-proposal-class-properties" "^7.14.5" | |
830 | + "@babel/plugin-proposal-class-static-block" "^7.14.5" | |
831 | + "@babel/plugin-proposal-dynamic-import" "^7.14.5" | |
832 | + "@babel/plugin-proposal-export-namespace-from" "^7.14.5" | |
833 | + "@babel/plugin-proposal-json-strings" "^7.14.5" | |
834 | + "@babel/plugin-proposal-logical-assignment-operators" "^7.14.5" | |
835 | + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.14.5" | |
836 | + "@babel/plugin-proposal-numeric-separator" "^7.14.5" | |
837 | + "@babel/plugin-proposal-object-rest-spread" "^7.14.5" | |
838 | + "@babel/plugin-proposal-optional-catch-binding" "^7.14.5" | |
839 | + "@babel/plugin-proposal-optional-chaining" "^7.14.5" | |
840 | + "@babel/plugin-proposal-private-methods" "^7.14.5" | |
841 | + "@babel/plugin-proposal-private-property-in-object" "^7.14.5" | |
842 | + "@babel/plugin-proposal-unicode-property-regex" "^7.14.5" | |
1019 | 843 | "@babel/plugin-syntax-async-generators" "^7.8.4" |
1020 | 844 | "@babel/plugin-syntax-class-properties" "^7.12.13" |
845 | + "@babel/plugin-syntax-class-static-block" "^7.14.5" | |
1021 | 846 | "@babel/plugin-syntax-dynamic-import" "^7.8.3" |
1022 | 847 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3" |
1023 | 848 | "@babel/plugin-syntax-json-strings" "^7.8.3" |
... | ... | @@ -1027,45 +852,46 @@ |
1027 | 852 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3" |
1028 | 853 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" |
1029 | 854 | "@babel/plugin-syntax-optional-chaining" "^7.8.3" |
1030 | - "@babel/plugin-syntax-top-level-await" "^7.12.13" | |
1031 | - "@babel/plugin-transform-arrow-functions" "^7.13.0" | |
1032 | - "@babel/plugin-transform-async-to-generator" "^7.13.0" | |
1033 | - "@babel/plugin-transform-block-scoped-functions" "^7.12.13" | |
1034 | - "@babel/plugin-transform-block-scoping" "^7.12.13" | |
1035 | - "@babel/plugin-transform-classes" "^7.13.0" | |
1036 | - "@babel/plugin-transform-computed-properties" "^7.13.0" | |
1037 | - "@babel/plugin-transform-destructuring" "^7.13.0" | |
1038 | - "@babel/plugin-transform-dotall-regex" "^7.12.13" | |
1039 | - "@babel/plugin-transform-duplicate-keys" "^7.12.13" | |
1040 | - "@babel/plugin-transform-exponentiation-operator" "^7.12.13" | |
1041 | - "@babel/plugin-transform-for-of" "^7.13.0" | |
1042 | - "@babel/plugin-transform-function-name" "^7.12.13" | |
1043 | - "@babel/plugin-transform-literals" "^7.12.13" | |
1044 | - "@babel/plugin-transform-member-expression-literals" "^7.12.13" | |
1045 | - "@babel/plugin-transform-modules-amd" "^7.13.0" | |
1046 | - "@babel/plugin-transform-modules-commonjs" "^7.13.8" | |
1047 | - "@babel/plugin-transform-modules-systemjs" "^7.13.8" | |
1048 | - "@babel/plugin-transform-modules-umd" "^7.13.0" | |
1049 | - "@babel/plugin-transform-named-capturing-groups-regex" "^7.12.13" | |
1050 | - "@babel/plugin-transform-new-target" "^7.12.13" | |
1051 | - "@babel/plugin-transform-object-super" "^7.12.13" | |
1052 | - "@babel/plugin-transform-parameters" "^7.13.0" | |
1053 | - "@babel/plugin-transform-property-literals" "^7.12.13" | |
1054 | - "@babel/plugin-transform-regenerator" "^7.13.15" | |
1055 | - "@babel/plugin-transform-reserved-words" "^7.12.13" | |
1056 | - "@babel/plugin-transform-shorthand-properties" "^7.12.13" | |
1057 | - "@babel/plugin-transform-spread" "^7.13.0" | |
1058 | - "@babel/plugin-transform-sticky-regex" "^7.12.13" | |
1059 | - "@babel/plugin-transform-template-literals" "^7.13.0" | |
1060 | - "@babel/plugin-transform-typeof-symbol" "^7.12.13" | |
1061 | - "@babel/plugin-transform-unicode-escapes" "^7.12.13" | |
1062 | - "@babel/plugin-transform-unicode-regex" "^7.12.13" | |
855 | + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" | |
856 | + "@babel/plugin-syntax-top-level-await" "^7.14.5" | |
857 | + "@babel/plugin-transform-arrow-functions" "^7.14.5" | |
858 | + "@babel/plugin-transform-async-to-generator" "^7.14.5" | |
859 | + "@babel/plugin-transform-block-scoped-functions" "^7.14.5" | |
860 | + "@babel/plugin-transform-block-scoping" "^7.14.5" | |
861 | + "@babel/plugin-transform-classes" "^7.14.5" | |
862 | + "@babel/plugin-transform-computed-properties" "^7.14.5" | |
863 | + "@babel/plugin-transform-destructuring" "^7.14.5" | |
864 | + "@babel/plugin-transform-dotall-regex" "^7.14.5" | |
865 | + "@babel/plugin-transform-duplicate-keys" "^7.14.5" | |
866 | + "@babel/plugin-transform-exponentiation-operator" "^7.14.5" | |
867 | + "@babel/plugin-transform-for-of" "^7.14.5" | |
868 | + "@babel/plugin-transform-function-name" "^7.14.5" | |
869 | + "@babel/plugin-transform-literals" "^7.14.5" | |
870 | + "@babel/plugin-transform-member-expression-literals" "^7.14.5" | |
871 | + "@babel/plugin-transform-modules-amd" "^7.14.5" | |
872 | + "@babel/plugin-transform-modules-commonjs" "^7.14.5" | |
873 | + "@babel/plugin-transform-modules-systemjs" "^7.14.5" | |
874 | + "@babel/plugin-transform-modules-umd" "^7.14.5" | |
875 | + "@babel/plugin-transform-named-capturing-groups-regex" "^7.14.5" | |
876 | + "@babel/plugin-transform-new-target" "^7.14.5" | |
877 | + "@babel/plugin-transform-object-super" "^7.14.5" | |
878 | + "@babel/plugin-transform-parameters" "^7.14.5" | |
879 | + "@babel/plugin-transform-property-literals" "^7.14.5" | |
880 | + "@babel/plugin-transform-regenerator" "^7.14.5" | |
881 | + "@babel/plugin-transform-reserved-words" "^7.14.5" | |
882 | + "@babel/plugin-transform-shorthand-properties" "^7.14.5" | |
883 | + "@babel/plugin-transform-spread" "^7.14.5" | |
884 | + "@babel/plugin-transform-sticky-regex" "^7.14.5" | |
885 | + "@babel/plugin-transform-template-literals" "^7.14.5" | |
886 | + "@babel/plugin-transform-typeof-symbol" "^7.14.5" | |
887 | + "@babel/plugin-transform-unicode-escapes" "^7.14.5" | |
888 | + "@babel/plugin-transform-unicode-regex" "^7.14.5" | |
1063 | 889 | "@babel/preset-modules" "^0.1.4" |
1064 | - "@babel/types" "^7.13.14" | |
1065 | - babel-plugin-polyfill-corejs2 "^0.2.0" | |
1066 | - babel-plugin-polyfill-corejs3 "^0.2.0" | |
1067 | - babel-plugin-polyfill-regenerator "^0.2.0" | |
1068 | - core-js-compat "^3.9.0" | |
890 | + "@babel/types" "^7.14.5" | |
891 | + babel-plugin-polyfill-corejs2 "^0.2.2" | |
892 | + babel-plugin-polyfill-corejs3 "^0.2.2" | |
893 | + babel-plugin-polyfill-regenerator "^0.2.2" | |
894 | + core-js-compat "^3.14.0" | |
1069 | 895 | semver "^6.3.0" |
1070 | 896 | |
1071 | 897 | "@babel/preset-modules@^0.1.4": |
... | ... | @@ -1080,27 +906,18 @@ |
1080 | 906 | esutils "^2.0.2" |
1081 | 907 | |
1082 | 908 | "@babel/runtime@^7.10.5", "@babel/runtime@^7.11.2", "@babel/runtime@^7.8.4": |
1083 | - version "7.13.10" | |
1084 | - resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.13.10.tgz#47d42a57b6095f4468da440388fdbad8bebf0d7d" | |
1085 | - integrity sha512-4QPkjJq6Ns3V/RgpEahRk+AGfL0eO6RHHtTWoNNr5mO49G6B5+X6d6THgWEAvTrznU5xYpbAlVKRYcsCgh/Akw== | |
909 | + version "7.14.6" | |
910 | + resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.6.tgz#535203bc0892efc7dec60bdc27b2ecf6e409062d" | |
911 | + integrity sha512-/PCB2uJ7oM44tz8YhC4Z/6PeOKXp4K588f+5M3clr1M4zbqztlo0XEfJ2LEzj/FgwfgGcIdl8n7YYjTCI0BYwg== | |
1086 | 912 | dependencies: |
1087 | 913 | regenerator-runtime "^0.13.4" |
1088 | 914 | |
1089 | 915 | "@babel/standalone@^7.13.12": |
1090 | - version "7.13.15" | |
1091 | - resolved "https://registry.npmjs.org/@babel/standalone/-/standalone-7.13.15.tgz#21d86e0bfc94bd5c43f5db5a65084337cd336c33" | |
1092 | - integrity sha512-gKEx9cfMLJegKYYVnI1/4swITcWQa2/e0HlAU9S/+h94xGdyXtoYVQiz8gcXabQ/8MMlOwGclkRoTL3cAxplZg== | |
1093 | - | |
1094 | -"@babel/template@^7.0.0", "@babel/template@^7.12.13": | |
1095 | - version "7.12.13" | |
1096 | - resolved "https://registry.npmjs.org/@babel/template/-/template-7.12.13.tgz#530265be8a2589dbb37523844c5bcb55947fb327" | |
1097 | - integrity sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA== | |
1098 | - dependencies: | |
1099 | - "@babel/code-frame" "^7.12.13" | |
1100 | - "@babel/parser" "^7.12.13" | |
1101 | - "@babel/types" "^7.12.13" | |
916 | + version "7.14.6" | |
917 | + resolved "https://registry.npmjs.org/@babel/standalone/-/standalone-7.14.6.tgz#9070bd3cc2bb997d42e14bdf3b0d24a11b00242b" | |
918 | + integrity sha512-oAoSp82jhJFnXKybKTOj5QF04XxiDRyiiqrFToiU1udlBXuZoADlPmmnOcuqBrZxSNNUjzJIVK8vt838Qoqjxg== | |
1102 | 919 | |
1103 | -"@babel/template@^7.14.5", "@babel/template@^7.3.3": | |
920 | +"@babel/template@^7.0.0", "@babel/template@^7.14.5", "@babel/template@^7.3.3": | |
1104 | 921 | version "7.14.5" |
1105 | 922 | resolved "https://registry.npmjs.org/@babel/template/-/template-7.14.5.tgz#a9bc9d8b33354ff6e55a9c60d1109200a68974f4" |
1106 | 923 | integrity sha512-6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g== |
... | ... | @@ -1109,21 +926,7 @@ |
1109 | 926 | "@babel/parser" "^7.14.5" |
1110 | 927 | "@babel/types" "^7.14.5" |
1111 | 928 | |
1112 | -"@babel/traverse@^7.0.0", "@babel/traverse@^7.13.0", "@babel/traverse@^7.13.13", "@babel/traverse@^7.13.15": | |
1113 | - version "7.13.15" | |
1114 | - resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.13.15.tgz#c38bf7679334ddd4028e8e1f7b3aa5019f0dada7" | |
1115 | - integrity sha512-/mpZMNvj6bce59Qzl09fHEs8Bt8NnpEDQYleHUPZQ3wXUMvXi+HJPLars68oAbmp839fGoOkv2pSL2z9ajCIaQ== | |
1116 | - dependencies: | |
1117 | - "@babel/code-frame" "^7.12.13" | |
1118 | - "@babel/generator" "^7.13.9" | |
1119 | - "@babel/helper-function-name" "^7.12.13" | |
1120 | - "@babel/helper-split-export-declaration" "^7.12.13" | |
1121 | - "@babel/parser" "^7.13.15" | |
1122 | - "@babel/types" "^7.13.14" | |
1123 | - debug "^4.1.0" | |
1124 | - globals "^11.1.0" | |
1125 | - | |
1126 | -"@babel/traverse@^7.1.0", "@babel/traverse@^7.14.5", "@babel/traverse@^7.7.2": | |
929 | +"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.13.0", "@babel/traverse@^7.14.5", "@babel/traverse@^7.7.2": | |
1127 | 930 | version "7.14.5" |
1128 | 931 | resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.14.5.tgz#c111b0f58afab4fea3d3385a406f692748c59870" |
1129 | 932 | integrity sha512-G3BiS15vevepdmFqmUc9X+64y0viZYygubAMO8SvBmKARuF6CPSZtH4Ng9vi/lrWlZFGe3FWdXNy835akH8Glg== |
... | ... | @@ -1138,16 +941,7 @@ |
1138 | 941 | debug "^4.1.0" |
1139 | 942 | globals "^11.1.0" |
1140 | 943 | |
1141 | -"@babel/types@^7.0.0", "@babel/types@^7.12.0", "@babel/types@^7.12.1", "@babel/types@^7.12.13", "@babel/types@^7.13.0", "@babel/types@^7.13.12", "@babel/types@^7.13.14", "@babel/types@^7.4.4": | |
1142 | - version "7.13.14" | |
1143 | - resolved "https://registry.npmjs.org/@babel/types/-/types-7.13.14.tgz#c35a4abb15c7cd45a2746d78ab328e362cbace0d" | |
1144 | - integrity sha512-A2aa3QTkWoyqsZZFl56MLUsfmh7O0gN41IPvXAE/++8ojpbz12SszD7JEGYVdn4f9Kt4amIei07swF1h4AqmmQ== | |
1145 | - dependencies: | |
1146 | - "@babel/helper-validator-identifier" "^7.12.11" | |
1147 | - lodash "^4.17.19" | |
1148 | - to-fast-properties "^2.0.0" | |
1149 | - | |
1150 | -"@babel/types@^7.14.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3": | |
944 | +"@babel/types@^7.0.0", "@babel/types@^7.12.0", "@babel/types@^7.13.0", "@babel/types@^7.14.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.6.1", "@babel/types@^7.9.6": | |
1151 | 945 | version "7.14.5" |
1152 | 946 | resolved "https://registry.npmjs.org/@babel/types/-/types-7.14.5.tgz#3bb997ba829a2104cedb20689c4a5b8121d383ff" |
1153 | 947 | integrity sha512-M/NzBpEL95I5Hh4dwhin5JlE7EzO5PHMAuzjxss3tiOBD46KfQvVedN/3jEPZvdRvtsK2222XfdHogNIttFgcg== |
... | ... | @@ -1155,14 +949,6 @@ |
1155 | 949 | "@babel/helper-validator-identifier" "^7.14.5" |
1156 | 950 | to-fast-properties "^2.0.0" |
1157 | 951 | |
1158 | -"@babel/types@^7.6.1", "@babel/types@^7.9.6": | |
1159 | - version "7.14.1" | |
1160 | - resolved "https://registry.npmjs.org/@babel/types/-/types-7.14.1.tgz#095bd12f1c08ab63eff6e8f7745fa7c9cc15a9db" | |
1161 | - integrity sha512-S13Qe85fzLs3gYRUnrpyeIrBJIMYv33qSTg1qoBwiG6nPKwUWAD9odSzWhEedpwOIzSEI6gbdQIWEMiCI42iBA== | |
1162 | - dependencies: | |
1163 | - "@babel/helper-validator-identifier" "^7.14.0" | |
1164 | - to-fast-properties "^2.0.0" | |
1165 | - | |
1166 | 952 | "@bcoe/v8-coverage@^0.2.3": |
1167 | 953 | version "0.2.3" |
1168 | 954 | resolved "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" |
... | ... | @@ -1198,11 +984,6 @@ |
1198 | 984 | "@commitlint/types" "^12.1.4" |
1199 | 985 | lodash "^4.17.19" |
1200 | 986 | |
1201 | -"@commitlint/execute-rule@^12.1.1": | |
1202 | - version "12.1.1" | |
1203 | - resolved "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-12.1.1.tgz#8aad1d46fb78b3199e4ae36debdc93570bf765ea" | |
1204 | - integrity sha512-6mplMGvLCKF5LieL7BRhydpg32tm6LICnWQADrWU4S5g9PKi2utNvhiaiuNPoHUXr29RdbNaGNcyyPv8DSjJsQ== | |
1205 | - | |
1206 | 987 | "@commitlint/execute-rule@^12.1.4": |
1207 | 988 | version "12.1.4" |
1208 | 989 | resolved "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-12.1.4.tgz#9973b02e9779adbf1522ae9ac207a4815ec73de1" |
... | ... | @@ -1234,20 +1015,7 @@ |
1234 | 1015 | "@commitlint/rules" "^12.1.4" |
1235 | 1016 | "@commitlint/types" "^12.1.4" |
1236 | 1017 | |
1237 | -"@commitlint/load@>6.1.1": | |
1238 | - version "12.1.1" | |
1239 | - resolved "https://registry.npmjs.org/@commitlint/load/-/load-12.1.1.tgz#5a7fb8be11e520931d1237c5e8dc401b7cc9c6c1" | |
1240 | - integrity sha512-qOQtgNdJRULUQWP9jkpTwhj7aEtnqUtqeUpbQ9rjS+GIUST65HZbteNUX4S0mAEGPWqy2aK5xGd73cUfFSvuuw== | |
1241 | - dependencies: | |
1242 | - "@commitlint/execute-rule" "^12.1.1" | |
1243 | - "@commitlint/resolve-extends" "^12.1.1" | |
1244 | - "@commitlint/types" "^12.1.1" | |
1245 | - chalk "^4.0.0" | |
1246 | - cosmiconfig "^7.0.0" | |
1247 | - lodash "^4.17.19" | |
1248 | - resolve-from "^5.0.0" | |
1249 | - | |
1250 | -"@commitlint/load@^12.1.4": | |
1018 | +"@commitlint/load@>6.1.1", "@commitlint/load@^12.1.4": | |
1251 | 1019 | version "12.1.4" |
1252 | 1020 | resolved "https://registry.npmjs.org/@commitlint/load/-/load-12.1.4.tgz#e3c2dbc0e7d8d928f57a6878bd7219909fc0acab" |
1253 | 1021 | integrity sha512-Keszi0IOjRzKfxT+qES/n+KZyLrxy79RQz8wWgssCboYjKEp+wC+fLCgbiMCYjI5k31CIzIOq/16J7Ycr0C0EA== |
... | ... | @@ -1284,16 +1052,6 @@ |
1284 | 1052 | fs-extra "^9.0.0" |
1285 | 1053 | git-raw-commits "^2.0.0" |
1286 | 1054 | |
1287 | -"@commitlint/resolve-extends@^12.1.1": | |
1288 | - version "12.1.1" | |
1289 | - resolved "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-12.1.1.tgz#80a78b0940775d17888dd2985b52f93d93e0a885" | |
1290 | - integrity sha512-/DXRt0S0U3o9lq5cc8OL1Lkx0IjW0HcDWjUkUXshAajBIKBYSJB8x/loNCi1krNEJ8SwLXUEFt5OLxNO6wE9yQ== | |
1291 | - dependencies: | |
1292 | - import-fresh "^3.0.0" | |
1293 | - lodash "^4.17.19" | |
1294 | - resolve-from "^5.0.0" | |
1295 | - resolve-global "^1.0.0" | |
1296 | - | |
1297 | 1055 | "@commitlint/resolve-extends@^12.1.4": |
1298 | 1056 | version "12.1.4" |
1299 | 1057 | resolved "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-12.1.4.tgz#e758ed7dcdf942618b9f603a7c28a640f6a0802a" |
... | ... | @@ -1326,13 +1084,6 @@ |
1326 | 1084 | dependencies: |
1327 | 1085 | find-up "^5.0.0" |
1328 | 1086 | |
1329 | -"@commitlint/types@^12.1.1": | |
1330 | - version "12.1.1" | |
1331 | - resolved "https://registry.npmjs.org/@commitlint/types/-/types-12.1.1.tgz#8e651f6af0171cd4f8d464c6c37a7cf63ee071bd" | |
1332 | - integrity sha512-+qGH+s2Lo6qwacV2X3/ZypZwaAI84ift+1HBjXdXtI/q0F5NtmXucV3lcQOTviMTNiJhq4qWON2fjci2NItASw== | |
1333 | - dependencies: | |
1334 | - chalk "^4.0.0" | |
1335 | - | |
1336 | 1087 | "@commitlint/types@^12.1.4": |
1337 | 1088 | version "12.1.4" |
1338 | 1089 | resolved "https://registry.npmjs.org/@commitlint/types/-/types-12.1.4.tgz#9618a5dc8991fb58e6de6ed89d7bf712fa74ba7e" |
... | ... | @@ -1379,6 +1130,13 @@ |
1379 | 1130 | minimatch "^3.0.4" |
1380 | 1131 | strip-json-comments "^3.1.1" |
1381 | 1132 | |
1133 | +"@fullhuman/postcss-purgecss@^4.0.3": | |
1134 | + version "4.0.3" | |
1135 | + resolved "https://registry.npmjs.org/@fullhuman/postcss-purgecss/-/postcss-purgecss-4.0.3.tgz#55d71712ec1c7a88e0d1ba5f10ce7fb6aa05beb4" | |
1136 | + integrity sha512-/EnQ9UDWGGqHkn1UKAwSgh+gJHPKmD+Z+5dQ4gWT4qq2NUyez3zqAfZNwFH3eSgmgO+wjTXfhlLchx2M9/K+7Q== | |
1137 | + dependencies: | |
1138 | + purgecss "^4.0.3" | |
1139 | + | |
1382 | 1140 | "@hapi/address@^2.1.2": |
1383 | 1141 | version "2.1.4" |
1384 | 1142 | resolved "https://registry.npmjs.org/@hapi/address/-/address-2.1.4.tgz#5d67ed43f3fd41a69d4b9ff7b56e7c0d1d0a81e5" |
... | ... | @@ -1417,14 +1175,14 @@ |
1417 | 1175 | dependencies: |
1418 | 1176 | "@hapi/hoek" "^8.3.0" |
1419 | 1177 | |
1420 | -"@iconify/iconify@2.0.0-rc.6", "@iconify/iconify@>=2.0.0-rc.6": | |
1178 | +"@iconify/iconify@2.0.0-rc.6": | |
1421 | 1179 | version "2.0.0-rc.6" |
1422 | 1180 | resolved "https://registry.npmjs.org/@iconify/iconify/-/iconify-2.0.0-rc.6.tgz#e3f5376b63b441dcb3696317784b98e2e678cf46" |
1423 | 1181 | integrity sha512-pXvLXqLPQsjpDY4qbbyh5cPEtakTfWfQCAo6SdYNhYQzat+/0fbeEhScryqaketNAG0bT4/+deKezkJZTvbuSg== |
1424 | 1182 | dependencies: |
1425 | 1183 | cross-fetch "^3.0.6" |
1426 | 1184 | |
1427 | -"@iconify/iconify@^2.0.2": | |
1185 | +"@iconify/iconify@>=2.0.0-rc.6", "@iconify/iconify@^2.0.2": | |
1428 | 1186 | version "2.0.2" |
1429 | 1187 | resolved "https://registry.npmjs.org/@iconify/iconify/-/iconify-2.0.2.tgz#8e8be6c8f20042ab69324bc6db6fc884be98b418" |
1430 | 1188 | integrity sha512-m3MDKXYRRsrVLZFFUkSaTv9/jTk0sLOlIhlmupj2/VhHnZt0i3ACyUD7rx/Vd5bLvtotrHaT5e/ZOLP7uiFmKQ== |
... | ... | @@ -1438,7 +1196,7 @@ |
1438 | 1196 | |
1439 | 1197 | "@intlify/core-base@9.1.6": |
1440 | 1198 | version "9.1.6" |
1441 | - resolved "https://registry.yarnpkg.com/@intlify/core-base/-/core-base-9.1.6.tgz#887fbeafe37d955bac50318f30ac589839f0d9fb" | |
1199 | + resolved "https://registry.npmjs.org/@intlify/core-base/-/core-base-9.1.6.tgz#887fbeafe37d955bac50318f30ac589839f0d9fb" | |
1442 | 1200 | integrity sha512-d5GDPpsQbqPkisSJA5b6nJFEkalY/IHAd7vOLNd/Sj4YaNRzXtInu2FoqKiOv8e/lQnXGTpurdCZg5Jxq1Gsxw== |
1443 | 1201 | dependencies: |
1444 | 1202 | "@intlify/devtools-if" "9.1.6" |
... | ... | @@ -1450,14 +1208,14 @@ |
1450 | 1208 | |
1451 | 1209 | "@intlify/devtools-if@9.1.6": |
1452 | 1210 | version "9.1.6" |
1453 | - resolved "https://registry.yarnpkg.com/@intlify/devtools-if/-/devtools-if-9.1.6.tgz#739b195e430e24fbf8f864ec8a51e243e3347385" | |
1211 | + resolved "https://registry.npmjs.org/@intlify/devtools-if/-/devtools-if-9.1.6.tgz#739b195e430e24fbf8f864ec8a51e243e3347385" | |
1454 | 1212 | integrity sha512-m8Api+kh+BtFa2FZ/JjIdr1ibsGGqBjdKCzWo5BZecEUxBquIeOQZwpokPh/0K5j+/PZleFXkVAMC5mNt+9WdA== |
1455 | 1213 | dependencies: |
1456 | 1214 | "@intlify/shared" "9.1.6" |
1457 | 1215 | |
1458 | 1216 | "@intlify/message-compiler@9.1.6": |
1459 | 1217 | version "9.1.6" |
1460 | - resolved "https://registry.yarnpkg.com/@intlify/message-compiler/-/message-compiler-9.1.6.tgz#e3e99165c1e6ecc496211017799ae59e15b05a18" | |
1218 | + resolved "https://registry.npmjs.org/@intlify/message-compiler/-/message-compiler-9.1.6.tgz#e3e99165c1e6ecc496211017799ae59e15b05a18" | |
1461 | 1219 | integrity sha512-DR8645VOrVK6x/8tkaCpHnckMAIcoOgeNS5j0wB12RfZoXYQp7vAXMaOP511KMll2mXCREgIB0ojpajiof7yzQ== |
1462 | 1220 | dependencies: |
1463 | 1221 | "@intlify/message-resolver" "9.1.6" |
... | ... | @@ -1466,12 +1224,12 @@ |
1466 | 1224 | |
1467 | 1225 | "@intlify/message-resolver@9.1.6": |
1468 | 1226 | version "9.1.6" |
1469 | - resolved "https://registry.yarnpkg.com/@intlify/message-resolver/-/message-resolver-9.1.6.tgz#d7493c9f326d5feb0cd8538a6735b648a91d8f2f" | |
1227 | + resolved "https://registry.npmjs.org/@intlify/message-resolver/-/message-resolver-9.1.6.tgz#d7493c9f326d5feb0cd8538a6735b648a91d8f2f" | |
1470 | 1228 | integrity sha512-UUnbawQa5U9sffd5wRIscqtyY1xWlwJbyfwCLPEWLvBhyAnCwPYlvaHGnnO0CSi0fzJTVwlV9DYzobh3agDeMA== |
1471 | 1229 | |
1472 | 1230 | "@intlify/runtime@9.1.6": |
1473 | 1231 | version "9.1.6" |
1474 | - resolved "https://registry.yarnpkg.com/@intlify/runtime/-/runtime-9.1.6.tgz#bf1548d9034c80eef92b06b240cb347effb41f71" | |
1232 | + resolved "https://registry.npmjs.org/@intlify/runtime/-/runtime-9.1.6.tgz#bf1548d9034c80eef92b06b240cb347effb41f71" | |
1475 | 1233 | integrity sha512-U1QZ+TPf3kQQvWo4BA2mj3cHAxMRHXNTBhu2u+deh6ubTqXdZ19XGBTMSasrXG6RE+zSio9oM+ndoLja7JGtPg== |
1476 | 1234 | dependencies: |
1477 | 1235 | "@intlify/message-compiler" "9.1.6" |
... | ... | @@ -1480,12 +1238,12 @@ |
1480 | 1238 | |
1481 | 1239 | "@intlify/shared@9.1.6": |
1482 | 1240 | version "9.1.6" |
1483 | - resolved "https://registry.yarnpkg.com/@intlify/shared/-/shared-9.1.6.tgz#d03c9301898d6ddffe2a54c03e7664174fbcdfd9" | |
1241 | + resolved "https://registry.npmjs.org/@intlify/shared/-/shared-9.1.6.tgz#d03c9301898d6ddffe2a54c03e7664174fbcdfd9" | |
1484 | 1242 | integrity sha512-6MtsKulyfZxdD7OuxjaODjj8QWoHCnLFAk4wkWiHqBCa6UCTC0qXjtEeZ1MxpQihvFmmJZauBUu25EvtngW5qQ== |
1485 | 1243 | |
1486 | 1244 | "@intlify/vue-devtools@9.1.6": |
1487 | 1245 | version "9.1.6" |
1488 | - resolved "https://registry.yarnpkg.com/@intlify/vue-devtools/-/vue-devtools-9.1.6.tgz#88faadf203951a2a10107440fa99b58f4637d40d" | |
1246 | + resolved "https://registry.npmjs.org/@intlify/vue-devtools/-/vue-devtools-9.1.6.tgz#88faadf203951a2a10107440fa99b58f4637d40d" | |
1489 | 1247 | integrity sha512-UdNovg4OML9rIr1sOGZzTfNr1nUy4UQpDf5ni4dNC93T6FIkVJz0n1Np7Vp7e6gDjcmufRYcV99tEwjQSN9+5A== |
1490 | 1248 | dependencies: |
1491 | 1249 | "@intlify/message-resolver" "9.1.6" |
... | ... | @@ -1706,25 +1464,25 @@ |
1706 | 1464 | ids "^1.0.0" |
1707 | 1465 | preact "^10.4.8" |
1708 | 1466 | |
1709 | -"@nodelib/fs.scandir@2.1.4": | |
1710 | - version "2.1.4" | |
1711 | - resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz#d4b3549a5db5de2683e0c1071ab4f140904bbf69" | |
1712 | - integrity sha512-33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA== | |
1467 | +"@nodelib/fs.scandir@2.1.5": | |
1468 | + version "2.1.5" | |
1469 | + resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" | |
1470 | + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== | |
1713 | 1471 | dependencies: |
1714 | - "@nodelib/fs.stat" "2.0.4" | |
1472 | + "@nodelib/fs.stat" "2.0.5" | |
1715 | 1473 | run-parallel "^1.1.9" |
1716 | 1474 | |
1717 | -"@nodelib/fs.stat@2.0.4", "@nodelib/fs.stat@^2.0.2": | |
1718 | - version "2.0.4" | |
1719 | - resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz#a3f2dd61bab43b8db8fa108a121cfffe4c676655" | |
1720 | - integrity sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q== | |
1475 | +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": | |
1476 | + version "2.0.5" | |
1477 | + resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" | |
1478 | + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== | |
1721 | 1479 | |
1722 | 1480 | "@nodelib/fs.walk@^1.2.3": |
1723 | - version "1.2.6" | |
1724 | - resolved "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz#cce9396b30aa5afe9e3756608f5831adcb53d063" | |
1725 | - integrity sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow== | |
1481 | + version "1.2.7" | |
1482 | + resolved "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.7.tgz#94c23db18ee4653e129abd26fb06f870ac9e1ee2" | |
1483 | + integrity sha512-BTIhocbPBSrRmHxOAJFtR18oLhxTtAFDAvL8hY1S3iU8k+E60W/YFs4jrixGzQjMpF4qPXxIQHcjVD9dz1C2QA== | |
1726 | 1484 | dependencies: |
1727 | - "@nodelib/fs.scandir" "2.1.4" | |
1485 | + "@nodelib/fs.scandir" "2.1.5" | |
1728 | 1486 | fastq "^1.6.0" |
1729 | 1487 | |
1730 | 1488 | "@purge-icons/core@^0.7.0": |
... | ... | @@ -1803,11 +1561,11 @@ |
1803 | 1561 | picomatch "^2.2.2" |
1804 | 1562 | |
1805 | 1563 | "@simonwep/pickr@~1.8.0": |
1806 | - version "1.8.0" | |
1807 | - resolved "https://registry.npmjs.org/@simonwep/pickr/-/pickr-1.8.0.tgz#adbff9a4f7f0e59dec9946508c5e481b7abae0f8" | |
1808 | - integrity sha512-VaSD7TwktOsro5nQ/FjRx5JAJ09k5CNfGRHacgVRxeVPolUQwelz1SjL8HAOKZwTSmcnIObptpHABQS4zgN7sw== | |
1564 | + version "1.8.1" | |
1565 | + resolved "https://registry.npmjs.org/@simonwep/pickr/-/pickr-1.8.1.tgz#e136cbd9c345ddbb7d71eb14af544c798165d495" | |
1566 | + integrity sha512-3Q5+INWW0Py+/E9hgy0cyD0/0w/yGZbkxam6RzFVFDOEHgAqMVJR+x9znx58/ky/ZIvE/78FbH189yIC9h111A== | |
1809 | 1567 | dependencies: |
1810 | - core-js "^3.8.0" | |
1568 | + core-js "^3.12.1" | |
1811 | 1569 | nanopop "^2.1.0" |
1812 | 1570 | |
1813 | 1571 | "@sindresorhus/is@^0.14.0": |
... | ... | @@ -1990,27 +1748,27 @@ |
1990 | 1748 | |
1991 | 1749 | "@trysound/sax@0.1.1": |
1992 | 1750 | version "0.1.1" |
1993 | - resolved "https://registry.npmjs.com/@trysound/sax/-/sax-0.1.1.tgz#3348564048e7a2d7398c935d466c0414ebb6a669" | |
1751 | + resolved "https://registry.npmjs.org/@trysound/sax/-/sax-0.1.1.tgz#3348564048e7a2d7398c935d466c0414ebb6a669" | |
1994 | 1752 | integrity sha512-Z6DoceYb/1xSg5+e+ZlPZ9v0N16ZvZ+wYMraFue4HYrE4ttONKtsvruIRf6t9TBR0YvSOfi1hUU0fJfBLCDYow== |
1995 | 1753 | |
1996 | 1754 | "@tsconfig/node10@^1.0.7": |
1997 | - version "1.0.7" | |
1998 | - resolved "https://registry.npmjs.com/@tsconfig/node10/-/node10-1.0.7.tgz#1eb1de36c73478a2479cc661ef5af1c16d86d606" | |
1999 | - integrity sha512-aBvUmXLQbayM4w3A8TrjwrXs4DZ8iduJnuJLLRGdkWlyakCf1q6uHZJBzXoRA/huAEknG5tcUyQxN3A+In5euQ== | |
1755 | + version "1.0.8" | |
1756 | + resolved "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.8.tgz#c1e4e80d6f964fbecb3359c43bd48b40f7cadad9" | |
1757 | + integrity sha512-6XFfSQmMgq0CFLY1MslA/CPUfhIL919M1rMsa5lP2P097N2Wd1sSX0tx1u4olM16fLNhtHZpRhedZJphNJqmZg== | |
2000 | 1758 | |
2001 | 1759 | "@tsconfig/node12@^1.0.7": |
2002 | - version "1.0.7" | |
2003 | - resolved "https://registry.npmjs.com/@tsconfig/node12/-/node12-1.0.7.tgz#677bd9117e8164dc319987dd6ff5fc1ba6fbf18b" | |
2004 | - integrity sha512-dgasobK/Y0wVMswcipr3k0HpevxFJLijN03A8mYfEPvWvOs14v0ZlYTR4kIgMx8g4+fTyTFv8/jLCIfRqLDJ4A== | |
1760 | + version "1.0.8" | |
1761 | + resolved "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.8.tgz#a883d62f049a64fea1e56a6bbe66828d11c6241b" | |
1762 | + integrity sha512-LM6XwBhjZRls1qJGpiM/It09SntEwe9M0riXRfQ9s6XlJQG0JPGl92ET18LtGeYh/GuOtafIXqwZeqLOd0FNFQ== | |
2005 | 1763 | |
2006 | 1764 | "@tsconfig/node14@^1.0.0": |
2007 | - version "1.0.0" | |
2008 | - resolved "https://registry.npmjs.com/@tsconfig/node14/-/node14-1.0.0.tgz#5bd046e508b1ee90bc091766758838741fdefd6e" | |
2009 | - integrity sha512-RKkL8eTdPv6t5EHgFKIVQgsDapugbuOptNd9OOunN/HAkzmmTnZELx1kNCK0rSdUYGmiFMM3rRQMAWiyp023LQ== | |
1765 | + version "1.0.1" | |
1766 | + resolved "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.1.tgz#95f2d167ffb9b8d2068b0b235302fafd4df711f2" | |
1767 | + integrity sha512-509r2+yARFfHHE7T6Puu2jjkoycftovhXRqW328PDXTVGKihlb1P8Z9mMZH04ebyajfRY7dedfGynlrFHJUQCg== | |
2010 | 1768 | |
2011 | 1769 | "@tsconfig/node16@^1.0.1": |
2012 | 1770 | version "1.0.1" |
2013 | - resolved "https://registry.npmjs.com/@tsconfig/node16/-/node16-1.0.1.tgz#a6ca6a9a0ff366af433f42f5f0e124794ff6b8f1" | |
1771 | + resolved "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.1.tgz#a6ca6a9a0ff366af433f42f5f0e124794ff6b8f1" | |
2014 | 1772 | integrity sha512-FTgBI767POY/lKNDNbIzgAX6miIDBs6NTCbdlDb8TrWovHsSvaVIZDlTqym29C6UqhzwcJx4CYr+AlrMywA0cA== |
2015 | 1773 | |
2016 | 1774 | "@types/babel__core@^7.0.0", "@types/babel__core@^7.1.14": |
... | ... | @@ -2059,9 +1817,9 @@ |
2059 | 1817 | integrity sha512-6+OPzqhKX/cx5xh+yO8Cqg3u3alrkhoxhE5ZOdSEv0DOzJ13lwJ6laqGU0Kv6+XDMFmlnGId04LtY22PsFLQUw== |
2060 | 1818 | |
2061 | 1819 | "@types/estree@*": |
2062 | - version "0.0.47" | |
2063 | - resolved "https://registry.npmjs.org/@types/estree/-/estree-0.0.47.tgz#d7a51db20f0650efec24cd04994f523d93172ed4" | |
2064 | - integrity sha512-c5ciR06jK8u9BstrmJyO97m+klJrrhCf9u3rLu3DEAJBirxRqSCvDQoYKmxuYwQI5SZChAWu+tq9oVlGRuzPAg== | |
1820 | + version "0.0.48" | |
1821 | + resolved "https://registry.npmjs.org/@types/estree/-/estree-0.0.48.tgz#18dc8091b285df90db2f25aa7d906cfc394b7f74" | |
1822 | + integrity sha512-LfZwXoGUDo0C3me81HXgkBg5CTQYb6xzEl+fNmbO4JdRiSKQ8A0GD1OBBvKAIsbCUgoyAty7m99GqqMQe784ew== | |
2065 | 1823 | |
2066 | 1824 | "@types/estree@0.0.39": |
2067 | 1825 | version "0.0.39" |
... | ... | @@ -2175,7 +1933,7 @@ |
2175 | 1933 | |
2176 | 1934 | "@types/json-schema@^7.0.7": |
2177 | 1935 | version "7.0.7" |
2178 | - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.7.tgz#98a993516c859eb0d5c4c8f098317a9ea68db9ad" | |
1936 | + resolved "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.7.tgz#98a993516c859eb0d5c4c8f098317a9ea68db9ad" | |
2179 | 1937 | integrity sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA== |
2180 | 1938 | |
2181 | 1939 | "@types/lodash-es@^4.17.4": |
... | ... | @@ -2186,9 +1944,9 @@ |
2186 | 1944 | "@types/lodash" "*" |
2187 | 1945 | |
2188 | 1946 | "@types/lodash@*", "@types/lodash@^4.14.165": |
2189 | - version "4.14.168" | |
2190 | - resolved "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.168.tgz#fe24632e79b7ade3f132891afff86caa5e5ce008" | |
2191 | - integrity sha512-oVfRvqHV/V6D1yifJbVRU3TMp8OT6o6BG+U9MkwuJ3U8/CsDHvalRpsxBqivn71ztOFZBTfJMvETbqHiaNSj7Q== | |
1947 | + version "4.14.170" | |
1948 | + resolved "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.170.tgz#0d67711d4bf7f4ca5147e9091b847479b87925d6" | |
1949 | + integrity sha512-bpcvu/MKHHeYX+qeEN8GE7DIravODWdACVA1ctevD8CN24RhPZIKMn9ntfAsrvLfSX3cR5RrBKAbYm9bGs0A+Q== | |
2192 | 1950 | |
2193 | 1951 | "@types/mdast@^3.0.0": |
2194 | 1952 | version "3.0.3" |
... | ... | @@ -2213,19 +1971,19 @@ |
2213 | 1971 | integrity sha512-OlwyyyoY81P8f7FU0zILUPxqQQ3/W+CwbqI6dWvOxaH8w948fAl1+hOG9C9ZgJcwzG+aloJcsastY4c4p91R1Q== |
2214 | 1972 | |
2215 | 1973 | "@types/mousetrap@^1.6.4": |
2216 | - version "1.6.7" | |
2217 | - resolved "https://registry.npmjs.org/@types/mousetrap/-/mousetrap-1.6.7.tgz#362411f89ef78a9ece3a5ff71361e85e3ce6febf" | |
2218 | - integrity sha512-VGAfynzXjVzqx2TzLTrdXURhgn+N/66IgEFFt4LYCJ0JIzRGcFUCX9sTAqgJGnyHKYt/vvlo+B9sJHhpEWaP5w== | |
1974 | + version "1.6.8" | |
1975 | + resolved "https://registry.npmjs.org/@types/mousetrap/-/mousetrap-1.6.8.tgz#448929e6dc21126392830465fdb9d4a2cfc16a88" | |
1976 | + integrity sha512-zTqjvgCUT5EoXqbqmd8iJMb4NJqyV/V7pK7AIKq7qcaAsJIpGlTVJS1HQM6YkdHCdnkNSbhcQI7MXYxFfE3iCA== | |
2219 | 1977 | |
2220 | 1978 | "@types/node@*": |
2221 | - version "14.14.37" | |
2222 | - resolved "https://registry.npmjs.org/@types/node/-/node-14.14.37.tgz#a3dd8da4eb84a996c36e331df98d82abd76b516e" | |
2223 | - integrity sha512-XYmBiy+ohOR4Lh5jE379fV2IU+6Jn4g5qASinhitfyO71b/sCo6MKsMLF5tc7Zf2CE8hViVQyYSobJNke8OvUw== | |
1979 | + version "15.12.2" | |
1980 | + resolved "https://registry.npmjs.org/@types/node/-/node-15.12.2.tgz#1f2b42c4be7156ff4a6f914b2fb03d05fa84e38d" | |
1981 | + integrity sha512-zjQ69G564OCIWIOHSXyQEEDpdpGl+G348RAKY0XXy9Z5kU9Vzv1GMNnkar/ZJ8dzXB3COzD9Mo9NtRZ4xfgUww== | |
2224 | 1982 | |
2225 | 1983 | "@types/node@^14.17.1": |
2226 | - version "14.17.1" | |
2227 | - resolved "https://registry.yarnpkg.com/@types/node/-/node-14.17.1.tgz#5e07e0cb2ff793aa7a1b41deae76221e6166049f" | |
2228 | - integrity sha512-/tpUyFD7meeooTRwl3sYlihx2BrJE7q9XF71EguPFIySj9B7qgnRtHsHTho+0AUm4m1SvWGm6uSncrR94q6Vtw== | |
1984 | + version "14.17.3" | |
1985 | + resolved "https://registry.npmjs.org/@types/node/-/node-14.17.3.tgz#6d327abaa4be34a74e421ed6409a0ae2f47f4c3d" | |
1986 | + integrity sha512-e6ZowgGJmTuXa3GyaPbTGxX17tnThl2aSSizrFthQ7m9uLGZBXiGhgE55cjRZTF5kjZvYn9EOPOMljdjwbflxw== | |
2229 | 1987 | |
2230 | 1988 | "@types/node@^15.12.4": |
2231 | 1989 | version "15.12.4" |
... | ... | @@ -2286,16 +2044,6 @@ |
2286 | 2044 | resolved "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.0.tgz#7036640b4e21cc2f259ae826ce843d277dad8cff" |
2287 | 2045 | integrity sha512-RJJrrySY7A8havqpGObOB4W92QXKJo63/jFLLgpvOtsGUqbQZ9Sbgl35KMm1DjC6j7AvmmU2bIno+3IyEaemaw== |
2288 | 2046 | |
2289 | -"@types/strip-bom@^3.0.0": | |
2290 | - version "3.0.0" | |
2291 | - resolved "https://registry.npmjs.org/@types/strip-bom/-/strip-bom-3.0.0.tgz#14a8ec3956c2e81edb7520790aecf21c290aebd2" | |
2292 | - integrity sha1-FKjsOVbC6B7bdSB5CuzyHCkK69I= | |
2293 | - | |
2294 | -"@types/strip-json-comments@0.0.30": | |
2295 | - version "0.0.30" | |
2296 | - resolved "https://registry.npmjs.org/@types/strip-json-comments/-/strip-json-comments-0.0.30.tgz#9aa30c04db212a9a0649d6ae6fd50accc40748a1" | |
2297 | - integrity sha512-7NQmHra/JILCd1QqpSzl8+mJRc8ZHz3uDm8YV1Ks9IhK0epEiTw8aIErbvH9PI+6XbqhyIQy3462nEsn7UVzjQ== | |
2298 | - | |
2299 | 2047 | "@types/svgo@^1": |
2300 | 2048 | version "1.3.5" |
2301 | 2049 | resolved "https://registry.npmjs.org/@types/svgo/-/svgo-1.3.5.tgz#18a0166fbcdfbfc7f17d0491da2ea07ee397d3f9" |
... | ... | @@ -2303,7 +2051,7 @@ |
2303 | 2051 | |
2304 | 2052 | "@types/svgo@^2.3.0": |
2305 | 2053 | version "2.3.0" |
2306 | - resolved "https://registry.npmjs.com/@types/svgo/-/svgo-2.3.0.tgz#16723e04f9892b20368ff6f43396557ab86a1f39" | |
2054 | + resolved "https://registry.npmjs.org/@types/svgo/-/svgo-2.3.0.tgz#16723e04f9892b20368ff6f43396557ab86a1f39" | |
2307 | 2055 | integrity sha512-DrZoZNZr4DlJEpu+g71l1SOxJ5KzLdRV2h+JBOgMmsL5zU82G9WW0fPjUhNM6WbVuVYoJ6mUhAgLZfsh3TQxlw== |
2308 | 2056 | |
2309 | 2057 | "@types/tern@*": |
... | ... | @@ -2322,7 +2070,7 @@ |
2322 | 2070 | |
2323 | 2071 | "@types/tinycolor2@^1.4.2": |
2324 | 2072 | version "1.4.2" |
2325 | - resolved "https://registry.yarnpkg.com/@types/tinycolor2/-/tinycolor2-1.4.2.tgz#721ca5c5d1a2988b4a886e35c2ffc5735b6afbdf" | |
2073 | + resolved "https://registry.npmjs.org/@types/tinycolor2/-/tinycolor2-1.4.2.tgz#721ca5c5d1a2988b4a886e35c2ffc5735b6afbdf" | |
2326 | 2074 | integrity sha512-PeHg/AtdW6aaIO2a+98Xj7rWY4KC1E6yOy7AFknJQ7VXUGNrMlyxDFxJo7HqLtjQms/ZhhQX52mLVW/EX3JGOw== |
2327 | 2075 | |
2328 | 2076 | "@types/unist@*", "@types/unist@^2.0.0", "@types/unist@^2.0.2": |
... | ... | @@ -2437,7 +2185,7 @@ |
2437 | 2185 | |
2438 | 2186 | "@vitejs/plugin-legacy@^1.4.1": |
2439 | 2187 | version "1.4.1" |
2440 | - resolved "https://registry.yarnpkg.com/@vitejs/plugin-legacy/-/plugin-legacy-1.4.1.tgz#e9f7030081df0534ebc6d6c0f9f7c90adb9e60a9" | |
2188 | + resolved "https://registry.npmjs.org/@vitejs/plugin-legacy/-/plugin-legacy-1.4.1.tgz#e9f7030081df0534ebc6d6c0f9f7c90adb9e60a9" | |
2441 | 2189 | integrity sha512-xfcBaNYpPCFzDjvhvoUYOGh87SNvvJNmrHtRdAe6lmnmSOgMYW+QNOvWwdHFEUpWaWUGtgeyYfcVN024IgBafA== |
2442 | 2190 | dependencies: |
2443 | 2191 | "@babel/standalone" "^7.13.12" |
... | ... | @@ -2448,7 +2196,7 @@ |
2448 | 2196 | |
2449 | 2197 | "@vitejs/plugin-vue-jsx@^1.1.5": |
2450 | 2198 | version "1.1.5" |
2451 | - resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-1.1.5.tgz#e856ef42f59048e59c85f8714dc8397e15f81738" | |
2199 | + resolved "https://registry.npmjs.org/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-1.1.5.tgz#e856ef42f59048e59c85f8714dc8397e15f81738" | |
2452 | 2200 | integrity sha512-YujG7IgbZR8zWGY/hZFxYKrAUdO+9OV4t3pqqQrvbtP/ESwvTY8vb0Zpw1VMO8zLWNGqf8jSbjBaCjN49diplw== |
2453 | 2201 | dependencies: |
2454 | 2202 | "@babel/core" "^7.12.10" |
... | ... | @@ -2460,16 +2208,16 @@ |
2460 | 2208 | |
2461 | 2209 | "@vitejs/plugin-vue@^1.2.3": |
2462 | 2210 | version "1.2.3" |
2463 | - resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-1.2.3.tgz#2e8e008b1cc3a6ad1dfbec75743c7ffd9b4872a6" | |
2211 | + resolved "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-1.2.3.tgz#2e8e008b1cc3a6ad1dfbec75743c7ffd9b4872a6" | |
2464 | 2212 | integrity sha512-LlnLpObkGKZ+b7dcpL4T24l13nPSHLjo+6Oc7MbZiKz5PMAUzADfNJ3EKfYIQ0l0969nxf2jp/9vsfnuJ7h6fw== |
2465 | 2213 | |
2466 | -"@volar/code-gen@^0.25.18": | |
2467 | - version "0.25.18" | |
2468 | - resolved "https://registry.yarnpkg.com/@volar/code-gen/-/code-gen-0.25.18.tgz#7b73f7e813ce7354ec9bce860ba6f9918112ebce" | |
2469 | - integrity sha512-v5KG0Zc0J3VLb6h4uoxYuUJ/WrOSiS8/CR7LQ6qnG3f6rp1zfsRDqX5gUK9XjOSWC/Kr6Pn0leBjs+2eyV8atQ== | |
2214 | +"@volar/code-gen@^0.25.22": | |
2215 | + version "0.25.22" | |
2216 | + resolved "https://registry.npmjs.org/@volar/code-gen/-/code-gen-0.25.22.tgz#405035eb7e19573f630070677fa91553d79a47bc" | |
2217 | + integrity sha512-CStz1TMxJtEQgXosaOLIVykxQBg5VFvxsvlcrCUum1ZCzpRsXPldS/3OdPOCgkdyE/i9kVzKOvt8DYChKTCPqw== | |
2470 | 2218 | dependencies: |
2471 | - "@volar/shared" "^0.25.18" | |
2472 | - "@volar/source-map" "^0.25.18" | |
2219 | + "@volar/shared" "^0.25.22" | |
2220 | + "@volar/source-map" "^0.25.22" | |
2473 | 2221 | |
2474 | 2222 | "@volar/html2pug@^0.25.4": |
2475 | 2223 | version "0.25.4" |
... | ... | @@ -2481,27 +2229,27 @@ |
2481 | 2229 | htmlparser2 "^6.1.0" |
2482 | 2230 | pug "^3.0.2" |
2483 | 2231 | |
2484 | -"@volar/shared@^0.25.18": | |
2485 | - version "0.25.18" | |
2486 | - resolved "https://registry.yarnpkg.com/@volar/shared/-/shared-0.25.18.tgz#1358fb8d1f3677404063705a7cc085cf4daaa07d" | |
2487 | - integrity sha512-bukdpYgWT2AagiqaQBcK8xqOWdYmZJMyW1UT9vuXyq65JKNoyLf+JKKF99w7sfOjwU32v+Hnxc+lBpsdnvyPIg== | |
2232 | +"@volar/shared@^0.25.22": | |
2233 | + version "0.25.22" | |
2234 | + resolved "https://registry.npmjs.org/@volar/shared/-/shared-0.25.22.tgz#0dbf7fcf201b3a0beacc6fd82d407a748729a978" | |
2235 | + integrity sha512-hZQ4dDy0/MgjVONFhs7P2ECDamajwmpSErFYLaLwFClh7DNn6gXYEsawr5kS5zHYs/HaSfSwNQ4sx5Y2MInCZw== | |
2488 | 2236 | dependencies: |
2489 | 2237 | upath "^2.0.1" |
2490 | 2238 | vscode-languageserver "^7.1.0-next.4" |
2491 | 2239 | |
2492 | -"@volar/source-map@^0.25.18": | |
2493 | - version "0.25.18" | |
2494 | - resolved "https://registry.yarnpkg.com/@volar/source-map/-/source-map-0.25.18.tgz#6d0f60d50b944eebe151d57647b27a931839a378" | |
2495 | - integrity sha512-gI/f17lQpNle4bFPahKVguu4lC16frBlMbPojr2g2XL5U8z2qhykBOuQWIcazKA5iacXpP5xzpyLD+2WwfqVDA== | |
2240 | +"@volar/source-map@^0.25.22": | |
2241 | + version "0.25.22" | |
2242 | + resolved "https://registry.npmjs.org/@volar/source-map/-/source-map-0.25.22.tgz#5150401e1950dd35fb11720f79e59799d3885741" | |
2243 | + integrity sha512-J6xntLQ8I6BMqPBaQZN3JROJPfcFexo/5KecMxGqHkdLC/M/DtVOAp9zkwAXu7XuXA/nF6iGxmL3TYELFRryzw== | |
2496 | 2244 | dependencies: |
2497 | - "@volar/shared" "^0.25.18" | |
2245 | + "@volar/shared" "^0.25.22" | |
2498 | 2246 | |
2499 | -"@volar/transforms@^0.25.18": | |
2500 | - version "0.25.18" | |
2501 | - resolved "https://registry.yarnpkg.com/@volar/transforms/-/transforms-0.25.18.tgz#0faa3e07226f7285eda1977614b3841334e0cdff" | |
2502 | - integrity sha512-iJMMY5E7x3U59mDCf+NHDY1OHzcMxQ+xEpMzzQT1iDFLfXll0vWgFnauZCWhX6TCh5D6PmW13IIlkOC18HEW/Q== | |
2247 | +"@volar/transforms@^0.25.22": | |
2248 | + version "0.25.22" | |
2249 | + resolved "https://registry.npmjs.org/@volar/transforms/-/transforms-0.25.22.tgz#7f4c10d63f221f3892e951c857bf828de139a29a" | |
2250 | + integrity sha512-WcQU2MzAsVILITxbt3urNPUbPlOvsdGuChwCNc9OXV1OgBOTJtJ9sQV63pYr+tb7Yl3Ie2S8Q7lNMy8gS1jvLQ== | |
2503 | 2251 | dependencies: |
2504 | - "@volar/shared" "^0.25.18" | |
2252 | + "@volar/shared" "^0.25.22" | |
2505 | 2253 | |
2506 | 2254 | "@vue/babel-helper-vue-transform-on@^1.0.2": |
2507 | 2255 | version "1.0.2" |
... | ... | @@ -2509,9 +2257,9 @@ |
2509 | 2257 | integrity sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA== |
2510 | 2258 | |
2511 | 2259 | "@vue/babel-plugin-jsx@^1.0.3": |
2512 | - version "1.0.4" | |
2513 | - resolved "https://registry.npmjs.org/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.0.4.tgz#077826ca0eccd77cb6ad698254f5821ded5c5189" | |
2514 | - integrity sha512-Vu5gsabUdsiWc4vQarg46xWJGs8pMEJyyMQAKA1vO+F4+aR4/jaxWxPCOvZ7XvVyy+ecSbwQp/qIyDVje360UQ== | |
2260 | + version "1.0.6" | |
2261 | + resolved "https://registry.npmjs.org/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.0.6.tgz#184bf3541ab6efdbe5079ab8b20c19e2af100bfb" | |
2262 | + integrity sha512-RzYsvBhzKUmY2YG6LoV+W5PnlnkInq0thh1AzCmewwctAgGN6e9UFon6ZrQQV1CO5G5PeME7MqpB+/vvGg0h4g== | |
2515 | 2263 | dependencies: |
2516 | 2264 | "@babel/helper-module-imports" "^7.0.0" |
2517 | 2265 | "@babel/plugin-syntax-jsx" "^7.0.0" |
... | ... | @@ -2534,7 +2282,18 @@ |
2534 | 2282 | estree-walker "^2.0.1" |
2535 | 2283 | source-map "^0.6.1" |
2536 | 2284 | |
2537 | -"@vue/compiler-dom@3.0.11", "@vue/compiler-dom@^3.0.11": | |
2285 | +"@vue/compiler-core@3.1.1": | |
2286 | + version "3.1.1" | |
2287 | + resolved "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.1.1.tgz#4f2c5d70eabd454675714cc8bd2b97f6a8efb196" | |
2288 | + integrity sha512-Z1RO3T6AEtAUFf2EqqovFm3ohAeTvFzRtB0qUENW2nEerJfdlk13/LS1a0EgsqlzxmYfR/S/S/gW9PLbFZZxkA== | |
2289 | + dependencies: | |
2290 | + "@babel/parser" "^7.12.0" | |
2291 | + "@babel/types" "^7.12.0" | |
2292 | + "@vue/shared" "3.1.1" | |
2293 | + estree-walker "^2.0.1" | |
2294 | + source-map "^0.6.1" | |
2295 | + | |
2296 | +"@vue/compiler-dom@3.0.11": | |
2538 | 2297 | version "3.0.11" |
2539 | 2298 | resolved "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.0.11.tgz#b15fc1c909371fd671746020ba55b5dab4a730ee" |
2540 | 2299 | integrity sha512-+3xB50uGeY5Fv9eMKVJs2WSRULfgwaTJsy23OIltKgMrynnIj8hTYY2UL97HCoz78aDw1VDXdrBQ4qepWjnQcw== |
... | ... | @@ -2542,7 +2301,15 @@ |
2542 | 2301 | "@vue/compiler-core" "3.0.11" |
2543 | 2302 | "@vue/shared" "3.0.11" |
2544 | 2303 | |
2545 | -"@vue/compiler-sfc@3.0.11", "@vue/compiler-sfc@^3.0.11": | |
2304 | +"@vue/compiler-dom@3.1.1", "@vue/compiler-dom@^3.0.11": | |
2305 | + version "3.1.1" | |
2306 | + resolved "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.1.1.tgz#ef60d856ac2ede5b2ad5c72a7a68122895e3d652" | |
2307 | + integrity sha512-nobRIo0t5ibzg+q8nC31m+aJhbq8FbWUoKvk6h3Vs1EqTDJaj6lBTcVTq5or8AYht7FbSpdAJ81isbJ1rWNX7A== | |
2308 | + dependencies: | |
2309 | + "@vue/compiler-core" "3.1.1" | |
2310 | + "@vue/shared" "3.1.1" | |
2311 | + | |
2312 | +"@vue/compiler-sfc@3.0.11": | |
2546 | 2313 | version "3.0.11" |
2547 | 2314 | resolved "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.0.11.tgz#cd8ca2154b88967b521f5ad3b10f5f8b6b665679" |
2548 | 2315 | integrity sha512-7fNiZuCecRleiyVGUWNa6pn8fB2fnuJU+3AGjbjl7r1P5wBivfl02H4pG+2aJP5gh2u+0wXov1W38tfWOphsXw== |
... | ... | @@ -2564,6 +2331,28 @@ |
2564 | 2331 | postcss-selector-parser "^6.0.4" |
2565 | 2332 | source-map "^0.6.1" |
2566 | 2333 | |
2334 | +"@vue/compiler-sfc@^3.0.11": | |
2335 | + version "3.1.1" | |
2336 | + resolved "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.1.1.tgz#d4e4507c013d0b219f0b106b317ec5bb1cde3398" | |
2337 | + integrity sha512-lSgMsZaYHF+bAgryq5aUqpvyfhu52GJI2/4LoiJCE5uaxc6FCZfxfgqgw/d9ltiZghv+HiISFtmQVAVvlsk+/w== | |
2338 | + dependencies: | |
2339 | + "@babel/parser" "^7.13.9" | |
2340 | + "@babel/types" "^7.13.0" | |
2341 | + "@vue/compiler-core" "3.1.1" | |
2342 | + "@vue/compiler-dom" "3.1.1" | |
2343 | + "@vue/compiler-ssr" "3.1.1" | |
2344 | + "@vue/shared" "3.1.1" | |
2345 | + consolidate "^0.16.0" | |
2346 | + estree-walker "^2.0.1" | |
2347 | + hash-sum "^2.0.0" | |
2348 | + lru-cache "^5.1.1" | |
2349 | + magic-string "^0.25.7" | |
2350 | + merge-source-map "^1.1.0" | |
2351 | + postcss "^8.1.10" | |
2352 | + postcss-modules "^4.0.0" | |
2353 | + postcss-selector-parser "^6.0.4" | |
2354 | + source-map "^0.6.1" | |
2355 | + | |
2567 | 2356 | "@vue/compiler-ssr@3.0.11": |
2568 | 2357 | version "3.0.11" |
2569 | 2358 | resolved "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.0.11.tgz#ac5a05fd1257412fa66079c823d8203b6a889a13" |
... | ... | @@ -2572,23 +2361,33 @@ |
2572 | 2361 | "@vue/compiler-dom" "3.0.11" |
2573 | 2362 | "@vue/shared" "3.0.11" |
2574 | 2363 | |
2575 | -"@vue/devtools-api@^6.0.0-beta.14": | |
2364 | +"@vue/compiler-ssr@3.1.1": | |
2365 | + version "3.1.1" | |
2366 | + resolved "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.1.1.tgz#1d08b98601397258ed059b75966e0e94a385d770" | |
2367 | + integrity sha512-7H6krZtVt3h/YzfNp7eYK41hMDz8ZskiBy+Wby+EDRINX6BD9JQ5C8zyy2xAa7T6Iz2VrQzsaJ/Bb52lTPSS5A== | |
2368 | + dependencies: | |
2369 | + "@vue/compiler-dom" "3.1.1" | |
2370 | + "@vue/shared" "3.1.1" | |
2371 | + | |
2372 | +"@vue/devtools-api@^6.0.0-beta.14", "@vue/devtools-api@^6.0.0-beta.7": | |
2576 | 2373 | version "6.0.0-beta.14" |
2577 | 2374 | resolved "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.0.0-beta.14.tgz#6ed2d6f8d66a9256c9ad04bfff08309ba87b9723" |
2578 | 2375 | integrity sha512-44fPrrN1cqcs6bFkT0C+yxTM6PZXLbR+ESh1U1j8UD22yO04gXvxH62HApMjLbS3WqJO/iCNC+CYT+evPQh2EQ== |
2579 | 2376 | |
2580 | -"@vue/devtools-api@^6.0.0-beta.7": | |
2581 | - version "6.0.0-beta.11" | |
2582 | - resolved "https://registry.yarnpkg.com/@vue/devtools-api/-/devtools-api-6.0.0-beta.11.tgz#4fb4161ee41ba75f3f5198d4bfd80e4ffb7f2462" | |
2583 | - integrity sha512-vpw61AkW9U8c2upjJCljHq9eh1KkD4FJ7DYbRzIETpj9WAw2VESudJZosAk4M+7npBo1Zu1jNQY03HUMVO/czQ== | |
2584 | - | |
2585 | -"@vue/reactivity@3.0.11", "@vue/reactivity@^3.0.11": | |
2377 | +"@vue/reactivity@3.0.11": | |
2586 | 2378 | version "3.0.11" |
2587 | 2379 | resolved "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.0.11.tgz#07b588349fd05626b17f3500cbef7d4bdb4dbd0b" |
2588 | 2380 | integrity sha512-SKM3YKxtXHBPMf7yufXeBhCZ4XZDKP9/iXeQSC8bBO3ivBuzAi4aZi0bNoeE2IF2iGfP/AHEt1OU4ARj4ao/Xw== |
2589 | 2381 | dependencies: |
2590 | 2382 | "@vue/shared" "3.0.11" |
2591 | 2383 | |
2384 | +"@vue/reactivity@3.1.1", "@vue/reactivity@^3.0.11": | |
2385 | + version "3.1.1" | |
2386 | + resolved "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.1.1.tgz#9c02fd146a6c3b03e7d658b7cf76f4b69b0f98c8" | |
2387 | + integrity sha512-DsH5woNVCcPK1M0RRYVgJEU1GJDU2ASOKpAqW3ppHk+XjoFLCbqc/26RTCgTpJYd9z8VN+79Q1u7/QqgQPbuLQ== | |
2388 | + dependencies: | |
2389 | + "@vue/shared" "3.1.1" | |
2390 | + | |
2592 | 2391 | "@vue/runtime-core@3.0.11": |
2593 | 2392 | version "3.0.11" |
2594 | 2393 | resolved "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.0.11.tgz#c52dfc6acf3215493623552c1c2919080c562e44" |
... | ... | @@ -2597,6 +2396,14 @@ |
2597 | 2396 | "@vue/reactivity" "3.0.11" |
2598 | 2397 | "@vue/shared" "3.0.11" |
2599 | 2398 | |
2399 | +"@vue/runtime-core@3.1.1": | |
2400 | + version "3.1.1" | |
2401 | + resolved "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.1.1.tgz#542110c09a643d7d80646a2f071aff6b324c4158" | |
2402 | + integrity sha512-GboqR02txOtkd9F3Ysd8ltPL68vTCqIx2p/J52/gFtpgb5FG9hvOAPEwFUqxeEJRu7ResvQnmdOHiEycGPCLhQ== | |
2403 | + dependencies: | |
2404 | + "@vue/reactivity" "3.1.1" | |
2405 | + "@vue/shared" "3.1.1" | |
2406 | + | |
2600 | 2407 | "@vue/runtime-dom@3.0.11": |
2601 | 2408 | version "3.0.11" |
2602 | 2409 | resolved "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.0.11.tgz#7a552df21907942721feb6961c418e222a699337" |
... | ... | @@ -2606,15 +2413,29 @@ |
2606 | 2413 | "@vue/shared" "3.0.11" |
2607 | 2414 | csstype "^2.6.8" |
2608 | 2415 | |
2609 | -"@vue/shared@3.0.11", "@vue/shared@^3.0.11": | |
2416 | +"@vue/runtime-dom@3.1.1": | |
2417 | + version "3.1.1" | |
2418 | + resolved "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.1.1.tgz#5539bbce132d29f6445b4964cb7b4164a89a5ce6" | |
2419 | + integrity sha512-o57n/199e/BBAmLRMSXmD2r12Old/h/gf6BgL0RON1NT2pwm6MWaMY4Ul55eyq+FsDILz4jR/UgoPQ9vYB8xcw== | |
2420 | + dependencies: | |
2421 | + "@vue/runtime-core" "3.1.1" | |
2422 | + "@vue/shared" "3.1.1" | |
2423 | + csstype "^2.6.8" | |
2424 | + | |
2425 | +"@vue/shared@3.0.11": | |
2610 | 2426 | version "3.0.11" |
2611 | 2427 | resolved "https://registry.npmjs.org/@vue/shared/-/shared-3.0.11.tgz#20d22dd0da7d358bb21c17f9bde8628152642c77" |
2612 | 2428 | integrity sha512-b+zB8A2so8eCE0JsxjL24J7vdGl8rzPQ09hZNhystm+KqSbKcAej1A+Hbva1rCMmTTqA+hFnUSDc5kouEo0JzA== |
2613 | 2429 | |
2614 | -"@vue/test-utils@^2.0.0-rc.6": | |
2615 | - version "2.0.0-rc.6" | |
2616 | - resolved "https://registry.npmjs.org/@vue/test-utils/-/test-utils-2.0.0-rc.6.tgz#d0aac24d20450d379e183f70542c0822670b8783" | |
2617 | - integrity sha512-0cnQBVH589PwgqWpyv1fgCAz+9Ram/MsvN3ZEAEVXi1aPuhUa22EudGc0WezQ9PKwR+L40NrBmt3JBXE2tSRRQ== | |
2430 | +"@vue/shared@3.1.1", "@vue/shared@^3.0.11": | |
2431 | + version "3.1.1" | |
2432 | + resolved "https://registry.npmjs.org/@vue/shared/-/shared-3.1.1.tgz#2287cfc3dc20e5b20aeb65c2c3a56533bdca801c" | |
2433 | + integrity sha512-g+4pzAw7PYSjARtLBoDq6DmcblX8i9KJHSCnyM5VDDFFifUaUT9iHbFpOF/KOizQ9f7QAqU2JH3Y6aXjzUMhVA== | |
2434 | + | |
2435 | +"@vue/test-utils@^2.0.0-rc.7": | |
2436 | + version "2.0.0-rc.7" | |
2437 | + resolved "https://registry.npmjs.org/@vue/test-utils/-/test-utils-2.0.0-rc.7.tgz#a6c4b4ac9e81dcdae31507056aabb16417f29138" | |
2438 | + integrity sha512-CeaahWNVUFW+MXY0dvGP655upNVWcbzqpu6qMn4nK/2nU3O9uDuthRXBIle++nXanYkNUCvlC+TQ5fVeKkvl+Q== | |
2618 | 2439 | |
2619 | 2440 | "@vueuse/core@^5.0.3": |
2620 | 2441 | version "5.0.3" |
... | ... | @@ -2631,19 +2452,6 @@ |
2631 | 2452 | dependencies: |
2632 | 2453 | vue-demi "*" |
2633 | 2454 | |
2634 | -"@windicss/plugin-utils@1.0.4": | |
2635 | - version "1.0.4" | |
2636 | - resolved "https://registry.npmjs.org/@windicss/plugin-utils/-/plugin-utils-1.0.4.tgz#dd375789d610a8700d540bb09d296a163d7588b3" | |
2637 | - integrity sha512-1Eqw+/lhk3vqW8vgttmLDbzE6YIFL047Kuy/v6jhQd3w7RG+fPbQE6YwnqJerPYvCcRwujQ9ABrLr0+cS+i0tQ== | |
2638 | - dependencies: | |
2639 | - "@antfu/utils" "^0.1.6" | |
2640 | - debug "^4.3.2" | |
2641 | - fast-glob "^3.2.5" | |
2642 | - jiti "^1.10.1" | |
2643 | - magic-string "^0.25.7" | |
2644 | - micromatch "^4.0.4" | |
2645 | - windicss "^3.1.3" | |
2646 | - | |
2647 | 2455 | "@zxcvbn-ts/core@^0.3.0": |
2648 | 2456 | version "0.3.0" |
2649 | 2457 | resolved "https://registry.npmjs.org/@zxcvbn-ts/core/-/core-0.3.0.tgz#1a021afef29b97a5f8f72458de005fa149628e32" |
... | ... | @@ -2675,12 +2483,21 @@ acorn-jsx@^5.2.0, acorn-jsx@^5.3.1: |
2675 | 2483 | resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.1.tgz#fc8661e11b7ac1539c47dbfea2e72b3af34d267b" |
2676 | 2484 | integrity sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng== |
2677 | 2485 | |
2678 | -acorn-walk@^7.1.1: | |
2486 | +acorn-node@^1.6.1: | |
2487 | + version "1.8.2" | |
2488 | + resolved "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz#114c95d64539e53dede23de8b9d96df7c7ae2af8" | |
2489 | + integrity sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A== | |
2490 | + dependencies: | |
2491 | + acorn "^7.0.0" | |
2492 | + acorn-walk "^7.0.0" | |
2493 | + xtend "^4.0.2" | |
2494 | + | |
2495 | +acorn-walk@^7.0.0, acorn-walk@^7.1.1: | |
2679 | 2496 | version "7.2.0" |
2680 | 2497 | resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" |
2681 | 2498 | integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== |
2682 | 2499 | |
2683 | -acorn@^7.1.1, acorn@^7.4.0: | |
2500 | +acorn@^7.0.0, acorn@^7.1.1, acorn@^7.4.0: | |
2684 | 2501 | version "7.4.1" |
2685 | 2502 | resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" |
2686 | 2503 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== |
... | ... | @@ -2703,6 +2520,13 @@ adler-32@~1.2.0: |
2703 | 2520 | exit-on-epipe "~1.0.1" |
2704 | 2521 | printj "~1.1.0" |
2705 | 2522 | |
2523 | +agent-base@4, agent-base@^4.3.0: | |
2524 | + version "4.3.0" | |
2525 | + resolved "https://registry.npmjs.org/agent-base/-/agent-base-4.3.0.tgz#8165f01c436009bccad0b1d122f05ed770efc6ee" | |
2526 | + integrity sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg== | |
2527 | + dependencies: | |
2528 | + es6-promisify "^5.0.0" | |
2529 | + | |
2706 | 2530 | agent-base@6: |
2707 | 2531 | version "6.0.2" |
2708 | 2532 | resolved "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" |
... | ... | @@ -2729,9 +2553,9 @@ ajv@^6.10.0, ajv@^6.12.4: |
2729 | 2553 | uri-js "^4.2.2" |
2730 | 2554 | |
2731 | 2555 | ajv@^8.0.1: |
2732 | - version "8.0.5" | |
2733 | - resolved "https://registry.npmjs.org/ajv/-/ajv-8.0.5.tgz#f07d6fdeffcdbb80485570ce3f1bc845fcc812b9" | |
2734 | - integrity sha512-RkiLa/AeJx7+9OvniQ/qeWu0w74A8DiPPBclQ6ji3ZQkv5KamO+QGpqmi7O4JIw3rHGUXZ6CoP9tsAkn3gyazg== | |
2556 | + version "8.6.0" | |
2557 | + resolved "https://registry.npmjs.org/ajv/-/ajv-8.6.0.tgz#60cc45d9c46a477d80d92c48076d972c342e5720" | |
2558 | + integrity sha512-cnUG4NSBiM4YFBxgZIj/In3/6KX+rQ2l2YPRVcvAMQGWEPKuXoPIhxzwqh31jA3IPbI4qEOp/5ILI4ynioXsGQ== | |
2735 | 2559 | dependencies: |
2736 | 2560 | fast-deep-equal "^3.1.1" |
2737 | 2561 | json-schema-traverse "^1.0.0" |
... | ... | @@ -2854,6 +2678,11 @@ arg@^4.1.0: |
2854 | 2678 | resolved "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" |
2855 | 2679 | integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== |
2856 | 2680 | |
2681 | +arg@^5.0.0: | |
2682 | + version "5.0.0" | |
2683 | + resolved "https://registry.npmjs.org/arg/-/arg-5.0.0.tgz#a20e2bb5710e82950a516b3f933fee5ed478be90" | |
2684 | + integrity sha512-4P8Zm2H+BRS+c/xX1LrHw0qKpEhdlZjLCgWy+d78T9vqa2Z2SiD2wMrYuWIAFy5IZUD7nnNXroRttz+0RzlrzQ== | |
2685 | + | |
2857 | 2686 | argparse@^1.0.7: |
2858 | 2687 | version "1.0.10" |
2859 | 2688 | resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" |
... | ... | @@ -2942,9 +2771,9 @@ astral-regex@^2.0.0: |
2942 | 2771 | integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== |
2943 | 2772 | |
2944 | 2773 | async-validator@^3.3.0, async-validator@^3.4.0: |
2945 | - version "3.5.1" | |
2946 | - resolved "https://registry.npmjs.org/async-validator/-/async-validator-3.5.1.tgz#cd62b9688b2465f48420e27adb47760ab1b5559f" | |
2947 | - integrity sha512-DDmKA7sdSAJtTVeNZHrnr2yojfFaoeW8MfQN8CeuXg8DDQHTqKk9Fdv38dSvnesHoO8MUwMI2HphOeSyIF+wmQ== | |
2774 | + version "3.5.2" | |
2775 | + resolved "https://registry.npmjs.org/async-validator/-/async-validator-3.5.2.tgz#68e866a96824e8b2694ff7a831c1a25c44d5e500" | |
2776 | + integrity sha512-8eLCg00W9pIRZSB781UUX/H6Oskmm8xloZfr09lz5bikRpBVDlJ3hRVuxxP1SxcwsEYfJ4IU8Q19Y8/893r3rQ== | |
2948 | 2777 | |
2949 | 2778 | async@0.9.x: |
2950 | 2779 | version "0.9.2" |
... | ... | @@ -2975,7 +2804,7 @@ atob@^2.1.2: |
2975 | 2804 | |
2976 | 2805 | autoprefixer@^10.2.6: |
2977 | 2806 | version "10.2.6" |
2978 | - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.2.6.tgz#aadd9ec34e1c98d403e01950038049f0eb252949" | |
2807 | + resolved "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.2.6.tgz#aadd9ec34e1c98d403e01950038049f0eb252949" | |
2979 | 2808 | integrity sha512-8lChSmdU6dCNMCQopIf4Pe5kipkAGj/fvTMslCsih0uHpOrXOPUEVOmYMMqmw3cekQkSD7EhIeuYl5y0BLdKqg== |
2980 | 2809 | dependencies: |
2981 | 2810 | browserslist "^4.16.6" |
... | ... | @@ -3047,29 +2876,29 @@ babel-plugin-jest-hoist@^27.0.1: |
3047 | 2876 | "@types/babel__core" "^7.0.0" |
3048 | 2877 | "@types/babel__traverse" "^7.0.6" |
3049 | 2878 | |
3050 | -babel-plugin-polyfill-corejs2@^0.2.0: | |
3051 | - version "0.2.0" | |
3052 | - resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.0.tgz#686775bf9a5aa757e10520903675e3889caeedc4" | |
3053 | - integrity sha512-9bNwiR0dS881c5SHnzCmmGlMkJLl0OUZvxrxHo9w/iNoRuqaPjqlvBf4HrovXtQs/au5yKkpcdgfT1cC5PAZwg== | |
2879 | +babel-plugin-polyfill-corejs2@^0.2.2: | |
2880 | + version "0.2.2" | |
2881 | + resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.2.tgz#e9124785e6fd94f94b618a7954e5693053bf5327" | |
2882 | + integrity sha512-kISrENsJ0z5dNPq5eRvcctITNHYXWOA4DUZRFYCz3jYCcvTb/A546LIddmoGNMVYg2U38OyFeNosQwI9ENTqIQ== | |
3054 | 2883 | dependencies: |
3055 | 2884 | "@babel/compat-data" "^7.13.11" |
3056 | - "@babel/helper-define-polyfill-provider" "^0.2.0" | |
2885 | + "@babel/helper-define-polyfill-provider" "^0.2.2" | |
3057 | 2886 | semver "^6.1.1" |
3058 | 2887 | |
3059 | -babel-plugin-polyfill-corejs3@^0.2.0: | |
3060 | - version "0.2.0" | |
3061 | - resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.0.tgz#f4b4bb7b19329827df36ff56f6e6d367026cb7a2" | |
3062 | - integrity sha512-zZyi7p3BCUyzNxLx8KV61zTINkkV65zVkDAFNZmrTCRVhjo1jAS+YLvDJ9Jgd/w2tsAviCwFHReYfxO3Iql8Yg== | |
2888 | +babel-plugin-polyfill-corejs3@^0.2.2: | |
2889 | + version "0.2.3" | |
2890 | + resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.3.tgz#72add68cf08a8bf139ba6e6dfc0b1d504098e57b" | |
2891 | + integrity sha512-rCOFzEIJpJEAU14XCcV/erIf/wZQMmMT5l5vXOpL5uoznyOGfDIjPj6FVytMvtzaKSTSVKouOCTPJ5OMUZH30g== | |
3063 | 2892 | dependencies: |
3064 | - "@babel/helper-define-polyfill-provider" "^0.2.0" | |
3065 | - core-js-compat "^3.9.1" | |
2893 | + "@babel/helper-define-polyfill-provider" "^0.2.2" | |
2894 | + core-js-compat "^3.14.0" | |
3066 | 2895 | |
3067 | -babel-plugin-polyfill-regenerator@^0.2.0: | |
3068 | - version "0.2.0" | |
3069 | - resolved "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.0.tgz#853f5f5716f4691d98c84f8069c7636ea8da7ab8" | |
3070 | - integrity sha512-J7vKbCuD2Xi/eEHxquHN14bXAW9CXtecwuLrOIDJtcZzTaPzV1VdEfoUf9AzcRBMolKUQKM9/GVojeh0hFiqMg== | |
2896 | +babel-plugin-polyfill-regenerator@^0.2.2: | |
2897 | + version "0.2.2" | |
2898 | + resolved "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.2.tgz#b310c8d642acada348c1fa3b3e6ce0e851bee077" | |
2899 | + integrity sha512-Goy5ghsc21HgPDFtzRkSirpZVW35meGoTmTOb2bxqdl60ghub4xOidgNTHaZfQ2FaxQsKmwvXtOAkcIS4SMBWg== | |
3071 | 2900 | dependencies: |
3072 | - "@babel/helper-define-polyfill-provider" "^0.2.0" | |
2901 | + "@babel/helper-define-polyfill-provider" "^0.2.2" | |
3073 | 2902 | |
3074 | 2903 | babel-preset-current-node-syntax@^1.0.0: |
3075 | 2904 | version "1.0.1" |
... | ... | @@ -3255,7 +3084,7 @@ brace-expansion@^1.1.7: |
3255 | 3084 | balanced-match "^1.0.0" |
3256 | 3085 | concat-map "0.0.1" |
3257 | 3086 | |
3258 | -braces@^2.2.2, braces@^2.3.1: | |
3087 | +braces@^2.2.2: | |
3259 | 3088 | version "2.3.2" |
3260 | 3089 | resolved "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" |
3261 | 3090 | integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== |
... | ... | @@ -3283,20 +3112,9 @@ browser-process-hrtime@^1.0.0: |
3283 | 3112 | resolved "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" |
3284 | 3113 | integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== |
3285 | 3114 | |
3286 | -browserslist@^4.12.0, browserslist@^4.14.5, browserslist@^4.16.3: | |
3287 | - version "4.16.3" | |
3288 | - resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.16.3.tgz#340aa46940d7db878748567c5dea24a48ddf3717" | |
3289 | - integrity sha512-vIyhWmIkULaq04Gt93txdh+j02yX/JzlyhLYbV3YQCn/zvES3JnY7TifHHvvr1w5hTDluNKMkV05cs4vy8Q7sw== | |
3290 | - dependencies: | |
3291 | - caniuse-lite "^1.0.30001181" | |
3292 | - colorette "^1.2.1" | |
3293 | - electron-to-chromium "^1.3.649" | |
3294 | - escalade "^3.1.1" | |
3295 | - node-releases "^1.1.70" | |
3296 | - | |
3297 | -browserslist@^4.16.6: | |
3115 | +browserslist@^4.12.0, browserslist@^4.16.6: | |
3298 | 3116 | version "4.16.6" |
3299 | - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.6.tgz#d7901277a5a88e554ed305b183ec9b0c08f66fa2" | |
3117 | + resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.16.6.tgz#d7901277a5a88e554ed305b183ec9b0c08f66fa2" | |
3300 | 3118 | integrity sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ== |
3301 | 3119 | dependencies: |
3302 | 3120 | caniuse-lite "^1.0.30001219" |
... | ... | @@ -3360,6 +3178,11 @@ builtin-modules@^3.1.0: |
3360 | 3178 | resolved "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.2.0.tgz#45d5db99e7ee5e6bc4f362e008bf917ab5049887" |
3361 | 3179 | integrity sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA== |
3362 | 3180 | |
3181 | +bytes@^3.0.0: | |
3182 | + version "3.1.0" | |
3183 | + resolved "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" | |
3184 | + integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== | |
3185 | + | |
3363 | 3186 | cache-base@^1.0.1: |
3364 | 3187 | version "1.0.1" |
3365 | 3188 | resolved "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" |
... | ... | @@ -3427,6 +3250,11 @@ camel-case@^4.1.1, camel-case@^4.1.2: |
3427 | 3250 | pascal-case "^3.1.2" |
3428 | 3251 | tslib "^2.0.3" |
3429 | 3252 | |
3253 | +camelcase-css@^2.0.1: | |
3254 | + version "2.0.1" | |
3255 | + resolved "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" | |
3256 | + integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== | |
3257 | + | |
3430 | 3258 | camelcase-keys@^2.0.0: |
3431 | 3259 | version "2.1.0" |
3432 | 3260 | resolved "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" |
... | ... | @@ -3473,15 +3301,10 @@ camelcase@^6.0.0, camelcase@^6.2.0: |
3473 | 3301 | resolved "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809" |
3474 | 3302 | integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg== |
3475 | 3303 | |
3476 | -caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001181: | |
3477 | - version "1.0.30001208" | |
3478 | - resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001208.tgz#a999014a35cebd4f98c405930a057a0d75352eb9" | |
3479 | - integrity sha512-OE5UE4+nBOro8Dyvv0lfx+SRtfVIOM9uhKqFmJeUbGriqhhStgp1A0OyBpgy3OUF8AhYCT+PVwPC1gMl2ZcQMA== | |
3480 | - | |
3481 | -caniuse-lite@^1.0.30001219, caniuse-lite@^1.0.30001230: | |
3482 | - version "1.0.30001230" | |
3483 | - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001230.tgz#8135c57459854b2240b57a4a6786044bdc5a9f71" | |
3484 | - integrity sha512-5yBd5nWCBS+jWKTcHOzXwo5xzcj4ePE/yjtkZyUV1BTUmrBaA9MRGC+e7mxnqXSA90CmCA8L3eKLaSUkt099IQ== | |
3304 | +caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001219, caniuse-lite@^1.0.30001230: | |
3305 | + version "1.0.30001237" | |
3306 | + resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001237.tgz#4b7783661515b8e7151fc6376cfd97f0e427b9e5" | |
3307 | + integrity sha512-pDHgRndit6p1NR2GhzMbQ6CkRrp4VKuSsqbcLeOQppYPKOYkKT/6ZvZDvKJUqcmtyWIAHuZq3SVS2vc1egCZzw== | |
3485 | 3308 | |
3486 | 3309 | capital-case@^1.0.4: |
3487 | 3310 | version "1.0.4" |
... | ... | @@ -3527,7 +3350,7 @@ chalk@^1.0.0, chalk@^1.1.3: |
3527 | 3350 | strip-ansi "^3.0.0" |
3528 | 3351 | supports-color "^2.0.0" |
3529 | 3352 | |
3530 | -chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.4.1, chalk@^2.4.2: | |
3353 | +chalk@^2.0.0, chalk@^2.0.1, chalk@^2.4.1, chalk@^2.4.2: | |
3531 | 3354 | version "2.4.2" |
3532 | 3355 | resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" |
3533 | 3356 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== |
... | ... | @@ -3544,15 +3367,7 @@ chalk@^3.0.0: |
3544 | 3367 | ansi-styles "^4.1.0" |
3545 | 3368 | supports-color "^7.1.0" |
3546 | 3369 | |
3547 | -chalk@^4.0.0, chalk@^4.1.0: | |
3548 | - version "4.1.0" | |
3549 | - resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" | |
3550 | - integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== | |
3551 | - dependencies: | |
3552 | - ansi-styles "^4.1.0" | |
3553 | - supports-color "^7.1.0" | |
3554 | - | |
3555 | -chalk@^4.1.1: | |
3370 | +chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1: | |
3556 | 3371 | version "4.1.1" |
3557 | 3372 | resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz#c80b3fab28bf6371e6863325eee67e618b77e6ad" |
3558 | 3373 | integrity sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg== |
... | ... | @@ -3615,7 +3430,7 @@ chardet@^0.7.0: |
3615 | 3430 | resolved "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" |
3616 | 3431 | integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== |
3617 | 3432 | |
3618 | -chokidar@^3.5.2: | |
3433 | +chokidar@^3.5.1, chokidar@^3.5.2: | |
3619 | 3434 | version "3.5.2" |
3620 | 3435 | resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz#dba3976fcadb016f66fd365021d91600d01c1e75" |
3621 | 3436 | integrity sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ== |
... | ... | @@ -3636,9 +3451,9 @@ ci-info@^2.0.0: |
3636 | 3451 | integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== |
3637 | 3452 | |
3638 | 3453 | ci-info@^3.1.1: |
3639 | - version "3.1.1" | |
3640 | - resolved "https://registry.npmjs.org/ci-info/-/ci-info-3.1.1.tgz#9a32fcefdf7bcdb6f0a7e1c0f8098ec57897b80a" | |
3641 | - integrity sha512-kdRWLBIJwdsYJWYJFtAFFYxybguqeF91qpZaggjG5Nf8QKdizFG2hjqvaTXbxFIcYbSaD74KpAXv6BSm17DHEQ== | |
3454 | + version "3.2.0" | |
3455 | + resolved "https://registry.npmjs.org/ci-info/-/ci-info-3.2.0.tgz#2876cb948a498797b5236f0095bc057d0dca38b6" | |
3456 | + integrity sha512-dVqRX7fLUm8J6FgHJ418XuIgDLZDkYcDFTeL6TA2gt5WlIZUQrrH6EZrNClwT/H0FateUsZkGIOPRrLbP+PR9A== | |
3642 | 3457 | |
3643 | 3458 | cjs-module-lexer@^1.0.0: |
3644 | 3459 | version "1.2.1" |
... | ... | @@ -3664,7 +3479,7 @@ clean-css@^4.2.3: |
3664 | 3479 | |
3665 | 3480 | clean-css@^5.1.2: |
3666 | 3481 | version "5.1.2" |
3667 | - resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-5.1.2.tgz#6ea0da7286b4ddc2469a1b776e2461a5007eed54" | |
3482 | + resolved "https://registry.npmjs.org/clean-css/-/clean-css-5.1.2.tgz#6ea0da7286b4ddc2469a1b776e2461a5007eed54" | |
3668 | 3483 | integrity sha512-QcaGg9OuMo+0Ds933yLOY+gHPWbxhxqF0HDexmToPf8pczvmvZGYzd+QqWp9/mkucAOKViI+dSFOqoZIvXbeBw== |
3669 | 3484 | dependencies: |
3670 | 3485 | source-map "~0.6.0" |
... | ... | @@ -3755,7 +3570,7 @@ clone@^1.0.2: |
3755 | 3570 | |
3756 | 3571 | clone@^2.1.1: |
3757 | 3572 | version "2.1.2" |
3758 | - resolved "https://registry.npmjs.com/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f" | |
3573 | + resolved "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f" | |
3759 | 3574 | integrity sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18= |
3760 | 3575 | |
3761 | 3576 | co@^4.6.0: |
... | ... | @@ -3803,7 +3618,7 @@ collection-visit@^1.0.0: |
3803 | 3618 | map-visit "^1.0.0" |
3804 | 3619 | object-visit "^1.0.0" |
3805 | 3620 | |
3806 | -color-convert@^1.9.0: | |
3621 | +color-convert@^1.9.0, color-convert@^1.9.1: | |
3807 | 3622 | version "1.9.3" |
3808 | 3623 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" |
3809 | 3624 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== |
... | ... | @@ -3822,11 +3637,27 @@ color-name@1.1.3: |
3822 | 3637 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" |
3823 | 3638 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= |
3824 | 3639 | |
3825 | -color-name@~1.1.4: | |
3640 | +color-name@^1.0.0, color-name@~1.1.4: | |
3826 | 3641 | version "1.1.4" |
3827 | 3642 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" |
3828 | 3643 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== |
3829 | 3644 | |
3645 | +color-string@^1.5.4: | |
3646 | + version "1.5.5" | |
3647 | + resolved "https://registry.npmjs.org/color-string/-/color-string-1.5.5.tgz#65474a8f0e7439625f3d27a6a19d89fc45223014" | |
3648 | + integrity sha512-jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg== | |
3649 | + dependencies: | |
3650 | + color-name "^1.0.0" | |
3651 | + simple-swizzle "^0.2.2" | |
3652 | + | |
3653 | +color@^3.1.3: | |
3654 | + version "3.1.3" | |
3655 | + resolved "https://registry.npmjs.org/color/-/color-3.1.3.tgz#ca67fb4e7b97d611dcde39eceed422067d91596e" | |
3656 | + integrity sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ== | |
3657 | + dependencies: | |
3658 | + color-convert "^1.9.1" | |
3659 | + color-string "^1.5.4" | |
3660 | + | |
3830 | 3661 | colorette@^1.2.1, colorette@^1.2.2: |
3831 | 3662 | version "1.2.2" |
3832 | 3663 | resolved "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94" |
... | ... | @@ -3864,6 +3695,11 @@ commander@^4.1.1: |
3864 | 3695 | resolved "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" |
3865 | 3696 | integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== |
3866 | 3697 | |
3698 | +commander@^6.0.0: | |
3699 | + version "6.2.1" | |
3700 | + resolved "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c" | |
3701 | + integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA== | |
3702 | + | |
3867 | 3703 | commander@~2.14.1: |
3868 | 3704 | version "2.14.1" |
3869 | 3705 | resolved "https://registry.npmjs.org/commander/-/commander-2.14.1.tgz#2235123e37af8ca3c65df45b026dbd357b01b9aa" |
... | ... | @@ -3874,27 +3710,7 @@ commander@~2.17.1: |
3874 | 3710 | resolved "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf" |
3875 | 3711 | integrity sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg== |
3876 | 3712 | |
3877 | -commitizen@^4.0.3: | |
3878 | - version "4.2.3" | |
3879 | - resolved "https://registry.npmjs.org/commitizen/-/commitizen-4.2.3.tgz#088d0ef72500240d331b11e02e288223667c1475" | |
3880 | - integrity sha512-pYlYEng7XMV2TW4xtjDKBGqeJ0Teq2zyRSx2S3Ml1XAplHSlJZK8vm1KdGclpMEZuGafbS5TeHXIVnHk8RWIzQ== | |
3881 | - dependencies: | |
3882 | - cachedir "2.2.0" | |
3883 | - cz-conventional-changelog "3.2.0" | |
3884 | - dedent "0.7.0" | |
3885 | - detect-indent "6.0.0" | |
3886 | - find-node-modules "2.0.0" | |
3887 | - find-root "1.1.0" | |
3888 | - fs-extra "8.1.0" | |
3889 | - glob "7.1.4" | |
3890 | - inquirer "6.5.2" | |
3891 | - is-utf8 "^0.2.1" | |
3892 | - lodash "^4.17.20" | |
3893 | - minimist "1.2.5" | |
3894 | - strip-bom "4.0.0" | |
3895 | - strip-json-comments "3.0.1" | |
3896 | - | |
3897 | -commitizen@^4.2.4: | |
3713 | +commitizen@^4.0.3, commitizen@^4.2.4: | |
3898 | 3714 | version "4.2.4" |
3899 | 3715 | resolved "https://registry.npmjs.org/commitizen/-/commitizen-4.2.4.tgz#a3e5b36bd7575f6bf6e7aa19dbbf06b0d8f37165" |
3900 | 3716 | integrity sha512-LlZChbDzg3Ir3O2S7jSo/cgWp5/QwylQVr59K4xayVq8S4/RdKzSyJkghAiZZHfhh5t4pxunUoyeg0ml1q/7aw== |
... | ... | @@ -3953,9 +3769,9 @@ concat-stream@^1.5.1: |
3953 | 3769 | typedarray "^0.0.6" |
3954 | 3770 | |
3955 | 3771 | config-chain@^1.1.11: |
3956 | - version "1.1.12" | |
3957 | - resolved "https://registry.npmjs.org/config-chain/-/config-chain-1.1.12.tgz#0fde8d091200eb5e808caf25fe618c02f48e4efa" | |
3958 | - integrity sha512-a1eOIcu8+7lUInge4Rpf/n4Krkf3Dd9lqhljRzII1/Zno/kRtUWnznPO3jOKBmTEktkt3fkxisUcivoj0ebzoA== | |
3772 | + version "1.1.13" | |
3773 | + resolved "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz#fad0795aa6a6cdaff9ed1b68e9dff94372c232f4" | |
3774 | + integrity sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ== | |
3959 | 3775 | dependencies: |
3960 | 3776 | ini "^1.3.4" |
3961 | 3777 | proto-list "~1.2.1" |
... | ... | @@ -4052,9 +3868,9 @@ conventional-changelog-codemirror@^2.0.8: |
4052 | 3868 | q "^1.5.1" |
4053 | 3869 | |
4054 | 3870 | conventional-changelog-conventionalcommits@^4.3.1, conventional-changelog-conventionalcommits@^4.5.0: |
4055 | - version "4.5.0" | |
4056 | - resolved "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.5.0.tgz#a02e0b06d11d342fdc0f00c91d78265ed0bc0a62" | |
4057 | - integrity sha512-buge9xDvjjOxJlyxUnar/+6i/aVEVGA7EEh4OafBCXPlLUQPGbRUBhBUveWRxzvR8TEjhKEP4BdepnpG2FSZXw== | |
3871 | + version "4.6.0" | |
3872 | + resolved "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.6.0.tgz#7fc17211dbca160acf24687bd2fdd5fd767750eb" | |
3873 | + integrity sha512-sj9tj3z5cnHaSJCYObA9nISf7eq/YjscLPoq6nmew4SiOjxqL2KRpK20fjnjVbpNDjJ2HR3MoVcWKXwbVvzS0A== | |
4058 | 3874 | dependencies: |
4059 | 3875 | compare-func "^2.0.0" |
4060 | 3876 | lodash "^4.17.15" |
... | ... | @@ -4200,18 +4016,18 @@ copy-descriptor@^0.1.0: |
4200 | 4016 | resolved "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" |
4201 | 4017 | integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= |
4202 | 4018 | |
4203 | -core-js-compat@^3.9.0, core-js-compat@^3.9.1: | |
4204 | - version "3.10.1" | |
4205 | - resolved "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.10.1.tgz#62183a3a77ceeffcc420d907a3e6fc67d9b27f1c" | |
4206 | - integrity sha512-ZHQTdTPkqvw2CeHiZC970NNJcnwzT6YIueDMASKt+p3WbZsLXOcoD392SkcWhkC0wBBHhlfhqGKKsNCQUozYtg== | |
4019 | +core-js-compat@^3.14.0: | |
4020 | + version "3.14.0" | |
4021 | + resolved "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.14.0.tgz#b574dabf29184681d5b16357bd33d104df3d29a5" | |
4022 | + integrity sha512-R4NS2eupxtiJU+VwgkF9WTpnSfZW4pogwKHd8bclWU2sp93Pr5S1uYJI84cMOubJRou7bcfL0vmwtLslWN5p3A== | |
4207 | 4023 | dependencies: |
4208 | - browserslist "^4.16.3" | |
4024 | + browserslist "^4.16.6" | |
4209 | 4025 | semver "7.0.0" |
4210 | 4026 | |
4211 | -core-js@^3.8.0, core-js@^3.8.2: | |
4212 | - version "3.10.1" | |
4213 | - resolved "https://registry.npmjs.org/core-js/-/core-js-3.10.1.tgz#e683963978b6806dcc6c0a4a8bd4ab0bdaf3f21a" | |
4214 | - integrity sha512-pwCxEXnj27XG47mu7SXAwhLP3L5CrlvCB91ANUkIz40P27kUcvNfSdvyZJ9CLHiVoKSp+TTChMQMSKQEH/IQxA== | |
4027 | +core-js@^3.12.1, core-js@^3.8.2: | |
4028 | + version "3.14.0" | |
4029 | + resolved "https://registry.npmjs.org/core-js/-/core-js-3.14.0.tgz#62322b98c71cc2018b027971a69419e2425c2a6c" | |
4030 | + integrity sha512-3s+ed8er9ahK+zJpp9ZtuVcDoFzHNiZsPbNAAE4KXgrRHbjSqqNN6xGSXq6bq7TZIbKj4NLrLb6bJ5i+vSVjHA== | |
4215 | 4031 | |
4216 | 4032 | core-util-is@~1.0.0: |
4217 | 4033 | version "1.0.2" |
... | ... | @@ -4220,7 +4036,7 @@ core-util-is@~1.0.0: |
4220 | 4036 | |
4221 | 4037 | cors@^2.8.5: |
4222 | 4038 | version "2.8.5" |
4223 | - resolved "https://registry.npmjs.com/cors/-/cors-2.8.5.tgz#eac11da51592dd86b9f06f6e7ac293b3df875d29" | |
4039 | + resolved "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz#eac11da51592dd86b9f06f6e7ac293b3df875d29" | |
4224 | 4040 | integrity sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g== |
4225 | 4041 | dependencies: |
4226 | 4042 | object-assign "^4" |
... | ... | @@ -4283,7 +4099,7 @@ cross-spawn@^5.0.1: |
4283 | 4099 | shebang-command "^1.2.0" |
4284 | 4100 | which "^1.2.9" |
4285 | 4101 | |
4286 | -cross-spawn@^6.0.0: | |
4102 | +cross-spawn@^6.0.0, cross-spawn@^6.0.5: | |
4287 | 4103 | version "6.0.5" |
4288 | 4104 | resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" |
4289 | 4105 | integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== |
... | ... | @@ -4335,7 +4151,7 @@ css-select@^2.0.0: |
4335 | 4151 | |
4336 | 4152 | css-select@^3.1.2: |
4337 | 4153 | version "3.1.2" |
4338 | - resolved "https://registry.npmjs.com/css-select/-/css-select-3.1.2.tgz#d52cbdc6fee379fba97fb0d3925abbd18af2d9d8" | |
4154 | + resolved "https://registry.npmjs.org/css-select/-/css-select-3.1.2.tgz#d52cbdc6fee379fba97fb0d3925abbd18af2d9d8" | |
4339 | 4155 | integrity sha512-qmss1EihSuBNWNNhHjxzxSfJoFBM/lERB/Q4EnsJQQC62R2evJDW481091oAdOr9uh46/0n4nrg0It5cAnj1RA== |
4340 | 4156 | dependencies: |
4341 | 4157 | boolbase "^1.0.0" |
... | ... | @@ -4360,6 +4176,11 @@ css-tree@^1.1.2: |
4360 | 4176 | mdn-data "2.0.14" |
4361 | 4177 | source-map "^0.6.1" |
4362 | 4178 | |
4179 | +css-unit-converter@^1.1.1: | |
4180 | + version "1.1.2" | |
4181 | + resolved "https://registry.npmjs.org/css-unit-converter/-/css-unit-converter-1.1.2.tgz#4c77f5a1954e6dbff60695ecb214e3270436ab21" | |
4182 | + integrity sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA== | |
4183 | + | |
4363 | 4184 | css-what@^3.2.1: |
4364 | 4185 | version "3.4.2" |
4365 | 4186 | resolved "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz#ea7026fcb01777edbde52124e21f327e7ae950e4" |
... | ... | @@ -4367,19 +4188,9 @@ css-what@^3.2.1: |
4367 | 4188 | |
4368 | 4189 | css-what@^4.0.0: |
4369 | 4190 | version "4.0.0" |
4370 | - resolved "https://registry.npmjs.com/css-what/-/css-what-4.0.0.tgz#35e73761cab2eeb3d3661126b23d7aa0e8432233" | |
4191 | + resolved "https://registry.npmjs.org/css-what/-/css-what-4.0.0.tgz#35e73761cab2eeb3d3661126b23d7aa0e8432233" | |
4371 | 4192 | integrity sha512-teijzG7kwYfNVsUh2H/YN62xW3KK9YhXEgSlbxMlcyjPNvdKJqFx5lrwlJgoFP1ZHlB89iGDlo/JyshKeRhv5A== |
4372 | 4193 | |
4373 | -css@^2.1.0: | |
4374 | - version "2.2.4" | |
4375 | - resolved "https://registry.npmjs.org/css/-/css-2.2.4.tgz#c646755c73971f2bba6a601e2cf2fd71b1298929" | |
4376 | - integrity sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw== | |
4377 | - dependencies: | |
4378 | - inherits "^2.0.3" | |
4379 | - source-map "^0.6.1" | |
4380 | - source-map-resolve "^0.5.2" | |
4381 | - urix "^0.1.0" | |
4382 | - | |
4383 | 4194 | cssesc@^3.0.0: |
4384 | 4195 | version "3.0.0" |
4385 | 4196 | resolved "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" |
... | ... | @@ -4410,9 +4221,9 @@ cssstyle@^2.3.0: |
4410 | 4221 | cssom "~0.3.6" |
4411 | 4222 | |
4412 | 4223 | csstype@^2.6.8: |
4413 | - version "2.6.16" | |
4414 | - resolved "https://registry.npmjs.org/csstype/-/csstype-2.6.16.tgz#544d69f547013b85a40d15bff75db38f34fe9c39" | |
4415 | - integrity sha512-61FBWoDHp/gRtsoDkq/B1nWrCUG/ok1E3tUrcNbZjsE9Cxd9yzUirjS3+nAATB8U4cTtaQmAHbNndoFz5L6C9Q== | |
4224 | + version "2.6.17" | |
4225 | + resolved "https://registry.npmjs.org/csstype/-/csstype-2.6.17.tgz#4cf30eb87e1d1a005d8b6510f95292413f6a1c0e" | |
4226 | + integrity sha512-u1wmTI1jJGzCJzWndZo8mk4wnPTZd1eOIYTYvuEyOQGfmDl3TrabCCfKnOC86FZwW/9djqTl933UF/cS425i9A== | |
4416 | 4227 | |
4417 | 4228 | currently-unhandled@^0.4.1: |
4418 | 4229 | version "0.4.1" |
... | ... | @@ -4470,6 +4281,13 @@ debug@2.6.9, debug@^2.2.0, debug@^2.3.3: |
4470 | 4281 | dependencies: |
4471 | 4282 | ms "2.0.0" |
4472 | 4283 | |
4284 | +debug@3.1.0: | |
4285 | + version "3.1.0" | |
4286 | + resolved "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" | |
4287 | + integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g== | |
4288 | + dependencies: | |
4289 | + ms "2.0.0" | |
4290 | + | |
4473 | 4291 | debug@4, debug@^4.0.0, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1: |
4474 | 4292 | version "4.3.1" |
4475 | 4293 | resolved "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" |
... | ... | @@ -4635,6 +4453,11 @@ define-property@^2.0.2: |
4635 | 4453 | is-descriptor "^1.0.2" |
4636 | 4454 | isobject "^3.0.1" |
4637 | 4455 | |
4456 | +defined@^1.0.0: | |
4457 | + version "1.0.0" | |
4458 | + resolved "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" | |
4459 | + integrity sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM= | |
4460 | + | |
4638 | 4461 | delayed-stream@~1.0.0: |
4639 | 4462 | version "1.0.0" |
4640 | 4463 | resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" |
... | ... | @@ -4655,6 +4478,20 @@ detect-newline@^3.0.0: |
4655 | 4478 | resolved "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" |
4656 | 4479 | integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== |
4657 | 4480 | |
4481 | +detective@^5.2.0: | |
4482 | + version "5.2.0" | |
4483 | + resolved "https://registry.npmjs.org/detective/-/detective-5.2.0.tgz#feb2a77e85b904ecdea459ad897cc90a99bd2a7b" | |
4484 | + integrity sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg== | |
4485 | + dependencies: | |
4486 | + acorn-node "^1.6.1" | |
4487 | + defined "^1.0.0" | |
4488 | + minimist "^1.1.1" | |
4489 | + | |
4490 | +didyoumean@^1.2.1: | |
4491 | + version "1.2.1" | |
4492 | + resolved "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.1.tgz#e92edfdada6537d484d73c0172fd1eba0c4976ff" | |
4493 | + integrity sha1-6S7f2tplN9SE1zwBcv0eugxJdv8= | |
4494 | + | |
4658 | 4495 | diff-match-patch@^1.0.5: |
4659 | 4496 | version "1.0.5" |
4660 | 4497 | resolved "https://registry.npmjs.org/diff-match-patch/-/diff-match-patch-1.0.5.tgz#abb584d5f10cd1196dfc55aa03701592ae3f7b37" |
... | ... | @@ -4676,9 +4513,9 @@ diff@^4.0.1: |
4676 | 4513 | integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== |
4677 | 4514 | |
4678 | 4515 | dijkstrajs@^1.0.1: |
4679 | - version "1.0.1" | |
4680 | - resolved "https://registry.npmjs.org/dijkstrajs/-/dijkstrajs-1.0.1.tgz#d3cd81221e3ea40742cfcde556d4e99e98ddc71b" | |
4681 | - integrity sha1-082BIh4+pAdCz83lVtTpnpjdxxs= | |
4516 | + version "1.0.2" | |
4517 | + resolved "https://registry.npmjs.org/dijkstrajs/-/dijkstrajs-1.0.2.tgz#2e48c0d3b825462afe75ab4ad5e829c8ece36257" | |
4518 | + integrity sha512-QV6PMaHTCNmKSeP6QoXhVTw9snc9VD8MulTT0Bd99Pacp4SS1cjcrYPgBPmibqKVtMJJfqC6XvOXgPMEEPH/fg== | |
4682 | 4519 | |
4683 | 4520 | dir-glob@^3.0.1: |
4684 | 4521 | version "3.0.1" |
... | ... | @@ -4687,6 +4524,11 @@ dir-glob@^3.0.1: |
4687 | 4524 | dependencies: |
4688 | 4525 | path-type "^4.0.0" |
4689 | 4526 | |
4527 | +dlv@^1.1.3: | |
4528 | + version "1.1.3" | |
4529 | + resolved "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79" | |
4530 | + integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA== | |
4531 | + | |
4690 | 4532 | doctrine@^3.0.0: |
4691 | 4533 | version "3.0.0" |
4692 | 4534 | resolved "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" |
... | ... | @@ -4718,12 +4560,12 @@ dom-serializer@0: |
4718 | 4560 | entities "^2.0.0" |
4719 | 4561 | |
4720 | 4562 | dom-serializer@^1.0.1: |
4721 | - version "1.3.1" | |
4722 | - resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.1.tgz#d845a1565d7c041a95e5dab62184ab41e3a519be" | |
4723 | - integrity sha512-Pv2ZluG5ife96udGgEDovOOOA5UELkltfJpnIExPrAk1LTvecolUGn6lIaoLh86d83GiB86CjzciMd9BuRB71Q== | |
4563 | + version "1.3.2" | |
4564 | + resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.2.tgz#6206437d32ceefaec7161803230c7a20bc1b4d91" | |
4565 | + integrity sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig== | |
4724 | 4566 | dependencies: |
4725 | 4567 | domelementtype "^2.0.1" |
4726 | - domhandler "^4.0.0" | |
4568 | + domhandler "^4.2.0" | |
4727 | 4569 | entities "^2.0.0" |
4728 | 4570 | |
4729 | 4571 | domelementtype@1, domelementtype@^1.3.1: |
... | ... | @@ -4746,18 +4588,11 @@ domexception@^2.0.1: |
4746 | 4588 | domhandler@^2.3.0: |
4747 | 4589 | version "2.4.2" |
4748 | 4590 | resolved "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803" |
4749 | - integrity sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA== | |
4750 | - dependencies: | |
4751 | - domelementtype "1" | |
4752 | - | |
4753 | -domhandler@^4.0.0: | |
4754 | - version "4.1.0" | |
4755 | - resolved "https://registry.npmjs.org/domhandler/-/domhandler-4.1.0.tgz#c1d8d494d5ec6db22de99e46a149c2a4d23ddd43" | |
4756 | - integrity sha512-/6/kmsGlMY4Tup/nGVutdrK9yQi4YjWVcVeoQmixpzjOUK1U7pQkvAPHBJeUxOgxF0J8f8lwCJSlCfD0V4CMGQ== | |
4591 | + integrity sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA== | |
4757 | 4592 | dependencies: |
4758 | - domelementtype "^2.2.0" | |
4593 | + domelementtype "1" | |
4759 | 4594 | |
4760 | -domhandler@^4.2.0: | |
4595 | +domhandler@^4.0.0, domhandler@^4.2.0: | |
4761 | 4596 | version "4.2.0" |
4762 | 4597 | resolved "https://registry.npmjs.org/domhandler/-/domhandler-4.2.0.tgz#f9768a5f034be60a89a27c2e4d0f74eba0d8b059" |
4763 | 4598 | integrity sha512-zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA== |
... | ... | @@ -4773,9 +4608,9 @@ domutils@^1.5.1, domutils@^1.7.0: |
4773 | 4608 | domelementtype "1" |
4774 | 4609 | |
4775 | 4610 | domutils@^2.4.3, domutils@^2.5.2: |
4776 | - version "2.6.0" | |
4777 | - resolved "https://registry.npmjs.org/domutils/-/domutils-2.6.0.tgz#2e15c04185d43fb16ae7057cb76433c6edb938b7" | |
4778 | - integrity sha512-y0BezHuy4MDYxh6OvolXYsH+1EMGmFbwv5FKW7ovwMG6zTPWqNPq3WF9ayZssFq+UlKdffGLbOEaghNdaOm1WA== | |
4611 | + version "2.7.0" | |
4612 | + resolved "https://registry.npmjs.org/domutils/-/domutils-2.7.0.tgz#8ebaf0c41ebafcf55b0b72ec31c56323712c5442" | |
4613 | + integrity sha512-8eaHa17IwJUPAiB+SoTYBo5mCdeMgdcAoXJ59m6DT1vw+5iLS3gNoqYaRowaBKtGVrOF1Jz4yDTgYKLK2kvfJg== | |
4779 | 4614 | dependencies: |
4780 | 4615 | dom-serializer "^1.0.1" |
4781 | 4616 | domelementtype "^2.2.0" |
... | ... | @@ -4805,7 +4640,7 @@ dot-prop@^5.1.0: |
4805 | 4640 | |
4806 | 4641 | dotenv@^10.0.0: |
4807 | 4642 | version "10.0.0" |
4808 | - resolved "https://registry.npmjs.com/dotenv/-/dotenv-10.0.0.tgz#3d4227b8fb95f81096cdd2b66653fb2c7085ba81" | |
4643 | + resolved "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz#3d4227b8fb95f81096cdd2b66653fb2c7085ba81" | |
4809 | 4644 | integrity sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q== |
4810 | 4645 | |
4811 | 4646 | download@^6.2.2: |
... | ... | @@ -4883,15 +4718,10 @@ ejs@^3.1.6: |
4883 | 4718 | dependencies: |
4884 | 4719 | jake "^10.6.1" |
4885 | 4720 | |
4886 | -electron-to-chromium@^1.3.649: | |
4887 | - version "1.3.712" | |
4888 | - resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.712.tgz#ae467ffe5f95961c6d41ceefe858fc36eb53b38f" | |
4889 | - integrity sha512-3kRVibBeCM4vsgoHHGKHmPocLqtFAGTrebXxxtgKs87hNUzXrX2NuS3jnBys7IozCnw7viQlozxKkmty2KNfrw== | |
4890 | - | |
4891 | 4721 | electron-to-chromium@^1.3.723: |
4892 | - version "1.3.739" | |
4893 | - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.739.tgz#f07756aa92cabd5a6eec6f491525a64fe62f98b9" | |
4894 | - integrity sha512-+LPJVRsN7hGZ9EIUUiWCpO7l4E3qBYHNadazlucBfsXBbccDFNKUBAgzE68FnkWGJPwD/AfKhSzL+G+Iqb8A4A== | |
4722 | + version "1.3.752" | |
4723 | + resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.752.tgz#0728587f1b9b970ec9ffad932496429aef750d09" | |
4724 | + integrity sha512-2Tg+7jSl3oPxgsBsWKh5H83QazTkmWG/cnNwJplmyZc7KcN61+I10oUgaXSVk/NwfvN3BdkKDR4FYuRBQQ2v0A== | |
4895 | 4725 | |
4896 | 4726 | emittery@^0.8.1: |
4897 | 4727 | version "0.8.1" |
... | ... | @@ -4964,10 +4794,10 @@ error-ex@^1.2.0, error-ex@^1.3.1: |
4964 | 4794 | dependencies: |
4965 | 4795 | is-arrayish "^0.2.1" |
4966 | 4796 | |
4967 | -es-abstract@^1.17.2, es-abstract@^1.18.0-next.2: | |
4968 | - version "1.18.0" | |
4969 | - resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0.tgz#ab80b359eecb7ede4c298000390bc5ac3ec7b5a4" | |
4970 | - integrity sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw== | |
4797 | +es-abstract@^1.17.2, es-abstract@^1.18.0-next.2, es-abstract@^1.18.2: | |
4798 | + version "1.18.3" | |
4799 | + resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.3.tgz#25c4c3380a27aa203c44b2b685bba94da31b63e0" | |
4800 | + integrity sha512-nQIr12dxV7SSxE6r6f1l3DtAeEYdsGpps13dR0TwJg1S8gyp4ZPgy3FZcHBgbiQqnoqSTb+oC+kO4UQ0C/J8vw== | |
4971 | 4801 | dependencies: |
4972 | 4802 | call-bind "^1.0.2" |
4973 | 4803 | es-to-primitive "^1.2.1" |
... | ... | @@ -4977,14 +4807,14 @@ es-abstract@^1.17.2, es-abstract@^1.18.0-next.2: |
4977 | 4807 | has-symbols "^1.0.2" |
4978 | 4808 | is-callable "^1.2.3" |
4979 | 4809 | is-negative-zero "^2.0.1" |
4980 | - is-regex "^1.1.2" | |
4981 | - is-string "^1.0.5" | |
4982 | - object-inspect "^1.9.0" | |
4810 | + is-regex "^1.1.3" | |
4811 | + is-string "^1.0.6" | |
4812 | + object-inspect "^1.10.3" | |
4983 | 4813 | object-keys "^1.1.1" |
4984 | 4814 | object.assign "^4.1.2" |
4985 | 4815 | string.prototype.trimend "^1.0.4" |
4986 | 4816 | string.prototype.trimstart "^1.0.4" |
4987 | - unbox-primitive "^1.0.0" | |
4817 | + unbox-primitive "^1.0.1" | |
4988 | 4818 | |
4989 | 4819 | es-module-lexer@^0.6.0: |
4990 | 4820 | version "0.6.0" |
... | ... | @@ -5000,6 +4830,18 @@ es-to-primitive@^1.2.1: |
5000 | 4830 | is-date-object "^1.0.1" |
5001 | 4831 | is-symbol "^1.0.2" |
5002 | 4832 | |
4833 | +es6-promise@^4.0.3: | |
4834 | + version "4.2.8" | |
4835 | + resolved "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a" | |
4836 | + integrity sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w== | |
4837 | + | |
4838 | +es6-promisify@^5.0.0: | |
4839 | + version "5.0.0" | |
4840 | + resolved "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203" | |
4841 | + integrity sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM= | |
4842 | + dependencies: | |
4843 | + es6-promise "^4.0.3" | |
4844 | + | |
5003 | 4845 | esbuild-node-loader@^0.1.1: |
5004 | 4846 | version "0.1.1" |
5005 | 4847 | resolved "https://registry.npmjs.org/esbuild-node-loader/-/esbuild-node-loader-0.1.1.tgz#b43937133e70435f9dd1dc058a5ac27ccc7addbe" |
... | ... | @@ -5009,7 +4851,7 @@ esbuild-node-loader@^0.1.1: |
5009 | 4851 | |
5010 | 4852 | esbuild-plugin-alias@^0.1.2: |
5011 | 4853 | version "0.1.2" |
5012 | - resolved "https://registry.yarnpkg.com/esbuild-plugin-alias/-/esbuild-plugin-alias-0.1.2.tgz#1232fbde807c0c8ad44c44ec859819eb492e12a8" | |
4854 | + resolved "https://registry.npmjs.org/esbuild-plugin-alias/-/esbuild-plugin-alias-0.1.2.tgz#1232fbde807c0c8ad44c44ec859819eb492e12a8" | |
5013 | 4855 | integrity sha512-WsX0OJy8IGOsGZV+4oHEU5B6XQUpxOsZN1iSoYf9COTDbY7WXcOwd1oCLYNWUIWCExyGXSghIGq2k7sXBldxwQ== |
5014 | 4856 | |
5015 | 4857 | esbuild-register@^2.6.0: |
... | ... | @@ -5025,25 +4867,15 @@ esbuild@0.11.3: |
5025 | 4867 | resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.11.3.tgz#b57165b907be4ffba651f6450538ce8d8c1d5eb0" |
5026 | 4868 | integrity sha512-BzVRHcCtFepjS9WcqRjqoIxLqgpK21a8J4Zi4msSGxDxiXVO1IbcqT1KjhdDDnJxKfe7bvzZrvMEX+bVO0Elcw== |
5027 | 4869 | |
5028 | -esbuild@^0.11.20: | |
5029 | - version "0.11.20" | |
5030 | - resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.11.20.tgz#7cefa1aee8b372c184e42457885f7ce5d3e62a1e" | |
5031 | - integrity sha512-QOZrVpN/Yz74xfat0H6euSgn3RnwLevY1mJTEXneukz1ln9qB+ieaerRMzSeETpz/UJWsBMzRVR/andBht5WKw== | |
5032 | - | |
5033 | -esbuild@^0.11.23: | |
4870 | +esbuild@^0.11.20, esbuild@^0.11.23: | |
5034 | 4871 | version "0.11.23" |
5035 | 4872 | resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.11.23.tgz#c42534f632e165120671d64db67883634333b4b8" |
5036 | 4873 | integrity sha512-iaiZZ9vUF5wJV8ob1tl+5aJTrwDczlvGP0JoMmnpC2B0ppiMCu8n8gmy5ZTGl5bcG081XBVn+U+jP+mPFm5T5Q== |
5037 | 4874 | |
5038 | -esbuild@^0.12.5, esbuild@^0.12.8: | |
5039 | - version "0.12.8" | |
5040 | - resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.12.8.tgz#ac90da77cb3bfbf49ab815200bcef7ffe1a3348f" | |
5041 | - integrity sha512-sx/LwlP/SWTGsd9G4RlOPrXnIihAJ2xwBUmzoqe2nWwbXORMQWtAGNJNYLBJJqa3e9PWvVzxdrtyFZJcr7D87g== | |
5042 | - | |
5043 | -esbuild@^0.12.6: | |
5044 | - version "0.12.6" | |
5045 | - resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.12.6.tgz#85bc755c7cf3005d4f34b4f10f98049ce0ee67ce" | |
5046 | - integrity sha512-RDvVLvAjsq/kIZJoneMiUOH7EE7t2QaW7T3Q7EdQij14+bZbDq5sndb0tTanmHIFSqZVMBMMyqzVHkS3dJobeA== | |
4875 | +esbuild@^0.12.6, esbuild@^0.12.8: | |
4876 | + version "0.12.9" | |
4877 | + resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.12.9.tgz#bed4e7087c286cd81d975631f77d47feb1660070" | |
4878 | + integrity sha512-MWRhAbMOJ9RJygCrt778rz/qNYgA4ZVj6aXnNPxFjs7PmIpb0fuB9Gmg5uWrr6n++XKwwm/RmSz6RR5JL2Ocsw== | |
5047 | 4879 | |
5048 | 4880 | escalade@^3.1.1: |
5049 | 4881 | version "3.1.1" |
... | ... | @@ -5133,7 +4965,7 @@ eslint-utils@^2.1.0: |
5133 | 4965 | |
5134 | 4966 | eslint-utils@^3.0.0: |
5135 | 4967 | version "3.0.0" |
5136 | - resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" | |
4968 | + resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" | |
5137 | 4969 | integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== |
5138 | 4970 | dependencies: |
5139 | 4971 | eslint-visitor-keys "^2.0.0" |
... | ... | @@ -5144,9 +4976,9 @@ eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0: |
5144 | 4976 | integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== |
5145 | 4977 | |
5146 | 4978 | eslint-visitor-keys@^2.0.0: |
5147 | - version "2.0.0" | |
5148 | - resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz#21fdc8fbcd9c795cc0321f0563702095751511a8" | |
5149 | - integrity sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ== | |
4979 | + version "2.1.0" | |
4980 | + resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" | |
4981 | + integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== | |
5150 | 4982 | |
5151 | 4983 | eslint@^7.29.0: |
5152 | 4984 | version "7.29.0" |
... | ... | @@ -5267,7 +5099,7 @@ esutils@^2.0.2: |
5267 | 5099 | |
5268 | 5100 | etag@^1.8.1: |
5269 | 5101 | version "1.8.1" |
5270 | - resolved "https://registry.npmjs.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" | |
5102 | + resolved "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" | |
5271 | 5103 | integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= |
5272 | 5104 | |
5273 | 5105 | eventemitter3@^4.0.0: |
... | ... | @@ -5328,9 +5160,9 @@ execa@^4.0.0: |
5328 | 5160 | strip-final-newline "^2.0.0" |
5329 | 5161 | |
5330 | 5162 | execa@^5.0.0: |
5331 | - version "5.0.0" | |
5332 | - resolved "https://registry.npmjs.org/execa/-/execa-5.0.0.tgz#4029b0007998a841fbd1032e5f4de86a3c1e3376" | |
5333 | - integrity sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ== | |
5163 | + version "5.1.1" | |
5164 | + resolved "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" | |
5165 | + integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== | |
5334 | 5166 | dependencies: |
5335 | 5167 | cross-spawn "^7.0.3" |
5336 | 5168 | get-stream "^6.0.0" |
... | ... | @@ -5442,7 +5274,7 @@ external-editor@^3.0.3: |
5442 | 5274 | iconv-lite "^0.4.24" |
5443 | 5275 | tmp "^0.0.33" |
5444 | 5276 | |
5445 | -extglob@^2.0.2, extglob@^2.0.4: | |
5277 | +extglob@^2.0.2: | |
5446 | 5278 | version "2.0.4" |
5447 | 5279 | resolved "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" |
5448 | 5280 | integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== |
... | ... | @@ -5456,13 +5288,6 @@ extglob@^2.0.2, extglob@^2.0.4: |
5456 | 5288 | snapdragon "^0.8.1" |
5457 | 5289 | to-regex "^3.0.1" |
5458 | 5290 | |
5459 | -extract-from-css@^0.4.4: | |
5460 | - version "0.4.4" | |
5461 | - resolved "https://registry.npmjs.org/extract-from-css/-/extract-from-css-0.4.4.tgz#1ea7df2e7c7c6eb9922fa08e8adaea486f6f8f92" | |
5462 | - integrity sha1-HqffLnx8brmSL6COitrqSG9vj5I= | |
5463 | - dependencies: | |
5464 | - css "^2.1.0" | |
5465 | - | |
5466 | 5291 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: |
5467 | 5292 | version "3.1.3" |
5468 | 5293 | resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" |
... | ... | @@ -5553,7 +5378,7 @@ figures@^2.0.0: |
5553 | 5378 | dependencies: |
5554 | 5379 | escape-string-regexp "^1.0.5" |
5555 | 5380 | |
5556 | -figures@^3.0.0, figures@^3.2.0: | |
5381 | +figures@^3.0.0: | |
5557 | 5382 | version "3.2.0" |
5558 | 5383 | resolved "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" |
5559 | 5384 | integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== |
... | ... | @@ -5653,14 +5478,6 @@ finalhandler@1.1.2: |
5653 | 5478 | statuses "~1.5.0" |
5654 | 5479 | unpipe "~1.0.0" |
5655 | 5480 | |
5656 | -find-node-modules@2.0.0: | |
5657 | - version "2.0.0" | |
5658 | - resolved "https://registry.npmjs.org/find-node-modules/-/find-node-modules-2.0.0.tgz#5db1fb9e668a3d451db3d618cd167cdd59e41b69" | |
5659 | - integrity sha512-8MWIBRgJi/WpjjfVXumjPKCtmQ10B+fjx6zmSA+770GMJirLhWIzg8l763rhjl9xaeaHbnxPNRQKq2mgMhr+aw== | |
5660 | - dependencies: | |
5661 | - findup-sync "^3.0.0" | |
5662 | - merge "^1.2.1" | |
5663 | - | |
5664 | 5481 | find-node-modules@^2.1.2: |
5665 | 5482 | version "2.1.2" |
5666 | 5483 | resolved "https://registry.npmjs.org/find-node-modules/-/find-node-modules-2.1.2.tgz#57565a3455baf671b835bc6b2134a9b938b9c53c" |
... | ... | @@ -5719,16 +5536,6 @@ find-versions@^3.0.0: |
5719 | 5536 | dependencies: |
5720 | 5537 | semver-regex "^2.0.0" |
5721 | 5538 | |
5722 | -findup-sync@^3.0.0: | |
5723 | - version "3.0.0" | |
5724 | - resolved "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz#17b108f9ee512dfb7a5c7f3c8b27ea9e1a9c08d1" | |
5725 | - integrity sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg== | |
5726 | - dependencies: | |
5727 | - detect-file "^1.0.0" | |
5728 | - is-glob "^4.0.0" | |
5729 | - micromatch "^3.0.4" | |
5730 | - resolve-dir "^1.0.1" | |
5731 | - | |
5732 | 5539 | findup-sync@^4.0.0: |
5733 | 5540 | version "4.0.0" |
5734 | 5541 | resolved "https://registry.npmjs.org/findup-sync/-/findup-sync-4.0.0.tgz#956c9cdde804052b881b428512905c4a5f2cdef0" |
... | ... | @@ -5758,9 +5565,9 @@ fn-name@^2.0.1: |
5758 | 5565 | integrity sha1-UhTXU3pNBqSjAcDMJi/rhBiAAuc= |
5759 | 5566 | |
5760 | 5567 | follow-redirects@^1.0.0, follow-redirects@^1.10.0: |
5761 | - version "1.13.3" | |
5762 | - resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.3.tgz#e5598ad50174c1bc4e872301e82ac2cd97f90267" | |
5763 | - integrity sha512-DUgl6+HDzB0iEptNQEXLx/KhTmDb8tZUHSeLqpnjpknR70H0nC2t9N73BK6fN4hOvJ84pKlIQVQ4k5FFlBedKA== | |
5568 | + version "1.14.1" | |
5569 | + resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.1.tgz#d9114ded0a1cfdd334e164e6662ad02bfd91ff43" | |
5570 | + integrity sha512-HWqDgT7ZEkqRzBvc2s64vSZ/hfOceEol3ac/7tKwzuvEyWx3/4UegXh5oBOIotkGsObyk3xznnSRVADBgWSQVg== | |
5764 | 5571 | |
5765 | 5572 | for-in@^1.0.2: |
5766 | 5573 | version "1.0.2" |
... | ... | @@ -5788,7 +5595,7 @@ frac@~1.1.2: |
5788 | 5595 | |
5789 | 5596 | fraction.js@^4.1.1: |
5790 | 5597 | version "4.1.1" |
5791 | - resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.1.1.tgz#ac4e520473dae67012d618aab91eda09bcb400ff" | |
5598 | + resolved "https://registry.npmjs.org/fraction.js/-/fraction.js-4.1.1.tgz#ac4e520473dae67012d618aab91eda09bcb400ff" | |
5792 | 5599 | integrity sha512-MHOhvvxHTfRFpF1geTK9czMIZ6xclsEor2wkIGYYq+PxcQqT7vStJqjhe6S1TenZrMZzo+wlqOufBDVepUEgPg== |
5793 | 5600 | |
5794 | 5601 | fragment-cache@^0.2.1: |
... | ... | @@ -5844,7 +5651,7 @@ fs.realpath@^1.0.0: |
5844 | 5651 | resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" |
5845 | 5652 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= |
5846 | 5653 | |
5847 | -fsevents@^2.3.2, fsevents@~2.3.1, fsevents@~2.3.2: | |
5654 | +fsevents@^2.3.2, fsevents@~2.3.2: | |
5848 | 5655 | version "2.3.2" |
5849 | 5656 | resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" |
5850 | 5657 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== |
... | ... | @@ -5951,9 +5758,9 @@ get-stream@^5.0.0, get-stream@^5.1.0: |
5951 | 5758 | pump "^3.0.0" |
5952 | 5759 | |
5953 | 5760 | get-stream@^6.0.0: |
5954 | - version "6.0.0" | |
5955 | - resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.0.tgz#3e0012cb6827319da2706e601a1583e8629a6718" | |
5956 | - integrity sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg== | |
5761 | + version "6.0.1" | |
5762 | + resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" | |
5763 | + integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== | |
5957 | 5764 | |
5958 | 5765 | get-value@^2.0.3, get-value@^2.0.6: |
5959 | 5766 | version "2.0.6" |
... | ... | @@ -6011,6 +5818,13 @@ glob-parent@^5.1.0, glob-parent@^5.1.2, glob-parent@~5.1.2: |
6011 | 5818 | dependencies: |
6012 | 5819 | is-glob "^4.0.1" |
6013 | 5820 | |
5821 | +glob-parent@^6.0.0: | |
5822 | + version "6.0.0" | |
5823 | + resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.0.tgz#f851b59b388e788f3a44d63fab50382b2859c33c" | |
5824 | + integrity sha512-Hdd4287VEJcZXUwv1l8a+vXC1GjOQqXe+VS30w/ypihpcnu9M1n3xeYeJu5CBpeEQj2nAab2xxz28GuA3vp4Ww== | |
5825 | + dependencies: | |
5826 | + is-glob "^4.0.1" | |
5827 | + | |
6014 | 5828 | glob@7.1.4: |
6015 | 5829 | version "7.1.4" |
6016 | 5830 | resolved "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" |
... | ... | @@ -6023,19 +5837,7 @@ glob@7.1.4: |
6023 | 5837 | once "^1.3.0" |
6024 | 5838 | path-is-absolute "^1.0.0" |
6025 | 5839 | |
6026 | -glob@^7.0.0, glob@^7.1.3, glob@^7.1.6: | |
6027 | - version "7.1.6" | |
6028 | - resolved "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" | |
6029 | - integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== | |
6030 | - dependencies: | |
6031 | - fs.realpath "^1.0.0" | |
6032 | - inflight "^1.0.4" | |
6033 | - inherits "2" | |
6034 | - minimatch "^3.0.4" | |
6035 | - once "^1.3.0" | |
6036 | - path-is-absolute "^1.0.0" | |
6037 | - | |
6038 | -glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.4: | |
5840 | +glob@^7.0.0, glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6: | |
6039 | 5841 | version "7.1.7" |
6040 | 5842 | resolved "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" |
6041 | 5843 | integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== |
... | ... | @@ -6095,14 +5897,7 @@ globals@^11.1.0: |
6095 | 5897 | resolved "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" |
6096 | 5898 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== |
6097 | 5899 | |
6098 | -globals@^13.6.0: | |
6099 | - version "13.8.0" | |
6100 | - resolved "https://registry.npmjs.org/globals/-/globals-13.8.0.tgz#3e20f504810ce87a8d72e55aecf8435b50f4c1b3" | |
6101 | - integrity sha512-rHtdA6+PDBIjeEvA91rpqzEvk/k3/i7EeNQiryiWuJH0Hw9cpyJMAt2jtbAwUaRdhD+573X4vWw6IcjKPasi9Q== | |
6102 | - dependencies: | |
6103 | - type-fest "^0.20.2" | |
6104 | - | |
6105 | -globals@^13.9.0: | |
5900 | +globals@^13.6.0, globals@^13.9.0: | |
6106 | 5901 | version "13.9.0" |
6107 | 5902 | resolved "https://registry.npmjs.org/globals/-/globals-13.9.0.tgz#4bf2bf635b334a173fb1daf7c5e6b218ecdc06cb" |
6108 | 5903 | integrity sha512-74/FduwI/JaIrr1H8e71UbDE+5x7pIPs1C2rrwC52SszOo043CsWOZEMW7o2Y58xwm9b+0RBKDxY5n2sUpEFxA== |
... | ... | @@ -6124,9 +5919,9 @@ globby@^10.0.0: |
6124 | 5919 | slash "^3.0.0" |
6125 | 5920 | |
6126 | 5921 | globby@^11.0.3: |
6127 | - version "11.0.3" | |
6128 | - resolved "https://registry.npmjs.org/globby/-/globby-11.0.3.tgz#9b1f0cb523e171dd1ad8c7b2a9fb4b644b9593cb" | |
6129 | - integrity sha512-ffdmosjA807y7+lA1NM0jELARVmYul/715xiILEjo3hBLPTcirgQNnXECn5g3mtR8TOLCVbkfua1Hpen25/Xcg== | |
5922 | + version "11.0.4" | |
5923 | + resolved "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz#2cbaff77c2f2a62e71e9b2813a67b97a3a3001a5" | |
5924 | + integrity sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg== | |
6130 | 5925 | dependencies: |
6131 | 5926 | array-union "^2.1.0" |
6132 | 5927 | dir-glob "^3.0.1" |
... | ... | @@ -6243,7 +6038,7 @@ has-bigints@^1.0.1: |
6243 | 6038 | |
6244 | 6039 | has-flag@^1.0.0: |
6245 | 6040 | version "1.0.0" |
6246 | - resolved "https://registry.npmjs.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" | |
6041 | + resolved "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" | |
6247 | 6042 | integrity sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo= |
6248 | 6043 | |
6249 | 6044 | has-flag@^3.0.0: |
... | ... | @@ -6465,6 +6260,14 @@ http-cache-semantics@^4.0.0: |
6465 | 6260 | resolved "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390" |
6466 | 6261 | integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ== |
6467 | 6262 | |
6263 | +http-proxy-agent@^2.1.0: | |
6264 | + version "2.1.0" | |
6265 | + resolved "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-2.1.0.tgz#e4821beef5b2142a2026bd73926fe537631c5405" | |
6266 | + integrity sha512-qwHbBLV7WviBl0rQsOzH6o5lwyOIvwp/BdFnvVxXORldu5TmjFfjzBcWUWS5kWAZhmv+JtiDhSuQCp4sBfbIgg== | |
6267 | + dependencies: | |
6268 | + agent-base "4" | |
6269 | + debug "3.1.0" | |
6270 | + | |
6468 | 6271 | http-proxy-agent@^4.0.1: |
6469 | 6272 | version "4.0.1" |
6470 | 6273 | resolved "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a" |
... | ... | @@ -6499,6 +6302,14 @@ http-server@^0.12.3: |
6499 | 6302 | secure-compare "3.0.1" |
6500 | 6303 | union "~0.5.0" |
6501 | 6304 | |
6305 | +https-proxy-agent@^2.2.4: | |
6306 | + version "2.2.4" | |
6307 | + resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.4.tgz#4ee7a737abd92678a293d9b34a1af4d0d08c787b" | |
6308 | + integrity sha512-OmvfoQ53WLjtA9HeYP9RNrWMJzzAz1JGaSFr1nijg0PVR1JaD/xbJq1mdEIIlxGpXp9eSe/O2LgU9DJmTPd0Eg== | |
6309 | + dependencies: | |
6310 | + agent-base "^4.3.0" | |
6311 | + debug "^3.1.0" | |
6312 | + | |
6502 | 6313 | https-proxy-agent@^5.0.0: |
6503 | 6314 | version "5.0.0" |
6504 | 6315 | resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2" |
... | ... | @@ -6541,7 +6352,7 @@ icss-utils@^5.0.0: |
6541 | 6352 | |
6542 | 6353 | ids@^1.0.0: |
6543 | 6354 | version "1.0.0" |
6544 | - resolved "https://registry.npmjs.com/ids/-/ids-1.0.0.tgz#df67f2d37b81d7c2effc87e03d17ebff95a58c05" | |
6355 | + resolved "https://registry.npmjs.org/ids/-/ids-1.0.0.tgz#df67f2d37b81d7c2effc87e03d17ebff95a58c05" | |
6545 | 6356 | integrity sha512-Zvtq1xUto4LttpstyOlFum8lKx+i1OmRfg+6A9drFS9iSZsDPMHG4Sof/qwNR4kCU7jBeWFPrY2ocHxiz7cCRw== |
6546 | 6357 | |
6547 | 6358 | ieee754@^1.1.13: |
... | ... | @@ -6637,6 +6448,13 @@ imagemin@^7.0.1: |
6637 | 6448 | p-pipe "^3.0.0" |
6638 | 6449 | replace-ext "^1.0.0" |
6639 | 6450 | |
6451 | +import-cwd@^3.0.0: | |
6452 | + version "3.0.0" | |
6453 | + resolved "https://registry.npmjs.org/import-cwd/-/import-cwd-3.0.0.tgz#20845547718015126ea9b3676b7592fb8bd4cf92" | |
6454 | + integrity sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg== | |
6455 | + dependencies: | |
6456 | + import-from "^3.0.0" | |
6457 | + | |
6640 | 6458 | import-fresh@^3.0.0, import-fresh@^3.2.1: |
6641 | 6459 | version "3.3.0" |
6642 | 6460 | resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" |
... | ... | @@ -6645,6 +6463,13 @@ import-fresh@^3.0.0, import-fresh@^3.2.1: |
6645 | 6463 | parent-module "^1.0.0" |
6646 | 6464 | resolve-from "^4.0.0" |
6647 | 6465 | |
6466 | +import-from@^3.0.0: | |
6467 | + version "3.0.0" | |
6468 | + resolved "https://registry.npmjs.org/import-from/-/import-from-3.0.0.tgz#055cfec38cd5a27d8057ca51376d7d3bf0891966" | |
6469 | + integrity sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ== | |
6470 | + dependencies: | |
6471 | + resolve-from "^5.0.0" | |
6472 | + | |
6648 | 6473 | import-lazy@^2.1.0: |
6649 | 6474 | version "2.1.0" |
6650 | 6475 | resolved "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" |
... | ... | @@ -6685,11 +6510,6 @@ indent-string@^4.0.0: |
6685 | 6510 | resolved "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" |
6686 | 6511 | integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== |
6687 | 6512 | |
6688 | -indexes-of@^1.0.1: | |
6689 | - version "1.0.1" | |
6690 | - resolved "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" | |
6691 | - integrity sha1-8w9xbI4r00bHtn0985FVZqfAVgc= | |
6692 | - | |
6693 | 6513 | inflight@^1.0.4: |
6694 | 6514 | version "1.0.6" |
6695 | 6515 | resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" |
... | ... | @@ -6797,6 +6617,11 @@ is-arrayish@^0.2.1: |
6797 | 6617 | resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" |
6798 | 6618 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= |
6799 | 6619 | |
6620 | +is-arrayish@^0.3.1: | |
6621 | + version "0.3.2" | |
6622 | + resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" | |
6623 | + integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== | |
6624 | + | |
6800 | 6625 | is-bigint@^1.0.1: |
6801 | 6626 | version "1.0.2" |
6802 | 6627 | resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.2.tgz#ffb381442503235ad245ea89e45b3dbff040ee5a" |
... | ... | @@ -6810,11 +6635,11 @@ is-binary-path@~2.1.0: |
6810 | 6635 | binary-extensions "^2.0.0" |
6811 | 6636 | |
6812 | 6637 | is-boolean-object@^1.1.0: |
6813 | - version "1.1.0" | |
6814 | - resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.0.tgz#e2aaad3a3a8fca34c28f6eee135b156ed2587ff0" | |
6815 | - integrity sha512-a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA== | |
6638 | + version "1.1.1" | |
6639 | + resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.1.tgz#3c0878f035cb821228d350d2e1e36719716a3de8" | |
6640 | + integrity sha512-bXdQWkECBUIAcCkeH1unwJLIpZYaa5VvuygSyS/c2lf719mTKZDU5UdDRlpd01UjADgmW8RfqaP+mRaVPdr/Ng== | |
6816 | 6641 | dependencies: |
6817 | - call-bind "^1.0.0" | |
6642 | + call-bind "^1.0.2" | |
6818 | 6643 | |
6819 | 6644 | is-buffer@^1.1.5: |
6820 | 6645 | version "1.1.6" |
... | ... | @@ -6846,9 +6671,9 @@ is-ci@^3.0.0: |
6846 | 6671 | ci-info "^3.1.1" |
6847 | 6672 | |
6848 | 6673 | is-core-module@^2.2.0: |
6849 | - version "2.2.0" | |
6850 | - resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.2.0.tgz#97037ef3d52224d85163f5597b2b63d9afed981a" | |
6851 | - integrity sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ== | |
6674 | + version "2.4.0" | |
6675 | + resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.4.0.tgz#8e9fc8e15027b011418026e98f0e6f4d86305cc1" | |
6676 | + integrity sha512-6A2fkfq1rfeQZjxrZJGerpLCTHRNEBiSgnu0+obeJpEPZRUooHgsizvzv0ZjJwOz3iWIHdJtVWJ/tmPr3D21/A== | |
6852 | 6677 | dependencies: |
6853 | 6678 | has "^1.0.3" |
6854 | 6679 | |
... | ... | @@ -7019,9 +6844,9 @@ is-npm@^3.0.0: |
7019 | 6844 | integrity sha512-wsigDr1Kkschp2opC4G3yA6r9EgVA6NjRpWzIi9axXqeIaAATPRJc4uLujXe3Nd9uO8KoDyA4MD6aZSeXTADhA== |
7020 | 6845 | |
7021 | 6846 | is-number-object@^1.0.4: |
7022 | - version "1.0.4" | |
7023 | - resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.4.tgz#36ac95e741cf18b283fc1ddf5e83da798e3ec197" | |
7024 | - integrity sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw== | |
6847 | + version "1.0.5" | |
6848 | + resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.5.tgz#6edfaeed7950cff19afedce9fbfca9ee6dd289eb" | |
6849 | + integrity sha512-RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw== | |
7025 | 6850 | |
7026 | 6851 | is-number@^3.0.0: |
7027 | 6852 | version "3.0.0" |
... | ... | @@ -7094,7 +6919,7 @@ is-promise@^2.0.0: |
7094 | 6919 | resolved "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1" |
7095 | 6920 | integrity sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ== |
7096 | 6921 | |
7097 | -is-regex@^1.0.3, is-regex@^1.1.2: | |
6922 | +is-regex@^1.0.3, is-regex@^1.1.3: | |
7098 | 6923 | version "1.1.3" |
7099 | 6924 | resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.3.tgz#d029f9aff6448b93ebbe3f33dac71511fdcbef9f" |
7100 | 6925 | integrity sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ== |
... | ... | @@ -7127,10 +6952,10 @@ is-stream@^2.0.0: |
7127 | 6952 | resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" |
7128 | 6953 | integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw== |
7129 | 6954 | |
7130 | -is-string@^1.0.5: | |
7131 | - version "1.0.5" | |
7132 | - resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6" | |
7133 | - integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ== | |
6955 | +is-string@^1.0.5, is-string@^1.0.6: | |
6956 | + version "1.0.6" | |
6957 | + resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.6.tgz#3fe5d5992fb0d93404f32584d4b0179a71b54a5f" | |
6958 | + integrity sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w== | |
7134 | 6959 | |
7135 | 6960 | is-svg@^4.2.1: |
7136 | 6961 | version "4.3.1" |
... | ... | @@ -7709,14 +7534,9 @@ jest@^27.0.4: |
7709 | 7534 | import-local "^3.0.2" |
7710 | 7535 | jest-cli "^27.0.4" |
7711 | 7536 | |
7712 | -jiti@^1.10.1: | |
7713 | - version "1.10.1" | |
7714 | - resolved "https://registry.npmjs.org/jiti/-/jiti-1.10.1.tgz#bc2a175b9435274dc8659d3d9a121a91c6b3a1af" | |
7715 | - integrity sha512-qux9juDtAC8HlZxAk/fku73ak4TWNLigRFTNzFShE/kw4bXVFsVu538vLXAxvNyPszXgpX4YxkXfwTYEi+zf5A== | |
7716 | - | |
7717 | 7537 | js-base64@^2.1.9: |
7718 | 7538 | version "2.6.4" |
7719 | - resolved "https://registry.npmjs.com/js-base64/-/js-base64-2.6.4.tgz#f4e686c5de1ea1f867dbcad3d46d969428df98c4" | |
7539 | + resolved "https://registry.npmjs.org/js-base64/-/js-base64-2.6.4.tgz#f4e686c5de1ea1f867dbcad3d46d969428df98c4" | |
7720 | 7540 | integrity sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ== |
7721 | 7541 | |
7722 | 7542 | js-stringify@^1.0.2: |
... | ... | @@ -7966,6 +7786,11 @@ levn@~0.3.0: |
7966 | 7786 | prelude-ls "~1.1.2" |
7967 | 7787 | type-check "~0.3.2" |
7968 | 7788 | |
7789 | +lilconfig@^2.0.3: | |
7790 | + version "2.0.3" | |
7791 | + resolved "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.3.tgz#68f3005e921dafbd2a2afb48379986aa6d2579fd" | |
7792 | + integrity sha512-EHKqr/+ZvdKCifpNrJCKxBTgk5XupZA3y/aCPY9mxfgBzmgh93Mt/WqjjQ38oMxXuvDokaKiM3lAgvSH2sjtHg== | |
7793 | + | |
7969 | 7794 | lines-and-columns@^1.1.6: |
7970 | 7795 | version "1.1.6" |
7971 | 7796 | resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" |
... | ... | @@ -7993,14 +7818,12 @@ lint-staged@^11.0.0: |
7993 | 7818 | stringify-object "^3.3.0" |
7994 | 7819 | |
7995 | 7820 | listr2@^3.8.2: |
7996 | - version "3.8.2" | |
7997 | - resolved "https://registry.npmjs.org/listr2/-/listr2-3.8.2.tgz#99b138ad1cfb08f1b0aacd422972e49b2d814b99" | |
7998 | - integrity sha512-E28Fw7Zd3HQlCJKzb9a8C8M0HtFWQeucE+S8YrSrqZObuCLPRHMRrR8gNmYt65cU9orXYHwvN5agXC36lYt7VQ== | |
7821 | + version "3.10.0" | |
7822 | + resolved "https://registry.npmjs.org/listr2/-/listr2-3.10.0.tgz#58105a53ed7fa1430d1b738c6055ef7bb006160f" | |
7823 | + integrity sha512-eP40ZHihu70sSmqFNbNy2NL1YwImmlMmPh9WO5sLmPDleurMHt3n+SwEWNu2kzKScexZnkyFtc1VI0z/TGlmpw== | |
7999 | 7824 | dependencies: |
8000 | - chalk "^4.1.1" | |
8001 | 7825 | cli-truncate "^2.1.0" |
8002 | - figures "^3.2.0" | |
8003 | - indent-string "^4.0.0" | |
7826 | + colorette "^1.2.2" | |
8004 | 7827 | log-update "^4.0.0" |
8005 | 7828 | p-map "^4.0.0" |
8006 | 7829 | rxjs "^6.6.7" |
... | ... | @@ -8120,6 +7943,16 @@ lodash.sortby@^4.7.0: |
8120 | 7943 | resolved "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" |
8121 | 7944 | integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg= |
8122 | 7945 | |
7946 | +lodash.toarray@^4.4.0: | |
7947 | + version "4.4.0" | |
7948 | + resolved "https://registry.npmjs.org/lodash.toarray/-/lodash.toarray-4.4.0.tgz#24c4bfcd6b2fba38bfd0594db1179d8e9b656561" | |
7949 | + integrity sha1-JMS/zWsvuji/0FlNsRedjptlZWE= | |
7950 | + | |
7951 | +lodash.topath@^4.5.2: | |
7952 | + version "4.5.2" | |
7953 | + resolved "https://registry.npmjs.org/lodash.topath/-/lodash.topath-4.5.2.tgz#3616351f3bba61994a0931989660bd03254fd009" | |
7954 | + integrity sha1-NhY1Hzu6YZlKCTGYlmC9AyVP0Ak= | |
7955 | + | |
8123 | 7956 | lodash.truncate@^4.4.2: |
8124 | 7957 | version "4.4.2" |
8125 | 7958 | resolved "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" |
... | ... | @@ -8351,6 +8184,11 @@ mdn-data@2.0.4: |
8351 | 8184 | resolved "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b" |
8352 | 8185 | integrity sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA== |
8353 | 8186 | |
8187 | +memorystream@^0.3.1: | |
8188 | + version "0.3.1" | |
8189 | + resolved "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2" | |
8190 | + integrity sha1-htcJCzDORV1j+64S3aUaR93K+bI= | |
8191 | + | |
8354 | 8192 | meow@^3.3.0: |
8355 | 8193 | version "3.7.0" |
8356 | 8194 | resolved "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" |
... | ... | @@ -8419,7 +8257,7 @@ meow@^9.0.0: |
8419 | 8257 | |
8420 | 8258 | merge-options@1.0.1: |
8421 | 8259 | version "1.0.1" |
8422 | - resolved "https://registry.npmjs.com/merge-options/-/merge-options-1.0.1.tgz#2a64b24457becd4e4dc608283247e94ce589aa32" | |
8260 | + resolved "https://registry.npmjs.org/merge-options/-/merge-options-1.0.1.tgz#2a64b24457becd4e4dc608283247e94ce589aa32" | |
8423 | 8261 | integrity sha512-iuPV41VWKWBIOpBsjoxjDZw8/GbSfZ2mk7N1453bwMrfzdrIk7EzBd+8UVR6rkw67th7xnk9Dytl3J+lHPdxvg== |
8424 | 8262 | dependencies: |
8425 | 8263 | is-plain-obj "^1.1" |
... | ... | @@ -8441,11 +8279,6 @@ merge2@^1.2.3, merge2@^1.3.0: |
8441 | 8279 | resolved "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" |
8442 | 8280 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== |
8443 | 8281 | |
8444 | -merge@^1.2.1: | |
8445 | - version "1.2.1" | |
8446 | - resolved "https://registry.npmjs.org/merge/-/merge-1.2.1.tgz#38bebf80c3220a8a487b6fcfb3941bb11720c145" | |
8447 | - integrity sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ== | |
8448 | - | |
8449 | 8282 | merge@^2.1.0: |
8450 | 8283 | version "2.1.1" |
8451 | 8284 | resolved "https://registry.npmjs.org/merge/-/merge-2.1.1.tgz#59ef4bf7e0b3e879186436e8481c06a6c162ca98" |
... | ... | @@ -8461,7 +8294,7 @@ micromark@~2.11.0: |
8461 | 8294 | |
8462 | 8295 | micromatch@3.1.0: |
8463 | 8296 | version "3.1.0" |
8464 | - resolved "https://registry.npmjs.com/micromatch/-/micromatch-3.1.0.tgz#5102d4eaf20b6997d6008e3acfe1c44a3fa815e2" | |
8297 | + resolved "https://registry.npmjs.org/micromatch/-/micromatch-3.1.0.tgz#5102d4eaf20b6997d6008e3acfe1c44a3fa815e2" | |
8465 | 8298 | integrity sha512-3StSelAE+hnRvMs8IdVW7Uhk8CVed5tp+kLLGlBP6WiRAXS21GPGu/Nat4WNPXj2Eoc24B02SaeoyozPMfj0/g== |
8466 | 8299 | dependencies: |
8467 | 8300 | arr-diff "^4.0.0" |
... | ... | @@ -8478,34 +8311,7 @@ micromatch@3.1.0: |
8478 | 8311 | snapdragon "^0.8.1" |
8479 | 8312 | to-regex "^3.0.1" |
8480 | 8313 | |
8481 | -micromatch@^3.0.4: | |
8482 | - version "3.1.10" | |
8483 | - resolved "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" | |
8484 | - integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== | |
8485 | - dependencies: | |
8486 | - arr-diff "^4.0.0" | |
8487 | - array-unique "^0.3.2" | |
8488 | - braces "^2.3.1" | |
8489 | - define-property "^2.0.2" | |
8490 | - extend-shallow "^3.0.2" | |
8491 | - extglob "^2.0.4" | |
8492 | - fragment-cache "^0.2.1" | |
8493 | - kind-of "^6.0.2" | |
8494 | - nanomatch "^1.2.9" | |
8495 | - object.pick "^1.3.0" | |
8496 | - regex-not "^1.0.0" | |
8497 | - snapdragon "^0.8.1" | |
8498 | - to-regex "^3.0.2" | |
8499 | - | |
8500 | -micromatch@^4.0.2: | |
8501 | - version "4.0.3" | |
8502 | - resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.3.tgz#fdad8352bf0cbeb89b391b5d244bc22ff3dd4ec8" | |
8503 | - integrity sha512-ueuSaP4i67F/FAUac9zzZ0Dz/5KeKDkITYIS/k4fps+9qeh1SkeH6gbljcqz97mNBOsaWZ+iv2UobMKK/yD+aw== | |
8504 | - dependencies: | |
8505 | - braces "^3.0.1" | |
8506 | - picomatch "^2.2.1" | |
8507 | - | |
8508 | -micromatch@^4.0.4: | |
8314 | +micromatch@^4.0.2, micromatch@^4.0.4: | |
8509 | 8315 | version "4.0.4" |
8510 | 8316 | resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9" |
8511 | 8317 | integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg== |
... | ... | @@ -8513,16 +8319,11 @@ micromatch@^4.0.4: |
8513 | 8319 | braces "^3.0.1" |
8514 | 8320 | picomatch "^2.2.3" |
8515 | 8321 | |
8516 | -mime-db@1.48.0: | |
8322 | +mime-db@1.48.0, mime-db@^1.28.0: | |
8517 | 8323 | version "1.48.0" |
8518 | 8324 | resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.48.0.tgz#e35b31045dd7eada3aaad537ed88a33afbef2d1d" |
8519 | 8325 | integrity sha512-FM3QwxV+TnZYQ2aRqhlKBMHxk10lTbMt3bBkMAp54ddrNeVSfcQYOOKuGuy3Ddrm38I04If834fOUSq1yzslJQ== |
8520 | 8326 | |
8521 | -mime-db@^1.28.0: | |
8522 | - version "1.47.0" | |
8523 | - resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.47.0.tgz#8cb313e59965d3c05cfbf898915a267af46a335c" | |
8524 | - integrity sha512-QBmA/G2y+IfeS4oktet3qRZ+P5kPhCKRXxXnQEudYqUaEioAU1/Lq2us3D/t1Jfo4hE9REQPrbB7K5sOczJVIw== | |
8525 | - | |
8526 | 8327 | mime-types@^2.1.12: |
8527 | 8328 | version "2.1.31" |
8528 | 8329 | resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.31.tgz#a00d76b74317c61f9c2db2218b8e9f8e9c5c9e6b" |
... | ... | @@ -8579,7 +8380,7 @@ minimist-options@^3.0.1: |
8579 | 8380 | arrify "^1.0.1" |
8580 | 8381 | is-plain-obj "^1.1.0" |
8581 | 8382 | |
8582 | -minimist@1.2.5, minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5: | |
8383 | +minimist@1.2.5, minimist@^1.1.0, minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5: | |
8583 | 8384 | version "1.2.5" |
8584 | 8385 | resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" |
8585 | 8386 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== |
... | ... | @@ -8611,6 +8412,11 @@ mockjs@^1.1.0: |
8611 | 8412 | dependencies: |
8612 | 8413 | commander "*" |
8613 | 8414 | |
8415 | +modern-normalize@^1.1.0: | |
8416 | + version "1.1.0" | |
8417 | + resolved "https://registry.npmjs.org/modern-normalize/-/modern-normalize-1.1.0.tgz#da8e80140d9221426bd4f725c6e11283d34f90b7" | |
8418 | + integrity sha512-2lMlY1Yc1+CUy0gw4H95uNN7vjbpoED7NNRSBHE25nWfLBdmMzFCsPshlzbxHz+gYMcBEUN8V4pU16prcdPSgA== | |
8419 | + | |
8614 | 8420 | modify-values@^1.0.0: |
8615 | 8421 | version "1.0.1" |
8616 | 8422 | resolved "https://registry.npmjs.org/modify-values/-/modify-values-1.0.1.tgz#b3939fa605546474e3e3e3c63d64bd43b4ee6022" |
... | ... | @@ -8627,9 +8433,9 @@ mousetrap@^1.6.5: |
8627 | 8433 | integrity sha512-QNo4kEepaIBwiT8CDhP98umTetp+JNfQYBWvC1pc6/OAibuXtRcxZ58Qz8skvEHYvURne/7R8T5VoOI7rDsEUA== |
8628 | 8434 | |
8629 | 8435 | mozjpeg@^7.0.0: |
8630 | - version "7.0.0" | |
8631 | - resolved "https://registry.npmjs.org/mozjpeg/-/mozjpeg-7.0.0.tgz#c20f67a538fcaaa388d325875c53c0e7bc432f7d" | |
8632 | - integrity sha512-mH7atSbIusVTO3A4H43sEdmveN3aWn54k6V0edefzCEvOsTrbjg5murY2TsNznaztWnIgaRbWxeLVp4IgKdedQ== | |
8436 | + version "7.1.0" | |
8437 | + resolved "https://registry.npmjs.org/mozjpeg/-/mozjpeg-7.1.0.tgz#23f202f3e48e98f02ed84f415358d4cbfab66c19" | |
8438 | + integrity sha512-A6nVpI33DVi04HxatRx3PZTeVAOP1AC/T/5kXEvP0U8F+J11mmFFDv46BM2j5/cEyzDDtK8ptHeBSphNMrQLqA== | |
8633 | 8439 | dependencies: |
8634 | 8440 | bin-build "^3.0.0" |
8635 | 8441 | bin-wrapper "^4.0.0" |
... | ... | @@ -8676,17 +8482,12 @@ mute-stream@0.0.8: |
8676 | 8482 | resolved "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" |
8677 | 8483 | integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== |
8678 | 8484 | |
8679 | -nanoid@^3.1.22: | |
8680 | - version "3.1.22" | |
8681 | - resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.1.22.tgz#b35f8fb7d151990a8aebd5aa5015c03cf726f844" | |
8682 | - integrity sha512-/2ZUaJX2ANuLtTvqTlgqBQNJoQO398KyJgZloL0PZkC0dpysjncRUPsFe3DUPzz/y3h+u7C46np8RMuvF3jsSQ== | |
8683 | - | |
8684 | -nanoid@^3.1.23: | |
8485 | +nanoid@^3.1.22, nanoid@^3.1.23: | |
8685 | 8486 | version "3.1.23" |
8686 | 8487 | resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.1.23.tgz#f744086ce7c2bc47ee0a8472574d5c78e4183a81" |
8687 | 8488 | integrity sha512-FiB0kzdP0FFVGDKlRLEQ1BgDzU87dy5NnzjeW9YZNt+/c3+q82EQDUwniSAUxp/F0gFNI1ZhKU1FqYsMuqZVnw== |
8688 | 8489 | |
8689 | -nanomatch@^1.2.1, nanomatch@^1.2.9: | |
8490 | +nanomatch@^1.2.1: | |
8690 | 8491 | version "1.2.13" |
8691 | 8492 | resolved "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" |
8692 | 8493 | integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== |
... | ... | @@ -8740,6 +8541,13 @@ no-case@^3.0.4: |
8740 | 8541 | lower-case "^2.0.2" |
8741 | 8542 | tslib "^2.0.3" |
8742 | 8543 | |
8544 | +node-emoji@^1.8.1: | |
8545 | + version "1.10.0" | |
8546 | + resolved "https://registry.npmjs.org/node-emoji/-/node-emoji-1.10.0.tgz#8886abd25d9c7bb61802a658523d1f8d2a89b2da" | |
8547 | + integrity sha512-Yt3384If5H6BYGVHiHwTL+99OzJKHhgp82S8/dktEK73T26BazdgZ4JZh92xSVtGNJvz9UbXdNAc5hcrXV42vw== | |
8548 | + dependencies: | |
8549 | + lodash.toarray "^4.4.0" | |
8550 | + | |
8743 | 8551 | node-fetch@2.6.1: |
8744 | 8552 | version "2.6.1" |
8745 | 8553 | resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" |
... | ... | @@ -8755,15 +8563,10 @@ node-modules-regexp@^1.0.0: |
8755 | 8563 | resolved "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" |
8756 | 8564 | integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= |
8757 | 8565 | |
8758 | -node-releases@^1.1.70: | |
8759 | - version "1.1.71" | |
8760 | - resolved "https://registry.npmjs.org/node-releases/-/node-releases-1.1.71.tgz#cb1334b179896b1c89ecfdd4b725fb7bbdfc7dbb" | |
8761 | - integrity sha512-zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg== | |
8762 | - | |
8763 | 8566 | node-releases@^1.1.71: |
8764 | - version "1.1.72" | |
8765 | - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.72.tgz#14802ab6b1039a79a0c7d662b610a5bbd76eacbe" | |
8766 | - integrity sha512-LLUo+PpH3dU6XizX3iVoubUNheF/owjXCZZ5yACDxNnPtgFuludV1ZL3ayK1kVep42Rmm0+R9/Y60NQbZ2bifw== | |
8567 | + version "1.1.73" | |
8568 | + resolved "https://registry.npmjs.org/node-releases/-/node-releases-1.1.73.tgz#dd4e81ddd5277ff846b80b52bb40c49edf7a7b20" | |
8569 | + integrity sha512-uW7fodD6pyW2FZNZnp/Z3hvWKeEW1Y8R1+1CnErE8cXFXzl5blBOoVB41CvMer6P6Q0S5FXDwcHgFd1Wj0U9zg== | |
8767 | 8570 | |
8768 | 8571 | normalize-package-data@^2.3.0, normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.5.0: |
8769 | 8572 | version "2.5.0" |
... | ... | @@ -8810,9 +8613,9 @@ normalize-url@2.0.1: |
8810 | 8613 | sort-keys "^2.0.0" |
8811 | 8614 | |
8812 | 8615 | normalize-url@^4.1.0: |
8813 | - version "4.5.0" | |
8814 | - resolved "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz#453354087e6ca96957bd8f5baf753f5982142129" | |
8815 | - integrity sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ== | |
8616 | + version "4.5.1" | |
8617 | + resolved "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz#0dd90cf1288ee1d1313b87081c9a5932ee48518a" | |
8618 | + integrity sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA== | |
8816 | 8619 | |
8817 | 8620 | npm-conf@^1.1.0: |
8818 | 8621 | version "1.1.3" |
... | ... | @@ -8831,6 +8634,21 @@ npm-prefix@^1.2.0: |
8831 | 8634 | shellsubstitute "^1.1.0" |
8832 | 8635 | untildify "^2.1.0" |
8833 | 8636 | |
8637 | +npm-run-all@^4.1.5: | |
8638 | + version "4.1.5" | |
8639 | + resolved "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz#04476202a15ee0e2e214080861bff12a51d98fba" | |
8640 | + integrity sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ== | |
8641 | + dependencies: | |
8642 | + ansi-styles "^3.2.1" | |
8643 | + chalk "^2.4.1" | |
8644 | + cross-spawn "^6.0.5" | |
8645 | + memorystream "^0.3.1" | |
8646 | + minimatch "^3.0.4" | |
8647 | + pidtree "^0.3.0" | |
8648 | + read-pkg "^3.0.0" | |
8649 | + shell-quote "^1.6.1" | |
8650 | + string.prototype.padend "^3.0.0" | |
8651 | + | |
8834 | 8652 | npm-run-path@^2.0.0: |
8835 | 8653 | version "2.0.2" |
8836 | 8654 | resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" |
... | ... | @@ -8859,7 +8677,7 @@ nth-check@^1.0.2: |
8859 | 8677 | |
8860 | 8678 | nth-check@^2.0.0: |
8861 | 8679 | version "2.0.0" |
8862 | - resolved "https://registry.npmjs.com/nth-check/-/nth-check-2.0.0.tgz#1bb4f6dac70072fc313e8c9cd1417b5074c0a125" | |
8680 | + resolved "https://registry.npmjs.org/nth-check/-/nth-check-2.0.0.tgz#1bb4f6dac70072fc313e8c9cd1417b5074c0a125" | |
8863 | 8681 | integrity sha512-i4sc/Kj8htBrAiH1viZ0TgU8Y5XqCaV/FziYK6TBczxmeKm3AEFWqqF3195yKudrarqy7Zu80Ra5dobFjn9X/Q== |
8864 | 8682 | dependencies: |
8865 | 8683 | boolbase "^1.0.0" |
... | ... | @@ -8888,10 +8706,15 @@ object-copy@^0.1.0: |
8888 | 8706 | define-property "^0.2.5" |
8889 | 8707 | kind-of "^3.0.3" |
8890 | 8708 | |
8891 | -object-inspect@^1.9.0: | |
8892 | - version "1.9.0" | |
8893 | - resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz#c90521d74e1127b67266ded3394ad6116986533a" | |
8894 | - integrity sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw== | |
8709 | +object-hash@^2.2.0: | |
8710 | + version "2.2.0" | |
8711 | + resolved "https://registry.npmjs.org/object-hash/-/object-hash-2.2.0.tgz#5ad518581eefc443bd763472b8ff2e9c2c0d54a5" | |
8712 | + integrity sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw== | |
8713 | + | |
8714 | +object-inspect@^1.10.3, object-inspect@^1.9.0: | |
8715 | + version "1.10.3" | |
8716 | + resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.10.3.tgz#c2aa7d2d09f50c99375704f7a0adf24c5782d369" | |
8717 | + integrity sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw== | |
8895 | 8718 | |
8896 | 8719 | object-keys@^1.0.12, object-keys@^1.1.1: |
8897 | 8720 | version "1.1.1" |
... | ... | @@ -8932,14 +8755,13 @@ object.pick@^1.3.0: |
8932 | 8755 | isobject "^3.0.1" |
8933 | 8756 | |
8934 | 8757 | object.values@^1.1.0: |
8935 | - version "1.1.3" | |
8936 | - resolved "https://registry.npmjs.org/object.values/-/object.values-1.1.3.tgz#eaa8b1e17589f02f698db093f7c62ee1699742ee" | |
8937 | - integrity sha512-nkF6PfDB9alkOUxpf1HNm/QlkeW3SReqL5WXeBLpEJJnlPSvRaDQpW3gQTksTN3fgJX4hL42RzKyOin6ff3tyw== | |
8758 | + version "1.1.4" | |
8759 | + resolved "https://registry.npmjs.org/object.values/-/object.values-1.1.4.tgz#0d273762833e816b693a637d30073e7051535b30" | |
8760 | + integrity sha512-TnGo7j4XSnKQoK3MfvkzqKCi0nVe/D9I9IjwTNYdb/fxYHpjrluHVOgw0AF6jrRFGMPHdfuidR09tIDiIvnaSg== | |
8938 | 8761 | dependencies: |
8939 | 8762 | call-bind "^1.0.2" |
8940 | 8763 | define-properties "^1.1.3" |
8941 | - es-abstract "^1.18.0-next.2" | |
8942 | - has "^1.0.3" | |
8764 | + es-abstract "^1.18.2" | |
8943 | 8765 | |
8944 | 8766 | omit.js@^2.0.0: |
8945 | 8767 | version "2.0.2" |
... | ... | @@ -9021,9 +8843,9 @@ optipng-bin@^7.0.0: |
9021 | 8843 | logalot "^2.0.0" |
9022 | 8844 | |
9023 | 8845 | ora@^5.3.0: |
9024 | - version "5.4.0" | |
9025 | - resolved "https://registry.npmjs.org/ora/-/ora-5.4.0.tgz#42eda4855835b9cd14d33864c97a3c95a3f56bf4" | |
9026 | - integrity sha512-1StwyXQGoU6gdjYkyVcqOLnVlbKj+6yPNNOxJVgpt9t4eksKjiriiHuxktLYkgllwk+D6MbC4ihH84L1udRXPg== | |
8846 | + version "5.4.1" | |
8847 | + resolved "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz#1b2678426af4ac4a509008e5e4ac9e9959db9e18" | |
8848 | + integrity sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ== | |
9027 | 8849 | dependencies: |
9028 | 8850 | bl "^4.1.0" |
9029 | 8851 | chalk "^4.1.0" |
... | ... | @@ -9346,9 +9168,9 @@ path-key@^3.0.0, path-key@^3.1.0: |
9346 | 9168 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== |
9347 | 9169 | |
9348 | 9170 | path-parse@^1.0.6: |
9349 | - version "1.0.6" | |
9350 | - resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" | |
9351 | - integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== | |
9171 | + version "1.0.7" | |
9172 | + resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" | |
9173 | + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== | |
9352 | 9174 | |
9353 | 9175 | path-to-regexp@^6.2.0: |
9354 | 9176 | version "6.2.0" |
... | ... | @@ -9381,20 +9203,15 @@ pend@~1.2.0: |
9381 | 9203 | resolved "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" |
9382 | 9204 | integrity sha1-elfrVQpng/kRUzH89GY9XI4AelA= |
9383 | 9205 | |
9384 | -picomatch@^2.0.4: | |
9206 | +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.2, picomatch@^2.2.3: | |
9385 | 9207 | version "2.3.0" |
9386 | 9208 | resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972" |
9387 | 9209 | integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw== |
9388 | 9210 | |
9389 | -picomatch@^2.2.1, picomatch@^2.2.2: | |
9390 | - version "2.2.2" | |
9391 | - resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" | |
9392 | - integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== | |
9393 | - | |
9394 | -picomatch@^2.2.3: | |
9395 | - version "2.2.3" | |
9396 | - resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.2.3.tgz#465547f359ccc206d3c48e46a1bcb89bf7ee619d" | |
9397 | - integrity sha512-KpELjfwcCDUb9PeigTs2mBJzXUPzAuP2oPcA989He8Rte0+YUAjw1JVedDhuTKPkHjSYzMN3npC9luThGYEKdg== | |
9211 | +pidtree@^0.3.0: | |
9212 | + version "0.3.1" | |
9213 | + resolved "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz#ef09ac2cc0533df1f3250ccf2c4d366b0d12114a" | |
9214 | + integrity sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA== | |
9398 | 9215 | |
9399 | 9216 | pify@^2.0.0, pify@^2.2.0, pify@^2.3.0: |
9400 | 9217 | version "2.3.0" |
... | ... | @@ -9487,6 +9304,14 @@ postcss-html@^0.36.0: |
9487 | 9304 | dependencies: |
9488 | 9305 | htmlparser2 "^3.10.0" |
9489 | 9306 | |
9307 | +postcss-js@^3.0.3: | |
9308 | + version "3.0.3" | |
9309 | + resolved "https://registry.npmjs.org/postcss-js/-/postcss-js-3.0.3.tgz#2f0bd370a2e8599d45439f6970403b5873abda33" | |
9310 | + integrity sha512-gWnoWQXKFw65Hk/mi2+WTQTHdPD5UJdDXZmX073EY/B3BWnYjO4F4t0VneTCnCGQ5E5GsCdMkzPaTXwl3r5dJw== | |
9311 | + dependencies: | |
9312 | + camelcase-css "^2.0.1" | |
9313 | + postcss "^8.1.6" | |
9314 | + | |
9490 | 9315 | postcss-less@^3.1.4: |
9491 | 9316 | version "3.1.4" |
9492 | 9317 | resolved "https://registry.npmjs.org/postcss-less/-/postcss-less-3.1.4.tgz#369f58642b5928ef898ffbc1a6e93c958304c5ad" |
... | ... | @@ -9494,6 +9319,15 @@ postcss-less@^3.1.4: |
9494 | 9319 | dependencies: |
9495 | 9320 | postcss "^7.0.14" |
9496 | 9321 | |
9322 | +postcss-load-config@^3.0.1: | |
9323 | + version "3.1.0" | |
9324 | + resolved "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.0.tgz#d39c47091c4aec37f50272373a6a648ef5e97829" | |
9325 | + integrity sha512-ipM8Ds01ZUophjDTQYSVP70slFSYg3T0/zyfII5vzhN6V57YSxMgG5syXuwi5VtS8wSf3iL30v0uBdoIVx4Q0g== | |
9326 | + dependencies: | |
9327 | + import-cwd "^3.0.0" | |
9328 | + lilconfig "^2.0.3" | |
9329 | + yaml "^1.10.2" | |
9330 | + | |
9497 | 9331 | postcss-media-query-parser@^0.2.3: |
9498 | 9332 | version "0.2.3" |
9499 | 9333 | resolved "https://registry.npmjs.org/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz#27b39c6f4d94f81b1a73b8f76351c609e5cef244" |
... | ... | @@ -9528,9 +9362,9 @@ postcss-modules-values@^4.0.0: |
9528 | 9362 | icss-utils "^5.0.0" |
9529 | 9363 | |
9530 | 9364 | postcss-modules@^4.0.0: |
9531 | - version "4.0.0" | |
9532 | - resolved "https://registry.npmjs.org/postcss-modules/-/postcss-modules-4.0.0.tgz#2bc7f276ab88f3f1b0fadf6cbd7772d43b5f3b9b" | |
9533 | - integrity sha512-ghS/ovDzDqARm4Zj6L2ntadjyQMoyJmi0JkLlYtH2QFLrvNlxH5OAVRPWPeKilB0pY7SbuhO173KOWkPAxRJcw== | |
9365 | + version "4.1.3" | |
9366 | + resolved "https://registry.npmjs.org/postcss-modules/-/postcss-modules-4.1.3.tgz#c4c4c41d98d97d24c70e88dacfc97af5a4b3e21d" | |
9367 | + integrity sha512-dBT39hrXe4OAVYJe/2ZuIZ9BzYhOe7t+IhedYeQ2OxKwDpAGlkEN/fR0fGnrbx4BvgbMReRX4hCubYK9cE/pJQ== | |
9534 | 9368 | dependencies: |
9535 | 9369 | generic-names "^2.0.1" |
9536 | 9370 | icss-replace-symbols "^1.1.0" |
... | ... | @@ -9541,12 +9375,19 @@ postcss-modules@^4.0.0: |
9541 | 9375 | postcss-modules-values "^4.0.0" |
9542 | 9376 | string-hash "^1.1.1" |
9543 | 9377 | |
9378 | +postcss-nested@5.0.5: | |
9379 | + version "5.0.5" | |
9380 | + resolved "https://registry.npmjs.org/postcss-nested/-/postcss-nested-5.0.5.tgz#f0a107d33a9fab11d7637205f5321e27223e3603" | |
9381 | + integrity sha512-GSRXYz5bccobpTzLQZXOnSOfKl6TwVr5CyAQJUPub4nuRJSOECK5AqurxVgmtxP48p0Kc/ndY/YyS1yqldX0Ew== | |
9382 | + dependencies: | |
9383 | + postcss-selector-parser "^6.0.4" | |
9384 | + | |
9544 | 9385 | postcss-prefix-selector@^1.6.0: |
9545 | - version "1.9.0" | |
9546 | - resolved "https://registry.npmjs.com/postcss-prefix-selector/-/postcss-prefix-selector-1.9.0.tgz#db549802b79f9f91f7419c8c1f86d31d974aff5e" | |
9547 | - integrity sha512-tTUHUNP+/Qfgg+fvbljUIeLs1ijICWb8+CT3bZM2joE2pkd+EnuBzSfZNHY2RMmozNRp44yEFv+I+6IIiLcoCg== | |
9386 | + version "1.10.0" | |
9387 | + resolved "https://registry.npmjs.org/postcss-prefix-selector/-/postcss-prefix-selector-1.10.0.tgz#7ed3194d44f6c314ab4bd93a4b7b8a2d89718844" | |
9388 | + integrity sha512-VcC/zCXVfFdGyn+Fo9+mxnxBu+hT61uMJJBdfWBbIeDrcE6g8s+26SUPTMpz8kc9wfoLpJGAZZ4QwbVqwxpNRA== | |
9548 | 9389 | dependencies: |
9549 | - postcss "^7.0.0" | |
9390 | + postcss "^8.2.10" | |
9550 | 9391 | |
9551 | 9392 | postcss-resolve-nested-selector@^0.1.1: |
9552 | 9393 | version "0.1.1" |
... | ... | @@ -9575,20 +9416,10 @@ postcss-scss@^2.1.1: |
9575 | 9416 | dependencies: |
9576 | 9417 | postcss "^7.0.6" |
9577 | 9418 | |
9578 | -postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4: | |
9579 | - version "6.0.4" | |
9580 | - resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz#56075a1380a04604c38b063ea7767a129af5c2b3" | |
9581 | - integrity sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw== | |
9582 | - dependencies: | |
9583 | - cssesc "^3.0.0" | |
9584 | - indexes-of "^1.0.1" | |
9585 | - uniq "^1.0.1" | |
9586 | - util-deprecate "^1.0.2" | |
9587 | - | |
9588 | -postcss-selector-parser@^6.0.5: | |
9589 | - version "6.0.5" | |
9590 | - resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.5.tgz#042d74e137db83e6f294712096cb413f5aa612c4" | |
9591 | - integrity sha512-aFYPoYmXbZ1V6HZaSvat08M97A8HqO6Pjz+PiNpw/DhuRrC72XWAdp3hL6wusDCN31sSmcZyMGa2hZEuX+Xfhg== | |
9419 | +postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5, postcss-selector-parser@^6.0.6: | |
9420 | + version "6.0.6" | |
9421 | + resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz#2c5bba8174ac2f6981ab631a42ab0ee54af332ea" | |
9422 | + integrity sha512-9LXrvaaX3+mcv5xkg5kFwqSzSH1JIObIx51PrndZwlmznwXRfxMddDvo9gve3gVR8ZTKgoFDdWkbRFmEhT4PMg== | |
9592 | 9423 | dependencies: |
9593 | 9424 | cssesc "^3.0.0" |
9594 | 9425 | util-deprecate "^1.0.2" |
... | ... | @@ -9606,6 +9437,11 @@ postcss-syntax@^0.36.2: |
9606 | 9437 | resolved "https://registry.npmjs.org/postcss-syntax/-/postcss-syntax-0.36.2.tgz#f08578c7d95834574e5593a82dfbfa8afae3b51c" |
9607 | 9438 | integrity sha512-nBRg/i7E3SOHWxF3PpF5WnJM/jQ1YpY9000OaVXlAQj6Zp/kIqJxEDWIZ67tAd7NLuk7zqN4yqe9nc0oNAOs1w== |
9608 | 9439 | |
9440 | +postcss-value-parser@^3.3.0: | |
9441 | + version "3.3.1" | |
9442 | + resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" | |
9443 | + integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== | |
9444 | + | |
9609 | 9445 | postcss-value-parser@^4.1.0: |
9610 | 9446 | version "4.1.0" |
9611 | 9447 | resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb" |
... | ... | @@ -9613,7 +9449,7 @@ postcss-value-parser@^4.1.0: |
9613 | 9449 | |
9614 | 9450 | postcss@^5.2.17: |
9615 | 9451 | version "5.2.18" |
9616 | - resolved "https://registry.npmjs.com/postcss/-/postcss-5.2.18.tgz#badfa1497d46244f6390f58b319830d9107853c5" | |
9452 | + resolved "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz#badfa1497d46244f6390f58b319830d9107853c5" | |
9617 | 9453 | integrity sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg== |
9618 | 9454 | dependencies: |
9619 | 9455 | chalk "^1.1.3" |
... | ... | @@ -9621,34 +9457,16 @@ postcss@^5.2.17: |
9621 | 9457 | source-map "^0.5.6" |
9622 | 9458 | supports-color "^3.2.3" |
9623 | 9459 | |
9624 | -postcss@^7.0.0, postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.21, postcss@^7.0.26, postcss@^7.0.31, postcss@^7.0.32, postcss@^7.0.35, postcss@^7.0.6: | |
9625 | - version "7.0.35" | |
9626 | - resolved "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz#d2be00b998f7f211d8a276974079f2e92b970e24" | |
9627 | - integrity sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg== | |
9460 | +postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.21, postcss@^7.0.26, postcss@^7.0.31, postcss@^7.0.32, postcss@^7.0.35, postcss@^7.0.6: | |
9461 | + version "7.0.36" | |
9462 | + resolved "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz#056f8cffa939662a8f5905950c07d5285644dfcb" | |
9463 | + integrity sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw== | |
9628 | 9464 | dependencies: |
9629 | 9465 | chalk "^2.4.2" |
9630 | 9466 | source-map "^0.6.1" |
9631 | 9467 | supports-color "^6.1.0" |
9632 | 9468 | |
9633 | -postcss@^8.1.10: | |
9634 | - version "8.2.9" | |
9635 | - resolved "https://registry.npmjs.org/postcss/-/postcss-8.2.9.tgz#fd95ff37b5cee55c409b3fdd237296ab4096fba3" | |
9636 | - integrity sha512-b+TmuIL4jGtCHtoLi+G/PisuIl9avxs8IZMSmlABRwNz5RLUUACrC+ws81dcomz1nRezm5YPdXiMEzBEKgYn+Q== | |
9637 | - dependencies: | |
9638 | - colorette "^1.2.2" | |
9639 | - nanoid "^3.1.22" | |
9640 | - source-map "^0.6.1" | |
9641 | - | |
9642 | -postcss@^8.3.0: | |
9643 | - version "8.3.0" | |
9644 | - resolved "https://registry.npmjs.org/postcss/-/postcss-8.3.0.tgz#b1a713f6172ca427e3f05ef1303de8b65683325f" | |
9645 | - integrity sha512-+ogXpdAjWGa+fdYY5BQ96V/6tAo+TdSSIMP5huJBIygdWwKtVoB5JWZ7yUd4xZ8r+8Kvvx4nyg/PQ071H4UtcQ== | |
9646 | - dependencies: | |
9647 | - colorette "^1.2.2" | |
9648 | - nanoid "^3.1.23" | |
9649 | - source-map-js "^0.6.2" | |
9650 | - | |
9651 | -postcss@^8.3.5: | |
9469 | +postcss@^8.1.10, postcss@^8.1.6, postcss@^8.2.1, postcss@^8.2.10, postcss@^8.3.4, postcss@^8.3.5: | |
9652 | 9470 | version "8.3.5" |
9653 | 9471 | resolved "https://registry.npmjs.org/postcss/-/postcss-8.3.5.tgz#982216b113412bc20a86289e91eb994952a5b709" |
9654 | 9472 | integrity sha512-NxTuJocUhYGsMiMFHDUkmjSKT3EdH4/WbGF6GCi1NDGk+vbcUTun4fpbOqaPtD8IIsztA2ilZm2DhYCuyN58gA== |
... | ... | @@ -9659,7 +9477,7 @@ postcss@^8.3.5: |
9659 | 9477 | |
9660 | 9478 | posthtml-parser@^0.2.0, posthtml-parser@^0.2.1: |
9661 | 9479 | version "0.2.1" |
9662 | - resolved "https://registry.npmjs.com/posthtml-parser/-/posthtml-parser-0.2.1.tgz#35d530de386740c2ba24ff2eb2faf39ccdf271dd" | |
9480 | + resolved "https://registry.npmjs.org/posthtml-parser/-/posthtml-parser-0.2.1.tgz#35d530de386740c2ba24ff2eb2faf39ccdf271dd" | |
9663 | 9481 | integrity sha1-NdUw3jhnQMK6JP8usvrznM3ycd0= |
9664 | 9482 | dependencies: |
9665 | 9483 | htmlparser2 "^3.8.3" |
... | ... | @@ -9667,19 +9485,19 @@ posthtml-parser@^0.2.0, posthtml-parser@^0.2.1: |
9667 | 9485 | |
9668 | 9486 | posthtml-rename-id@^1.0: |
9669 | 9487 | version "1.0.12" |
9670 | - resolved "https://registry.npmjs.com/posthtml-rename-id/-/posthtml-rename-id-1.0.12.tgz#cf7f6eb37146bf1afac31e68f18c6cc19ae61433" | |
9488 | + resolved "https://registry.npmjs.org/posthtml-rename-id/-/posthtml-rename-id-1.0.12.tgz#cf7f6eb37146bf1afac31e68f18c6cc19ae61433" | |
9671 | 9489 | integrity sha512-UKXf9OF/no8WZo9edRzvuMenb6AD5hDLzIepJW+a4oJT+T/Lx7vfMYWT4aWlGNQh0WMhnUx1ipN9OkZ9q+ddEw== |
9672 | 9490 | dependencies: |
9673 | 9491 | escape-string-regexp "1.0.5" |
9674 | 9492 | |
9675 | 9493 | posthtml-render@^1.0.5, posthtml-render@^1.0.6: |
9676 | 9494 | version "1.4.0" |
9677 | - resolved "https://registry.npmjs.com/posthtml-render/-/posthtml-render-1.4.0.tgz#40114070c45881cacb93347dae3eff53afbcff13" | |
9495 | + resolved "https://registry.npmjs.org/posthtml-render/-/posthtml-render-1.4.0.tgz#40114070c45881cacb93347dae3eff53afbcff13" | |
9678 | 9496 | integrity sha512-W1779iVHGfq0Fvh2PROhCe2QhB8mEErgqzo1wpIt36tCgChafP+hbXIhLDOM8ePJrZcFs0vkNEtdibEWVqChqw== |
9679 | 9497 | |
9680 | 9498 | posthtml-svg-mode@^1.0.3: |
9681 | 9499 | version "1.0.3" |
9682 | - resolved "https://registry.npmjs.com/posthtml-svg-mode/-/posthtml-svg-mode-1.0.3.tgz#abd554face81223cab0cb367e18e4efd2a4e74b0" | |
9500 | + resolved "https://registry.npmjs.org/posthtml-svg-mode/-/posthtml-svg-mode-1.0.3.tgz#abd554face81223cab0cb367e18e4efd2a4e74b0" | |
9683 | 9501 | integrity sha512-hEqw9NHZ9YgJ2/0G7CECOeuLQKZi8HjWLkBaSVtOWjygQ9ZD8P7tqeowYs7WrFdKsWEKG7o+IlsPY8jrr0CJpQ== |
9684 | 9502 | dependencies: |
9685 | 9503 | merge-options "1.0.1" |
... | ... | @@ -9689,7 +9507,7 @@ posthtml-svg-mode@^1.0.3: |
9689 | 9507 | |
9690 | 9508 | posthtml@^0.9.2: |
9691 | 9509 | version "0.9.2" |
9692 | - resolved "https://registry.npmjs.com/posthtml/-/posthtml-0.9.2.tgz#f4c06db9f67b61fd17c4e256e7e3d9515bf726fd" | |
9510 | + resolved "https://registry.npmjs.org/posthtml/-/posthtml-0.9.2.tgz#f4c06db9f67b61fd17c4e256e7e3d9515bf726fd" | |
9693 | 9511 | integrity sha1-9MBtufZ7Yf0XxOJW5+PZUVv3Jv0= |
9694 | 9512 | dependencies: |
9695 | 9513 | posthtml-parser "^0.2.0" |
... | ... | @@ -9762,6 +9580,11 @@ pretty-format@^27.0.2: |
9762 | 9580 | ansi-styles "^5.0.0" |
9763 | 9581 | react-is "^17.0.1" |
9764 | 9582 | |
9583 | +pretty-hrtime@^1.0.3: | |
9584 | + version "1.0.3" | |
9585 | + resolved "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" | |
9586 | + integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE= | |
9587 | + | |
9765 | 9588 | pretty-quick@^3.1.1: |
9766 | 9589 | version "3.1.1" |
9767 | 9590 | resolved "https://registry.npmjs.org/pretty-quick/-/pretty-quick-3.1.1.tgz#93ca4e2dd38cc4e970e3f54a0ead317a25454688" |
... | ... | @@ -9957,6 +9780,16 @@ punycode@^2.1.0, punycode@^2.1.1: |
9957 | 9780 | resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" |
9958 | 9781 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== |
9959 | 9782 | |
9783 | +purgecss@^4.0.3: | |
9784 | + version "4.0.3" | |
9785 | + resolved "https://registry.npmjs.org/purgecss/-/purgecss-4.0.3.tgz#8147b429f9c09db719e05d64908ea8b672913742" | |
9786 | + integrity sha512-PYOIn5ibRIP34PBU9zohUcCI09c7drPJJtTDAc0Q6QlRz2/CHQ8ywGLdE7ZhxU2VTqB7p5wkvj5Qcm05Rz3Jmw== | |
9787 | + dependencies: | |
9788 | + commander "^6.0.0" | |
9789 | + glob "^7.0.0" | |
9790 | + postcss "^8.2.1" | |
9791 | + postcss-selector-parser "^6.0.2" | |
9792 | + | |
9960 | 9793 | q@^1.1.2, q@^1.5.1: |
9961 | 9794 | version "1.5.1" |
9962 | 9795 | resolved "https://registry.npmjs.org/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" |
... | ... | @@ -9984,7 +9817,7 @@ qs@^6.4.0: |
9984 | 9817 | |
9985 | 9818 | query-string@^4.3.2: |
9986 | 9819 | version "4.3.4" |
9987 | - resolved "https://registry.npmjs.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb" | |
9820 | + resolved "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb" | |
9988 | 9821 | integrity sha1-u7aTucqRXCMlFbIosaArYJBD2+s= |
9989 | 9822 | dependencies: |
9990 | 9823 | object-assign "^4.1.0" |
... | ... | @@ -10014,6 +9847,11 @@ quick-lru@^4.0.1: |
10014 | 9847 | resolved "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f" |
10015 | 9848 | integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== |
10016 | 9849 | |
9850 | +quick-lru@^5.1.1: | |
9851 | + version "5.1.1" | |
9852 | + resolved "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932" | |
9853 | + integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== | |
9854 | + | |
10017 | 9855 | randombytes@^2.1.0: |
10018 | 9856 | version "2.1.0" |
10019 | 9857 | resolved "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" |
... | ... | @@ -10149,6 +9987,14 @@ redent@^3.0.0: |
10149 | 9987 | indent-string "^4.0.0" |
10150 | 9988 | strip-indent "^3.0.0" |
10151 | 9989 | |
9990 | +reduce-css-calc@^2.1.8: | |
9991 | + version "2.1.8" | |
9992 | + resolved "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-2.1.8.tgz#7ef8761a28d614980dc0c982f772c93f7a99de03" | |
9993 | + integrity sha512-8liAVezDmUcH+tdzoEGrhfbGcP7nOV4NkGE3a74+qqvE7nt9i4sKLGBuZNOnpI4WiGksiNPklZxva80061QiPg== | |
9994 | + dependencies: | |
9995 | + css-unit-converter "^1.1.1" | |
9996 | + postcss-value-parser "^3.3.0" | |
9997 | + | |
10152 | 9998 | regenerate-unicode-properties@^8.2.0: |
10153 | 9999 | version "8.2.0" |
10154 | 10000 | resolved "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec" |
... | ... | @@ -10182,9 +10028,9 @@ regex-not@^1.0.0, regex-not@^1.0.2: |
10182 | 10028 | safe-regex "^1.1.0" |
10183 | 10029 | |
10184 | 10030 | regexpp@^3.1.0: |
10185 | - version "3.1.0" | |
10186 | - resolved "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz#206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2" | |
10187 | - integrity sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q== | |
10031 | + version "3.2.0" | |
10032 | + resolved "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" | |
10033 | + integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== | |
10188 | 10034 | |
10189 | 10035 | regexpu-core@^4.7.1: |
10190 | 10036 | version "4.7.1" |
... | ... | @@ -10288,6 +10134,15 @@ replace-ext@^1.0.0: |
10288 | 10134 | resolved "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz#2d6d996d04a15855d967443631dd5f77825b016a" |
10289 | 10135 | integrity sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw== |
10290 | 10136 | |
10137 | +request-light@^0.4.0: | |
10138 | + version "0.4.0" | |
10139 | + resolved "https://registry.npmjs.org/request-light/-/request-light-0.4.0.tgz#c6b91ef00b18cb0de75d2127e55b3a2c9f7f90f9" | |
10140 | + integrity sha512-fimzjIVw506FBZLspTAXHdpvgvQebyjpNyLRd0e6drPPRq7gcrROeGWRyF81wLqFg5ijPgnOQbmfck5wdTqpSA== | |
10141 | + dependencies: | |
10142 | + http-proxy-agent "^2.1.0" | |
10143 | + https-proxy-agent "^2.2.4" | |
10144 | + vscode-nls "^4.1.2" | |
10145 | + | |
10291 | 10146 | require-directory@^2.1.1: |
10292 | 10147 | version "2.1.1" |
10293 | 10148 | resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" |
... | ... | @@ -10618,6 +10473,11 @@ shebang-regex@^3.0.0: |
10618 | 10473 | resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" |
10619 | 10474 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== |
10620 | 10475 | |
10476 | +shell-quote@^1.6.1: | |
10477 | + version "1.7.2" | |
10478 | + resolved "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2" | |
10479 | + integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg== | |
10480 | + | |
10621 | 10481 | shelljs@^0.8.3: |
10622 | 10482 | version "0.8.4" |
10623 | 10483 | resolved "https://registry.npmjs.org/shelljs/-/shelljs-0.8.4.tgz#de7684feeb767f8716b326078a8a00875890e3c2" |
... | ... | @@ -10646,6 +10506,13 @@ signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3: |
10646 | 10506 | resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" |
10647 | 10507 | integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== |
10648 | 10508 | |
10509 | +simple-swizzle@^0.2.2: | |
10510 | + version "0.2.2" | |
10511 | + resolved "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" | |
10512 | + integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo= | |
10513 | + dependencies: | |
10514 | + is-arrayish "^0.3.1" | |
10515 | + | |
10649 | 10516 | sisteransi@^1.0.5: |
10650 | 10517 | version "1.0.5" |
10651 | 10518 | resolved "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" |
... | ... | @@ -10743,7 +10610,7 @@ source-map-js@^0.6.2: |
10743 | 10610 | resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-0.6.2.tgz#0bb5de631b41cfbda6cfba8bd05a80efdfd2385e" |
10744 | 10611 | integrity sha512-/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug== |
10745 | 10612 | |
10746 | -source-map-resolve@^0.5.0, source-map-resolve@^0.5.2: | |
10613 | +source-map-resolve@^0.5.0: | |
10747 | 10614 | version "0.5.3" |
10748 | 10615 | resolved "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a" |
10749 | 10616 | integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw== |
... | ... | @@ -10767,11 +10634,6 @@ source-map-url@^0.4.0: |
10767 | 10634 | resolved "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz#0af66605a745a5a2f91cf1bbf8a7afbc283dec56" |
10768 | 10635 | integrity sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw== |
10769 | 10636 | |
10770 | -source-map@0.5.6: | |
10771 | - version "0.5.6" | |
10772 | - resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" | |
10773 | - integrity sha1-dc449SvwczxafwwRjYEzSiu19BI= | |
10774 | - | |
10775 | 10637 | source-map@0.6.1, source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1: |
10776 | 10638 | version "0.6.1" |
10777 | 10639 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" |
... | ... | @@ -10826,9 +10688,9 @@ spdx-expression-parse@^3.0.0: |
10826 | 10688 | spdx-license-ids "^3.0.0" |
10827 | 10689 | |
10828 | 10690 | spdx-license-ids@^3.0.0: |
10829 | - version "3.0.7" | |
10830 | - resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz#e9c18a410e5ed7e12442a549fbd8afa767038d65" | |
10831 | - integrity sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ== | |
10691 | + version "3.0.9" | |
10692 | + resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.9.tgz#8a595135def9592bda69709474f1cbeea7c2467f" | |
10693 | + integrity sha512-Ki212dKK4ogX+xDo4CtOZBVIwhsKBEfsEEcwmJfLQzirgc2jIWdzg40Unxz/HzEUqM1WFzVlQSMF9kZZ2HboLQ== | |
10832 | 10694 | |
10833 | 10695 | specificity@^0.4.1: |
10834 | 10696 | version "0.4.1" |
... | ... | @@ -10951,6 +10813,15 @@ string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2 |
10951 | 10813 | is-fullwidth-code-point "^3.0.0" |
10952 | 10814 | strip-ansi "^6.0.0" |
10953 | 10815 | |
10816 | +string.prototype.padend@^3.0.0: | |
10817 | + version "3.1.2" | |
10818 | + resolved "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.2.tgz#6858ca4f35c5268ebd5e8615e1327d55f59ee311" | |
10819 | + integrity sha512-/AQFLdYvePENU3W5rgurfWSMU6n+Ww8n/3cUt7E+vPBB/D7YDG8x+qjoFs4M/alR2bW7Qg6xMjVwWUOvuQ0XpQ== | |
10820 | + dependencies: | |
10821 | + call-bind "^1.0.2" | |
10822 | + define-properties "^1.1.3" | |
10823 | + es-abstract "^1.18.0-next.2" | |
10824 | + | |
10954 | 10825 | string.prototype.trimend@^1.0.4: |
10955 | 10826 | version "1.0.4" |
10956 | 10827 | resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80" |
... | ... | @@ -11092,16 +10963,16 @@ strip-json-comments@3.0.1: |
11092 | 10963 | resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.0.1.tgz#85713975a91fb87bf1b305cca77395e40d2a64a7" |
11093 | 10964 | integrity sha512-VTyMAUfdm047mwKl+u79WIdrZxtFtn+nBxHeb844XBQ9uMNTuTHdx2hc5RiAJYqwTj3wc/xe5HLSdJSkJ+WfZw== |
11094 | 10965 | |
11095 | -strip-json-comments@^2.0.0, strip-json-comments@~2.0.1: | |
11096 | - version "2.0.1" | |
11097 | - resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" | |
11098 | - integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= | |
11099 | - | |
11100 | 10966 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: |
11101 | 10967 | version "3.1.1" |
11102 | 10968 | resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" |
11103 | 10969 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== |
11104 | 10970 | |
10971 | +strip-json-comments@~2.0.1: | |
10972 | + version "2.0.1" | |
10973 | + resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" | |
10974 | + integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= | |
10975 | + | |
11105 | 10976 | strip-outer@^1.0.0: |
11106 | 10977 | version "1.0.1" |
11107 | 10978 | resolved "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz#b2fd2abf6604b9d1e6013057195df836b8a9d631" |
... | ... | @@ -11208,7 +11079,7 @@ supports-color@^2.0.0: |
11208 | 11079 | |
11209 | 11080 | supports-color@^3.2.3: |
11210 | 11081 | version "3.2.3" |
11211 | - resolved "https://registry.npmjs.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" | |
11082 | + resolved "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" | |
11212 | 11083 | integrity sha1-ZawFBLOVQXHYpklGsq48u4pfVPY= |
11213 | 11084 | dependencies: |
11214 | 11085 | has-flag "^1.0.0" |
... | ... | @@ -11251,7 +11122,7 @@ supports-hyperlinks@^2.0.0: |
11251 | 11122 | |
11252 | 11123 | svg-baker@1.7.0: |
11253 | 11124 | version "1.7.0" |
11254 | - resolved "https://registry.npmjs.com/svg-baker/-/svg-baker-1.7.0.tgz#8367f78d875550c52fe4756f7303d5c5d7c2e9a7" | |
11125 | + resolved "https://registry.npmjs.org/svg-baker/-/svg-baker-1.7.0.tgz#8367f78d875550c52fe4756f7303d5c5d7c2e9a7" | |
11255 | 11126 | integrity sha512-nibslMbkXOIkqKVrfcncwha45f97fGuAOn1G99YwnwTj8kF9YiM6XexPcUso97NxOm6GsP0SIvYVIosBis1xLg== |
11256 | 11127 | dependencies: |
11257 | 11128 | bluebird "^3.5.0" |
... | ... | @@ -11294,7 +11165,7 @@ svgo@^1.3.2: |
11294 | 11165 | |
11295 | 11166 | svgo@^2.3.0: |
11296 | 11167 | version "2.3.0" |
11297 | - resolved "https://registry.npmjs.com/svgo/-/svgo-2.3.0.tgz#6b3af81d0cbd1e19c83f5f63cec2cb98c70b5373" | |
11168 | + resolved "https://registry.npmjs.org/svgo/-/svgo-2.3.0.tgz#6b3af81d0cbd1e19c83f5f63cec2cb98c70b5373" | |
11298 | 11169 | integrity sha512-fz4IKjNO6HDPgIQxu4IxwtubtbSfGEAJUq/IXyTPIkGhWck/faiiwfkvsB8LnBkKLvSoyNNIY6d13lZprJMc9Q== |
11299 | 11170 | dependencies: |
11300 | 11171 | "@trysound/sax" "0.1.1" |
... | ... | @@ -11311,11 +11182,11 @@ symbol-tree@^3.2.4: |
11311 | 11182 | integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== |
11312 | 11183 | |
11313 | 11184 | systemjs@^6.8.3: |
11314 | - version "6.8.3" | |
11315 | - resolved "https://registry.npmjs.org/systemjs/-/systemjs-6.8.3.tgz#67e27f49242e9d81c2b652b204ae54e8bfcc75a3" | |
11316 | - integrity sha512-UcTY+FEA1B7e+bpJk1TI+a9Na6LG7wFEqW7ED16cLqLuQfI/9Ri0rsXm3tKlIgNoHyLHZycjdAOijzNbzelgwA== | |
11185 | + version "6.10.1" | |
11186 | + resolved "https://registry.npmjs.org/systemjs/-/systemjs-6.10.1.tgz#4a42a9f4ee8dc740c29dc9af631da819ae736c69" | |
11187 | + integrity sha512-i2HiBOTIsm4GpjpiDHqTscZ/78htyTtdhpcbY2XPbIpsaNDIBA9vtxwIl8kSSnIRO0Zn7SHqvvILu3cMoXQuYw== | |
11317 | 11188 | |
11318 | -table@^6.0.9: | |
11189 | +table@^6.0.9, table@^6.6.0: | |
11319 | 11190 | version "6.7.1" |
11320 | 11191 | resolved "https://registry.npmjs.org/table/-/table-6.7.1.tgz#ee05592b7143831a8c94f3cee6aae4c1ccef33e2" |
11321 | 11192 | integrity sha512-ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg== |
... | ... | @@ -11327,17 +11198,42 @@ table@^6.0.9: |
11327 | 11198 | string-width "^4.2.0" |
11328 | 11199 | strip-ansi "^6.0.0" |
11329 | 11200 | |
11330 | -table@^6.6.0: | |
11331 | - version "6.7.0" | |
11332 | - resolved "https://registry.npmjs.org/table/-/table-6.7.0.tgz#26274751f0ee099c547f6cb91d3eff0d61d155b2" | |
11333 | - integrity sha512-SAM+5p6V99gYiiy2gT5ArdzgM1dLDed0nkrWmG6Fry/bUS/m9x83BwpJUOf1Qj/x2qJd+thL6IkIx7qPGRxqBw== | |
11201 | +tailwindcss@^2.2.2: | |
11202 | + version "2.2.2" | |
11203 | + resolved "https://registry.npmjs.org/tailwindcss/-/tailwindcss-2.2.2.tgz#28a99c87b5a6b2bf6298a77d88dc0590e84fa8ee" | |
11204 | + integrity sha512-OzFWhlnfrO3JXZKHQiqZcb0Wwl3oJSmQ7PvT2jdIgCjV5iUoAyql9bb9ZLCSBI5TYXmawujXAoNxXVfP5Auy/Q== | |
11334 | 11205 | dependencies: |
11335 | - ajv "^8.0.1" | |
11336 | - lodash.clonedeep "^4.5.0" | |
11337 | - lodash.truncate "^4.4.2" | |
11338 | - slice-ansi "^4.0.0" | |
11339 | - string-width "^4.2.0" | |
11340 | - strip-ansi "^6.0.0" | |
11206 | + "@fullhuman/postcss-purgecss" "^4.0.3" | |
11207 | + arg "^5.0.0" | |
11208 | + bytes "^3.0.0" | |
11209 | + chalk "^4.1.1" | |
11210 | + chokidar "^3.5.1" | |
11211 | + color "^3.1.3" | |
11212 | + cosmiconfig "^7.0.0" | |
11213 | + detective "^5.2.0" | |
11214 | + didyoumean "^1.2.1" | |
11215 | + dlv "^1.1.3" | |
11216 | + fast-glob "^3.2.5" | |
11217 | + fs-extra "^10.0.0" | |
11218 | + glob-parent "^6.0.0" | |
11219 | + html-tags "^3.1.0" | |
11220 | + is-glob "^4.0.1" | |
11221 | + lodash "^4.17.21" | |
11222 | + lodash.topath "^4.5.2" | |
11223 | + modern-normalize "^1.1.0" | |
11224 | + node-emoji "^1.8.1" | |
11225 | + normalize-path "^3.0.0" | |
11226 | + object-hash "^2.2.0" | |
11227 | + postcss-js "^3.0.3" | |
11228 | + postcss-load-config "^3.0.1" | |
11229 | + postcss-nested "5.0.5" | |
11230 | + postcss-selector-parser "^6.0.6" | |
11231 | + postcss-value-parser "^4.1.0" | |
11232 | + pretty-hrtime "^1.0.3" | |
11233 | + quick-lru "^5.1.1" | |
11234 | + reduce-css-calc "^2.1.8" | |
11235 | + resolve "^1.20.0" | |
11236 | + tmp "^0.2.1" | |
11341 | 11237 | |
11342 | 11238 | tar-stream@^1.5.2: |
11343 | 11239 | version "1.6.2" |
... | ... | @@ -11413,9 +11309,9 @@ terser@^4.6.3: |
11413 | 11309 | source-map-support "~0.5.12" |
11414 | 11310 | |
11415 | 11311 | terser@^5.0.0: |
11416 | - version "5.6.1" | |
11417 | - resolved "https://registry.npmjs.org/terser/-/terser-5.6.1.tgz#a48eeac5300c0a09b36854bf90d9c26fb201973c" | |
11418 | - integrity sha512-yv9YLFQQ+3ZqgWCUk+pvNJwgUTdlIxUk1WTN+RnaFJe2L7ipG2csPT0ra2XRm7Cs8cxN7QXmK1rFzEwYEQkzXw== | |
11312 | + version "5.7.0" | |
11313 | + resolved "https://registry.npmjs.org/terser/-/terser-5.7.0.tgz#a761eeec206bc87b605ab13029876ead938ae693" | |
11314 | + integrity sha512-HP5/9hp2UaZt5fYkuhNBR8YyRcT8juw8+uFbAme53iN9hblvKnLUTKkmwJG6ocWpIKf8UK4DoeWG4ty0J6S6/g== | |
11419 | 11315 | dependencies: |
11420 | 11316 | commander "^2.20.0" |
11421 | 11317 | source-map "~0.7.2" |
... | ... | @@ -11472,7 +11368,7 @@ timed-out@^4.0.0, timed-out@^4.0.1: |
11472 | 11368 | |
11473 | 11369 | tinycolor2@^1.4.2: |
11474 | 11370 | version "1.4.2" |
11475 | - resolved "https://registry.yarnpkg.com/tinycolor2/-/tinycolor2-1.4.2.tgz#3f6a4d1071ad07676d7fa472e1fac40a719d8803" | |
11371 | + resolved "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.2.tgz#3f6a4d1071ad07676d7fa472e1fac40a719d8803" | |
11476 | 11372 | integrity sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA== |
11477 | 11373 | |
11478 | 11374 | tinymce@^5.8.1: |
... | ... | @@ -11487,6 +11383,13 @@ tmp@^0.0.33: |
11487 | 11383 | dependencies: |
11488 | 11384 | os-tmpdir "~1.0.2" |
11489 | 11385 | |
11386 | +tmp@^0.2.1: | |
11387 | + version "0.2.1" | |
11388 | + resolved "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz#8457fc3037dcf4719c251367a1af6500ee1ccf14" | |
11389 | + integrity sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ== | |
11390 | + dependencies: | |
11391 | + rimraf "^3.0.0" | |
11392 | + | |
11490 | 11393 | tmpl@1.0.x: |
11491 | 11394 | version "1.0.4" |
11492 | 11395 | resolved "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" |
... | ... | @@ -11529,7 +11432,7 @@ to-regex-range@^5.0.1: |
11529 | 11432 | dependencies: |
11530 | 11433 | is-number "^7.0.0" |
11531 | 11434 | |
11532 | -to-regex@^3.0.1, to-regex@^3.0.2: | |
11435 | +to-regex@^3.0.1: | |
11533 | 11436 | version "3.0.2" |
11534 | 11437 | resolved "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" |
11535 | 11438 | integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== |
... | ... | @@ -11585,7 +11488,7 @@ tr46@^2.1.0: |
11585 | 11488 | |
11586 | 11489 | traverse@^0.6.6: |
11587 | 11490 | version "0.6.6" |
11588 | - resolved "https://registry.npmjs.com/traverse/-/traverse-0.6.6.tgz#cbdf560fd7b9af632502fed40f918c157ea97137" | |
11491 | + resolved "https://registry.npmjs.org/traverse/-/traverse-0.6.6.tgz#cbdf560fd7b9af632502fed40f918c157ea97137" | |
11589 | 11492 | integrity sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc= |
11590 | 11493 | |
11591 | 11494 | trim-newlines@^1.0.0: |
... | ... | @@ -11599,9 +11502,9 @@ trim-newlines@^2.0.0: |
11599 | 11502 | integrity sha1-tAPQuRvlDDMd/EuC7s6yLD3hbSA= |
11600 | 11503 | |
11601 | 11504 | trim-newlines@^3.0.0: |
11602 | - version "3.0.0" | |
11603 | - resolved "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.0.tgz#79726304a6a898aa8373427298d54c2ee8b1cb30" | |
11604 | - integrity sha512-C4+gOpvmxaSMKuEf9Qc134F1ZuOHVXKRbtEflf4NTtuuJDEIJ9p5PXsalL8SkeRw+qit1Mo+yuvMPAKwWg/1hA== | |
11505 | + version "3.0.1" | |
11506 | + resolved "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144" | |
11507 | + integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw== | |
11605 | 11508 | |
11606 | 11509 | trim-off-newlines@^1.0.0: |
11607 | 11510 | version "1.0.1" |
... | ... | @@ -11638,7 +11541,7 @@ ts-jest@^27.0.3: |
11638 | 11541 | |
11639 | 11542 | ts-node@^10.0.0: |
11640 | 11543 | version "10.0.0" |
11641 | - resolved "https://registry.npmjs.com/ts-node/-/ts-node-10.0.0.tgz#05f10b9a716b0b624129ad44f0ea05dac84ba3be" | |
11544 | + resolved "https://registry.npmjs.org/ts-node/-/ts-node-10.0.0.tgz#05f10b9a716b0b624129ad44f0ea05dac84ba3be" | |
11642 | 11545 | integrity sha512-ROWeOIUvfFbPZkoDis0L/55Fk+6gFQNZwwKPLinacRl6tsxstTF1DbAcLKkovwnpKMVvOMHP1TIbnwXwtLg1gg== |
11643 | 11546 | dependencies: |
11644 | 11547 | "@tsconfig/node10" "^1.0.7" |
... | ... | @@ -11652,16 +11555,6 @@ ts-node@^10.0.0: |
11652 | 11555 | source-map-support "^0.5.17" |
11653 | 11556 | yn "3.1.1" |
11654 | 11557 | |
11655 | -tsconfig@^7.0.0: | |
11656 | - version "7.0.0" | |
11657 | - resolved "https://registry.npmjs.org/tsconfig/-/tsconfig-7.0.0.tgz#84538875a4dc216e5c4a5432b3a4dec3d54e91b7" | |
11658 | - integrity sha512-vZXmzPrL+EmC4T/4rVlT2jNVMWCi/O4DIiSj3UHg1OE5kCKbk4mfrXc6dZksLgRM/TZlKnousKH9bbTazUWRRw== | |
11659 | - dependencies: | |
11660 | - "@types/strip-bom" "^3.0.0" | |
11661 | - "@types/strip-json-comments" "0.0.30" | |
11662 | - strip-bom "^3.0.0" | |
11663 | - strip-json-comments "^2.0.0" | |
11664 | - | |
11665 | 11558 | tslib@2.0.3: |
11666 | 11559 | version "2.0.3" |
11667 | 11560 | resolved "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz#8e0741ac45fc0c226e58a17bfc3e64b9bc6ca61c" |
... | ... | @@ -11673,13 +11566,13 @@ tslib@^1.10.0, tslib@^1.8.1, tslib@^1.9.0: |
11673 | 11566 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== |
11674 | 11567 | |
11675 | 11568 | tslib@^2.0.3: |
11676 | - version "2.2.0" | |
11677 | - resolved "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz#fb2c475977e35e241311ede2693cee1ec6698f5c" | |
11678 | - integrity sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w== | |
11569 | + version "2.3.0" | |
11570 | + resolved "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz#803b8cdab3e12ba581a4ca41c8839bbb0dacb09e" | |
11571 | + integrity sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg== | |
11679 | 11572 | |
11680 | 11573 | tsutils@^3.21.0: |
11681 | 11574 | version "3.21.0" |
11682 | - resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" | |
11575 | + resolved "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" | |
11683 | 11576 | integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== |
11684 | 11577 | dependencies: |
11685 | 11578 | tslib "^1.8.1" |
... | ... | @@ -11773,11 +11666,11 @@ typescript@4.3.4: |
11773 | 11666 | integrity sha512-uauPG7XZn9F/mo+7MrsRjyvbxFpzemRjKEZXS4AK83oP2KKOJPvb+9cO/gmnv8arWZvhnjVOXz7B49m1l0e9Ew== |
11774 | 11667 | |
11775 | 11668 | uglify-js@^3.1.4: |
11776 | - version "3.13.3" | |
11777 | - resolved "https://registry.npmjs.org/uglify-js/-/uglify-js-3.13.3.tgz#ce72a1ad154348ea2af61f50933c76cc8802276e" | |
11778 | - integrity sha512-otIc7O9LyxpUcQoXzj2hL4LPWKklO6LJWoJUzNa8A17Xgi4fOeDC8FBDOLHnC/Slo1CQgsZMcM6as0M76BZaig== | |
11669 | + version "3.13.9" | |
11670 | + resolved "https://registry.npmjs.org/uglify-js/-/uglify-js-3.13.9.tgz#4d8d21dcd497f29cfd8e9378b9df123ad025999b" | |
11671 | + integrity sha512-wZbyTQ1w6Y7fHdt8sJnHfSIuWeDgk6B5rCb4E/AM6QNNPbOMIZph21PW5dRB3h7Df0GszN+t7RuUH6sWK5bF0g== | |
11779 | 11672 | |
11780 | -unbox-primitive@^1.0.0: | |
11673 | +unbox-primitive@^1.0.1: | |
11781 | 11674 | version "1.0.1" |
11782 | 11675 | resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471" |
11783 | 11676 | integrity sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw== |
... | ... | @@ -11886,11 +11779,6 @@ union@~0.5.0: |
11886 | 11779 | dependencies: |
11887 | 11780 | qs "^6.4.0" |
11888 | 11781 | |
11889 | -uniq@^1.0.1: | |
11890 | - version "1.0.1" | |
11891 | - resolved "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" | |
11892 | - integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8= | |
11893 | - | |
11894 | 11782 | unique-string@^1.0.0: |
11895 | 11783 | version "1.0.0" |
11896 | 11784 | resolved "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" |
... | ... | @@ -12149,7 +12037,7 @@ validate-npm-package-license@^3.0.1: |
12149 | 12037 | |
12150 | 12038 | vary@^1: |
12151 | 12039 | version "1.1.2" |
12152 | - resolved "https://registry.npmjs.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" | |
12040 | + resolved "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" | |
12153 | 12041 | integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= |
12154 | 12042 | |
12155 | 12043 | vditor@^3.8.5: |
... | ... | @@ -12339,7 +12227,7 @@ vite-plugin-svg-icons@^0.7.1: |
12339 | 12227 | |
12340 | 12228 | vite-plugin-theme@^0.8.1: |
12341 | 12229 | version "0.8.1" |
12342 | - resolved "https://registry.yarnpkg.com/vite-plugin-theme/-/vite-plugin-theme-0.8.1.tgz#9008256a58a57dca81004ffa1de63ce9f60bf9eb" | |
12230 | + resolved "https://registry.npmjs.org/vite-plugin-theme/-/vite-plugin-theme-0.8.1.tgz#9008256a58a57dca81004ffa1de63ce9f60bf9eb" | |
12343 | 12231 | integrity sha512-kyfcMW9YOBuNWHvORWJoq2tJ53Eaq3O7rFntENHtqp6hbblqdGhGlCzxXDbepVthFCxlyIel8S6EFIsCT6CVfg== |
12344 | 12232 | dependencies: |
12345 | 12233 | "@types/node" "^14.17.1" |
... | ... | @@ -12351,47 +12239,37 @@ vite-plugin-theme@^0.8.1: |
12351 | 12239 | esbuild-plugin-alias "^0.1.2" |
12352 | 12240 | tinycolor2 "^1.4.2" |
12353 | 12241 | |
12354 | -vite-plugin-windicss@^1.0.4: | |
12355 | - version "1.0.4" | |
12356 | - resolved "https://registry.npmjs.org/vite-plugin-windicss/-/vite-plugin-windicss-1.0.4.tgz#8515822266efcd359ea506c280b00397954f5fc6" | |
12357 | - integrity sha512-3foNePu1+DHBrCMZhKf84rNH7pgWUoN53h1cKrnLBI4UruCCBmVvZ8W2Kr5cNGgh/ME/nslON2RQPoHxE+F0gA== | |
12358 | - dependencies: | |
12359 | - "@windicss/plugin-utils" "1.0.4" | |
12360 | - chalk "^4.1.1" | |
12361 | - debug "^4.3.2" | |
12362 | - windicss "^3.1.3" | |
12363 | - | |
12364 | -vite@2.3.7: | |
12365 | - version "2.3.7" | |
12366 | - resolved "https://registry.npmjs.org/vite/-/vite-2.3.7.tgz#3023892419367465e1af1739578f8663d04243b2" | |
12367 | - integrity sha512-Y0xRz11MPYu/EAvzN94+FsOZHbSvO6FUvHv127CyG7mV6oDoay2bw+g5y9wW3Blf8OY3chaz3nc/DcRe1IQ3Nw== | |
12242 | +vite@2.3.8: | |
12243 | + version "2.3.8" | |
12244 | + resolved "https://registry.npmjs.org/vite/-/vite-2.3.8.tgz#42e3e03953859fd410e4e6ab3d1cca0aab2adc3c" | |
12245 | + integrity sha512-QiEx+iqNnJntSgSF2fWRQvRey9pORIrtNJzNyBJXwc+BdzWs83FQolX84cTBo393cfhObrtWa6180dAa4NLDiQ== | |
12368 | 12246 | dependencies: |
12369 | - esbuild "^0.12.5" | |
12370 | - postcss "^8.3.0" | |
12371 | - resolve "^1.19.0" | |
12247 | + esbuild "^0.12.8" | |
12248 | + postcss "^8.3.4" | |
12249 | + resolve "^1.20.0" | |
12372 | 12250 | rollup "^2.38.5" |
12373 | 12251 | optionalDependencies: |
12374 | - fsevents "~2.3.1" | |
12252 | + fsevents "~2.3.2" | |
12375 | 12253 | |
12376 | 12254 | void-elements@^3.1.0: |
12377 | 12255 | version "3.1.0" |
12378 | 12256 | resolved "https://registry.npmjs.org/void-elements/-/void-elements-3.1.0.tgz#614f7fbf8d801f0bb5f0661f5b2f5785750e4f09" |
12379 | 12257 | integrity sha1-YU9/v42AHwu18GYfWy9XhXUOTwk= |
12380 | 12258 | |
12381 | -vscode-css-languageservice@^5.1.1: | |
12382 | - version "5.1.1" | |
12383 | - resolved "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-5.1.1.tgz#d68a22ea0b34a8356c169cafc7d32564c2ff6e87" | |
12384 | - integrity sha512-QW0oe/g2y5E2AbVqY7FJNr2Q8uHiAHNSFpptI6xB8Y0KgzVKppOcIVrgmBNzXhFp9IswAwptkdqr8ExSJbqPkQ== | |
12259 | +vscode-css-languageservice@^5.1.3: | |
12260 | + version "5.1.3" | |
12261 | + resolved "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-5.1.3.tgz#a7b2f21ed48842af5d9a98223bcae09e33d707d5" | |
12262 | + integrity sha512-c8xiUhrDBNG6iS92FEE+K3IWOHAqVvzsqjjLSaXHyF5Qdn/6VhUweGNjtZ2CBSfs+Vkmz7pJzLQ7Io1x5deumA== | |
12385 | 12263 | dependencies: |
12386 | 12264 | vscode-languageserver-textdocument "^1.0.1" |
12387 | 12265 | vscode-languageserver-types "^3.16.0" |
12388 | 12266 | vscode-nls "^5.0.0" |
12389 | 12267 | vscode-uri "^3.0.2" |
12390 | 12268 | |
12391 | -vscode-emmet-helper@^2.6.2: | |
12392 | - version "2.6.2" | |
12393 | - resolved "https://registry.npmjs.org/vscode-emmet-helper/-/vscode-emmet-helper-2.6.2.tgz#777b471a7851ba0ca8e4151533be7f92511f39b0" | |
12394 | - integrity sha512-SkL1WjZZsA+bfTo52QH4PgqXCQAJSqzOmJtAY3rOl17MKbY6iJhVv2T26PshjmUnHoXnXMNa7PcLMCS75RsQDQ== | |
12269 | +vscode-emmet-helper@^2.6.4: | |
12270 | + version "2.6.4" | |
12271 | + resolved "https://registry.npmjs.org/vscode-emmet-helper/-/vscode-emmet-helper-2.6.4.tgz#bea47f17649bba26b412f3d1fac18aaee43eba25" | |
12272 | + integrity sha512-fP0nunW1RUWEKGf4gqiYLOVNFFGXSRHjCl0pikxtwCFlty8WwimM+RBJ5o0aIiwerrYD30HqeaVyvDW027Sseg== | |
12395 | 12273 | dependencies: |
12396 | 12274 | emmet "^2.3.0" |
12397 | 12275 | jsonc-parser "^2.3.0" |
... | ... | @@ -12400,10 +12278,10 @@ vscode-emmet-helper@^2.6.2: |
12400 | 12278 | vscode-nls "^5.0.0" |
12401 | 12279 | vscode-uri "^2.1.2" |
12402 | 12280 | |
12403 | -vscode-html-languageservice@^4.0.3: | |
12404 | - version "4.0.3" | |
12405 | - resolved "https://registry.npmjs.org/vscode-html-languageservice/-/vscode-html-languageservice-4.0.3.tgz#3b7e7d3cfee75d47da0181dd638b5f459456a913" | |
12406 | - integrity sha512-34KPIgRHVInT+TiFNmfiPFDrUAOOLuySNP2h0pMxBu1ObAbSixSqB3BMQFxIHz9hrGd3X0DEvi5YkobDxs4rWw== | |
12281 | +vscode-html-languageservice@^4.0.4: | |
12282 | + version "4.0.5" | |
12283 | + resolved "https://registry.npmjs.org/vscode-html-languageservice/-/vscode-html-languageservice-4.0.5.tgz#4f3657200a0613f2b83d47542c80ca0328868885" | |
12284 | + integrity sha512-9ZKp7nfR6ObUA+K65GfgDPdOmXaPH8MOWxE2RwWF3tVnVMq2w+COKjDNHMvv+uNxtmaRT7/skls7CD/HzrW99w== | |
12407 | 12285 | dependencies: |
12408 | 12286 | vscode-languageserver-textdocument "^1.0.1" |
12409 | 12287 | vscode-languageserver-types "^3.16.0" |
... | ... | @@ -12422,28 +12300,28 @@ vscode-json-languageservice@^4.1.4: |
12422 | 12300 | vscode-nls "^5.0.0" |
12423 | 12301 | vscode-uri "^3.0.2" |
12424 | 12302 | |
12425 | -vscode-jsonrpc@6.1.0-next.2: | |
12426 | - version "6.1.0-next.2" | |
12427 | - resolved "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-6.1.0-next.2.tgz#b5b67028d551d486c4ac1ec139ffc29382b36a2e" | |
12428 | - integrity sha512-nkiNDGI+Ytp7uj1lxHXddXCoEunhcry1D+KmVHBfUUgWT9jMF8ZJyH5KQObdF+OGAh7bXZxD/SV4uGwSCeHHWA== | |
12303 | +vscode-jsonrpc@7.0.0-next.1: | |
12304 | + version "7.0.0-next.1" | |
12305 | + resolved "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-7.0.0-next.1.tgz#14bc13fe318a2885bc8ca0fc4f706a02be609825" | |
12306 | + integrity sha512-dEmliPZGbSyIcEeKRGzosCy7y7zsc8FXg1l5BBOGgMUbemlo3vUnsa2GFqpILJwJvlbvkRcF2QASNwIlKe9J7g== | |
12429 | 12307 | |
12430 | -vscode-languageserver-protocol@3.17.0-next.5: | |
12431 | - version "3.17.0-next.5" | |
12432 | - resolved "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.0-next.5.tgz#295ebd7c416d7224b57e4de43c4bfefcc8095f06" | |
12433 | - integrity sha512-LFZ6WMB3iPezQAU9OnGoERzcIVKhcs0OLfD/NHcqSj3g1wgxuLUL5kSlZbbjFySQCmhzm6b0yb3hjTSeBtq1+w== | |
12308 | +vscode-languageserver-protocol@3.17.0-next.6: | |
12309 | + version "3.17.0-next.6" | |
12310 | + resolved "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.0-next.6.tgz#39a96de06bdf9dcef847a3df1d7b2fbcb5e6b4bc" | |
12311 | + integrity sha512-f1kGsoOpISB5jSqQNeMDl2446enxVahyux2e5vZap6pu/TC+2UlvPT4DCR0gPph95KOQZweL9zq1SzLoPdqhuA== | |
12434 | 12312 | dependencies: |
12435 | - vscode-jsonrpc "6.1.0-next.2" | |
12436 | - vscode-languageserver-types "3.17.0-next.1" | |
12313 | + vscode-jsonrpc "7.0.0-next.1" | |
12314 | + vscode-languageserver-types "3.17.0-next.2" | |
12437 | 12315 | |
12438 | 12316 | vscode-languageserver-textdocument@^1.0.1: |
12439 | 12317 | version "1.0.1" |
12440 | 12318 | resolved "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.1.tgz#178168e87efad6171b372add1dea34f53e5d330f" |
12441 | 12319 | integrity sha512-UIcJDjX7IFkck7cSkNNyzIz5FyvpQfY7sdzVy+wkKN/BLaD4DQ0ppXQrKePomCxTS7RrolK1I0pey0bG9eh8dA== |
12442 | 12320 | |
12443 | -vscode-languageserver-types@3.17.0-next.1: | |
12444 | - version "3.17.0-next.1" | |
12445 | - resolved "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.0-next.1.tgz#396348493ccf567f0c22538033ebf95da5c5e4e3" | |
12446 | - integrity sha512-VGzh06oynbYa6JbTKUbxOEZN7CYEtWhN7DK5wfzUpeCJl8X8xZX39g2PVfpqXrIEduu7dcJgK007KgnX9tHNKA== | |
12321 | +vscode-languageserver-types@3.17.0-next.2: | |
12322 | + version "3.17.0-next.2" | |
12323 | + resolved "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.0-next.2.tgz#0d011858afd81f2387f09ed06579e730495de2bf" | |
12324 | + integrity sha512-L5S2kNLCgYJMVWgsZjBaorMM/6+itAfvOyl6Kv1bgFzDNaUKm9HsnUlehjpWPdV5DqnfJhJ5E03Z+/3Mw8ii+Q== | |
12447 | 12325 | |
12448 | 12326 | vscode-languageserver-types@^3.15.1, vscode-languageserver-types@^3.16.0: |
12449 | 12327 | version "3.16.0" |
... | ... | @@ -12451,37 +12329,42 @@ vscode-languageserver-types@^3.15.1, vscode-languageserver-types@^3.16.0: |
12451 | 12329 | integrity sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA== |
12452 | 12330 | |
12453 | 12331 | vscode-languageserver@^7.1.0-next.4: |
12454 | - version "7.1.0-next.4" | |
12455 | - resolved "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-7.1.0-next.4.tgz#e9503af9d028dfc3a89e210646c265a087f46b8c" | |
12456 | - integrity sha512-/65lxR/CuLJoOdzTjOTYUPWS7k5qzaWese4PObnWc6jwLryUrSa7DslYfaRXigh5/xr1nlaUZCcJwkpgM0wFvw== | |
12332 | + version "7.1.0-next.5" | |
12333 | + resolved "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-7.1.0-next.5.tgz#6b341590c82dd69b097048b6cf67c82106d03c8a" | |
12334 | + integrity sha512-TkpkcFqdYc40OsKJeQLG9pzpKtX9YR4laHr5mX5H8PTLQ38wNwZxh8duGy0mGPQeGvfV/X3IlKzvcX2D7Pijpg== | |
12457 | 12335 | dependencies: |
12458 | - vscode-languageserver-protocol "3.17.0-next.5" | |
12336 | + vscode-languageserver-protocol "3.17.0-next.6" | |
12337 | + | |
12338 | +vscode-nls@^4.1.2: | |
12339 | + version "4.1.2" | |
12340 | + resolved "https://registry.npmjs.org/vscode-nls/-/vscode-nls-4.1.2.tgz#ca8bf8bb82a0987b32801f9fddfdd2fb9fd3c167" | |
12341 | + integrity sha512-7bOHxPsfyuCqmP+hZXscLhiHwe7CSuFE4hyhbs22xPIhQ4jv99FcR4eBzfYYVLP356HNFpdvz63FFb/xw6T4Iw== | |
12459 | 12342 | |
12460 | 12343 | vscode-nls@^5.0.0: |
12461 | 12344 | version "5.0.0" |
12462 | 12345 | resolved "https://registry.npmjs.org/vscode-nls/-/vscode-nls-5.0.0.tgz#99f0da0bd9ea7cda44e565a74c54b1f2bc257840" |
12463 | 12346 | integrity sha512-u0Lw+IYlgbEJFF6/qAqG2d1jQmJl0eyAGJHoAJqr2HT4M2BNuQYSEiSE75f52pXHSJm8AlTjnLLbBFPrdz2hpA== |
12464 | 12347 | |
12465 | -vscode-pug-languageservice@^0.25.18: | |
12466 | - version "0.25.18" | |
12467 | - resolved "https://registry.yarnpkg.com/vscode-pug-languageservice/-/vscode-pug-languageservice-0.25.18.tgz#6cc5a091a99c81aaad4e1666f9265370c0697379" | |
12468 | - integrity sha512-+uiUQ82EO/Wb7rxTvvpfPY8g6Mt4xnNOI85lX1ZQTJR5Lk+GlCQP1CS0SO3L4zWNQuVG/d7buv4ENdUEuuBm+A== | |
12348 | +vscode-pug-languageservice@^0.25.22: | |
12349 | + version "0.25.22" | |
12350 | + resolved "https://registry.npmjs.org/vscode-pug-languageservice/-/vscode-pug-languageservice-0.25.22.tgz#4920f26a395e835e10e99861dd3b9481161e8194" | |
12351 | + integrity sha512-1v1ljcqMuyaITCbby3eMsMiAVJXtVxGu+oMwJ8STOeDsMgkOTv3IrfoZjwsps96Qj3pf0d8XJPzSZkGoTrBiOA== | |
12469 | 12352 | dependencies: |
12470 | - "@volar/code-gen" "^0.25.18" | |
12471 | - "@volar/shared" "^0.25.18" | |
12472 | - "@volar/source-map" "^0.25.18" | |
12473 | - "@volar/transforms" "^0.25.18" | |
12353 | + "@volar/code-gen" "^0.25.22" | |
12354 | + "@volar/shared" "^0.25.22" | |
12355 | + "@volar/source-map" "^0.25.22" | |
12356 | + "@volar/transforms" "^0.25.22" | |
12474 | 12357 | pug-beautify "^0.1.1" |
12475 | 12358 | pug-lexer "^5.0.1" |
12476 | 12359 | pug-parser "^6.0.0" |
12477 | 12360 | vscode-languageserver "^7.1.0-next.4" |
12478 | 12361 | |
12479 | -vscode-typescript-languageservice@^0.25.18: | |
12480 | - version "0.25.18" | |
12481 | - resolved "https://registry.yarnpkg.com/vscode-typescript-languageservice/-/vscode-typescript-languageservice-0.25.18.tgz#de25e2e5f4193c30d4c223fe2113bce818fc7356" | |
12482 | - integrity sha512-SdiOHaHoA+rKm2FLFNGM3HBdv5gVeITrMik+Flvexq4+4TG3fVbpO0xMkkobrn1RX5jI9DEl4/1PYnJdOOP23w== | |
12362 | +vscode-typescript-languageservice@^0.25.22: | |
12363 | + version "0.25.22" | |
12364 | + resolved "https://registry.npmjs.org/vscode-typescript-languageservice/-/vscode-typescript-languageservice-0.25.22.tgz#ac642a96e71fbbe8ddef27965b56fc15dd8eac14" | |
12365 | + integrity sha512-Fb6i9RsAOTZUqtkQiOv6THkBofWedPtxXiXGGkoIEkkgEoP16wQtw9ctYGsazOO127kjgYLRN8TdsudvqcFtEw== | |
12483 | 12366 | dependencies: |
12484 | - "@volar/shared" "^0.25.18" | |
12367 | + "@volar/shared" "^0.25.22" | |
12485 | 12368 | typescript-vscode-sh-plugin "^0.6.14" |
12486 | 12369 | upath "^2.0.1" |
12487 | 12370 | vscode-languageserver "^7.1.0-next.4" |
... | ... | @@ -12498,36 +12381,37 @@ vscode-uri@^3.0.2: |
12498 | 12381 | integrity sha512-jkjy6pjU1fxUvI51P+gCsxg1u2n8LSt0W6KrCNQceaziKzff74GoWmjVG46KieVzybO1sttPQmYfrwSHey7GUA== |
12499 | 12382 | |
12500 | 12383 | vscode-vue-languageservice@^0.25.17: |
12501 | - version "0.25.18" | |
12502 | - resolved "https://registry.yarnpkg.com/vscode-vue-languageservice/-/vscode-vue-languageservice-0.25.18.tgz#f94e5674d0afcb96dd2aa4afba97378735666191" | |
12503 | - integrity sha512-clhqqgiyDqm3pIwq+9l/JvW4BAbwJ8HTU7i5Sl34oYuvlJCx9wjTPjSeAj92EDPecvXLThHMep0XUUePtiePTg== | |
12384 | + version "0.25.22" | |
12385 | + resolved "https://registry.npmjs.org/vscode-vue-languageservice/-/vscode-vue-languageservice-0.25.22.tgz#e7ac55bbf8dc2d4529c0603e833a59afaa1ad49b" | |
12386 | + integrity sha512-g9AipU1T7AON/rAJ5+pyYmWZD/V+0CTSqRSPMaK/eRaYxLNfrXXLgankoNhqP5XyHFQsYbxMJ6mAg3d0Vy3WZw== | |
12504 | 12387 | dependencies: |
12505 | 12388 | "@starptech/prettyhtml" "^0.10.0" |
12506 | - "@volar/code-gen" "^0.25.18" | |
12389 | + "@volar/code-gen" "^0.25.22" | |
12507 | 12390 | "@volar/html2pug" "^0.25.4" |
12508 | - "@volar/shared" "^0.25.18" | |
12509 | - "@volar/source-map" "^0.25.18" | |
12510 | - "@volar/transforms" "^0.25.18" | |
12391 | + "@volar/shared" "^0.25.22" | |
12392 | + "@volar/source-map" "^0.25.22" | |
12393 | + "@volar/transforms" "^0.25.22" | |
12511 | 12394 | "@vue/compiler-dom" "^3.0.11" |
12512 | 12395 | "@vue/compiler-sfc" "^3.0.11" |
12513 | 12396 | "@vue/reactivity" "^3.0.11" |
12514 | 12397 | "@vue/shared" "^3.0.11" |
12515 | 12398 | jsonc-parser "^3.0.0" |
12516 | 12399 | prettier "^1.16.4" |
12400 | + request-light "^0.4.0" | |
12517 | 12401 | upath "^2.0.1" |
12518 | - vscode-css-languageservice "^5.1.1" | |
12519 | - vscode-emmet-helper "^2.6.2" | |
12520 | - vscode-html-languageservice "^4.0.3" | |
12402 | + vscode-css-languageservice "^5.1.3" | |
12403 | + vscode-emmet-helper "^2.6.4" | |
12404 | + vscode-html-languageservice "^4.0.4" | |
12521 | 12405 | vscode-json-languageservice "^4.1.4" |
12522 | 12406 | vscode-languageserver "^7.1.0-next.4" |
12523 | 12407 | vscode-languageserver-textdocument "^1.0.1" |
12524 | - vscode-pug-languageservice "^0.25.18" | |
12525 | - vscode-typescript-languageservice "^0.25.18" | |
12408 | + vscode-pug-languageservice "^0.25.22" | |
12409 | + vscode-typescript-languageservice "^0.25.22" | |
12526 | 12410 | |
12527 | 12411 | vue-demi@*: |
12528 | - version "0.9.0" | |
12529 | - resolved "https://registry.npmjs.org/vue-demi/-/vue-demi-0.9.0.tgz#b30da61450079d60a132d7aaf9e86d1949e8445e" | |
12530 | - integrity sha512-f8vVUpC726YXv99fF/3zHaw5CUYbP5H/DVWBN+pncXM8P2Uz88kkffwj9yD7MukuVzPICDHNrgS3VC2ursaP7g== | |
12412 | + version "0.9.1" | |
12413 | + resolved "https://registry.npmjs.org/vue-demi/-/vue-demi-0.9.1.tgz#25d6e1ebd4d4010757ff3571e2bf6a1d7bf3de82" | |
12414 | + integrity sha512-7s1lufRD2l369eFWPjgLvhqCRk0XzGWJsQc7K4q+0mZtixyGIvsK1Cg88P4NcaRIEiBuuN4q1NN4SZKFKwQswA== | |
12531 | 12415 | |
12532 | 12416 | vue-eslint-parser@^7.6.0: |
12533 | 12417 | version "7.6.0" |
... | ... | @@ -12543,7 +12427,7 @@ vue-eslint-parser@^7.6.0: |
12543 | 12427 | |
12544 | 12428 | vue-i18n@9.1.6: |
12545 | 12429 | version "9.1.6" |
12546 | - resolved "https://registry.yarnpkg.com/vue-i18n/-/vue-i18n-9.1.6.tgz#4cf992e2aec5458bc19369973c96ea7d0f560321" | |
12430 | + resolved "https://registry.npmjs.org/vue-i18n/-/vue-i18n-9.1.6.tgz#4cf992e2aec5458bc19369973c96ea7d0f560321" | |
12547 | 12431 | integrity sha512-FEC4HZkTH6QRIu/A0wlo0VS/GH3w/fuCC6xfvoC8IyhhtbG9A+go9NfW+HZ1ZXdAcO4EWcVQi04M+iSwuxgixw== |
12548 | 12432 | dependencies: |
12549 | 12433 | "@intlify/core-base" "9.1.6" |
... | ... | @@ -12551,21 +12435,9 @@ vue-i18n@9.1.6: |
12551 | 12435 | "@intlify/vue-devtools" "9.1.6" |
12552 | 12436 | "@vue/devtools-api" "^6.0.0-beta.7" |
12553 | 12437 | |
12554 | -vue-jest@^5.0.0-alpha.10: | |
12555 | - version "5.0.0-alpha.10" | |
12556 | - resolved "https://registry.npmjs.org/vue-jest/-/vue-jest-5.0.0-alpha.10.tgz#4326977b3b0268b1def140f3b69113c2d82fb090" | |
12557 | - integrity sha512-iN62cTi4AL0UsgxEyVeJtHG6qXEv+8Ci2wX1vP3b/dAZvyBRmqy5aJHQrP6VCEuio+HgHQ1LAZ+ccM2pouBmlg== | |
12558 | - dependencies: | |
12559 | - "@babel/plugin-transform-modules-commonjs" "^7.2.0" | |
12560 | - chalk "^2.1.0" | |
12561 | - convert-source-map "^1.6.0" | |
12562 | - extract-from-css "^0.4.4" | |
12563 | - source-map "0.5.6" | |
12564 | - tsconfig "^7.0.0" | |
12565 | - | |
12566 | 12438 | vue-json-pretty@^2.0.2: |
12567 | 12439 | version "2.0.2" |
12568 | - resolved "https://registry.npmjs.com/vue-json-pretty/-/vue-json-pretty-2.0.2.tgz#cb8f559af15ea3a2ee53b2742672c7791826d6a3" | |
12440 | + resolved "https://registry.npmjs.org/vue-json-pretty/-/vue-json-pretty-2.0.2.tgz#cb8f559af15ea3a2ee53b2742672c7791826d6a3" | |
12569 | 12441 | integrity sha512-Vn7SX3XR9cfvGRNoTDNID89GmvVUMb7/fLUX3C3n0Qptga0N7hp7Zwspui1I1XN5pE+PeoVghCSYty+bi8KnjA== |
12570 | 12442 | |
12571 | 12443 | vue-router@^4.0.9: |
... | ... | @@ -12577,7 +12449,7 @@ vue-router@^4.0.9: |
12577 | 12449 | |
12578 | 12450 | vue-tsc@^0.1.7: |
12579 | 12451 | version "0.1.7" |
12580 | - resolved "https://registry.yarnpkg.com/vue-tsc/-/vue-tsc-0.1.7.tgz#ff4e2b0a3302564f0103339ca5a17669801a4796" | |
12452 | + resolved "https://registry.npmjs.org/vue-tsc/-/vue-tsc-0.1.7.tgz#ff4e2b0a3302564f0103339ca5a17669801a4796" | |
12581 | 12453 | integrity sha512-wQfgo8ZAaBN5mo27cRYQUnOsgR6UIp197w1cNlgukzaD3Mj/GEjwAPuZ6hxpIZiPewLRKNp60SpPM78iuexHQg== |
12582 | 12454 | dependencies: |
12583 | 12455 | vscode-vue-languageservice "^0.25.17" |
... | ... | @@ -12589,7 +12461,7 @@ vue-types@^3.0.0, vue-types@^3.0.2: |
12589 | 12461 | dependencies: |
12590 | 12462 | is-plain-object "3.0.1" |
12591 | 12463 | |
12592 | -vue@3.0.11, vue@^3.0.0: | |
12464 | +vue@3.0.11: | |
12593 | 12465 | version "3.0.11" |
12594 | 12466 | resolved "https://registry.npmjs.org/vue/-/vue-3.0.11.tgz#c82f9594cbf4dcc869241d4c8dd3e08d9a8f4b5f" |
12595 | 12467 | integrity sha512-3/eUi4InQz8MPzruHYSTQPxtM3LdZ1/S/BvaU021zBnZi0laRUyH6pfuE4wtUeLvI8wmUNwj5wrZFvbHUXL9dw== |
... | ... | @@ -12598,6 +12470,15 @@ vue@3.0.11, vue@^3.0.0: |
12598 | 12470 | "@vue/runtime-dom" "3.0.11" |
12599 | 12471 | "@vue/shared" "3.0.11" |
12600 | 12472 | |
12473 | +vue@^3.0.0: | |
12474 | + version "3.1.1" | |
12475 | + resolved "https://registry.npmjs.org/vue/-/vue-3.1.1.tgz#9ad655758a0fa6c0dee5b3d2431d3912a9b381aa" | |
12476 | + integrity sha512-j9fj3PNPMxo2eqOKYjMuss9XBS8ZtmczLY3kPvjcp9d3DbhyNqLYbaMQH18+1pDIzzVvQCQBvIf774LsjjqSKA== | |
12477 | + dependencies: | |
12478 | + "@vue/compiler-dom" "3.1.1" | |
12479 | + "@vue/runtime-dom" "3.1.1" | |
12480 | + "@vue/shared" "3.1.1" | |
12481 | + | |
12601 | 12482 | w3c-hr-time@^1.0.2: |
12602 | 12483 | version "1.0.2" |
12603 | 12484 | resolved "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd" |
... | ... | @@ -12715,11 +12596,6 @@ widest-line@^2.0.0: |
12715 | 12596 | dependencies: |
12716 | 12597 | string-width "^2.1.1" |
12717 | 12598 | |
12718 | -windicss@^3.1.3: | |
12719 | - version "3.1.3" | |
12720 | - resolved "https://registry.npmjs.org/windicss/-/windicss-3.1.3.tgz#a4b80af48bdd5d4be13520f700b497af455df700" | |
12721 | - integrity sha512-l7fpoba2LY9AYRy4UgcuOpbPsed8UsbpEQYUVWRR1wdAwiKxK6bGIMfpiKJtjPAPdh0GOGUqr6KJar0EDZSxzg== | |
12722 | - | |
12723 | 12599 | with@^7.0.0: |
12724 | 12600 | version "7.0.2" |
12725 | 12601 | resolved "https://registry.npmjs.org/with/-/with-7.0.2.tgz#ccee3ad542d25538a7a7a80aad212b9828495bac" |
... | ... | @@ -13002,7 +12878,7 @@ xmlchars@^2.2.0: |
13002 | 12878 | resolved "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" |
13003 | 12879 | integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== |
13004 | 12880 | |
13005 | -xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1: | |
12881 | +xtend@^4.0.0, xtend@^4.0.1, xtend@^4.0.2, xtend@~4.0.1: | |
13006 | 12882 | version "4.0.2" |
13007 | 12883 | resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" |
13008 | 12884 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== |
... | ... | @@ -13032,7 +12908,7 @@ yallist@^4.0.0: |
13032 | 12908 | resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" |
13033 | 12909 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== |
13034 | 12910 | |
13035 | -yaml@^1.10.0: | |
12911 | +yaml@^1.10.0, yaml@^1.10.2: | |
13036 | 12912 | version "1.10.2" |
13037 | 12913 | resolved "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" |
13038 | 12914 | integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== | ... | ... |