Commit 5e17cc8802db73703c88b2479d394f4700869018
1 parent
02e77560
refactor: refactor tailwindcss to windicss
Showing
13 changed files
with
205 additions
and
375 deletions
.vscode/settings.json
CHANGELOG.zh_CN.md
1 | +## 2.7.0(2021-08-03) | ||
2 | + | ||
3 | +## (破坏性更新) Breaking changes | ||
4 | + | ||
5 | +- 将项目`tailwindcss`还原回`windicss`,尝试了`tailwindcss`,问题可能还挺多,先切换回`windicss`提高开发效率,切换成本较低。 | ||
6 | + - 目前项目不兼容地方有 | ||
7 | + - `xl:!m-4` 之类的写法需要改为`!xl:m-4`,注意只有`!`这个不兼容,没用到则不用改 | ||
8 | + - 内存溢出问题可能还在(频率低,重启下即可,重启 vite 较快) | ||
9 | + | ||
1 | ### ✨ Features | 10 | ### ✨ Features |
2 | 11 | ||
3 | - **Preview** 添加新的属性及事件 | 12 | - **Preview** 添加新的属性及事件 |
build/vite/plugin/index.ts
@@ -5,7 +5,7 @@ import vueJsx from '@vitejs/plugin-vue-jsx'; | @@ -5,7 +5,7 @@ import vueJsx from '@vitejs/plugin-vue-jsx'; | ||
5 | import legacy from '@vitejs/plugin-legacy'; | 5 | import legacy from '@vitejs/plugin-legacy'; |
6 | 6 | ||
7 | import purgeIcons from 'vite-plugin-purge-icons'; | 7 | import purgeIcons from 'vite-plugin-purge-icons'; |
8 | - | 8 | +import windiCSS from 'vite-plugin-windicss'; |
9 | import { configHtmlPlugin } from './html'; | 9 | import { configHtmlPlugin } from './html'; |
10 | import { configPwaConfig } from './pwa'; | 10 | import { configPwaConfig } from './pwa'; |
11 | import { configMockPlugin } from './mock'; | 11 | import { configMockPlugin } from './mock'; |
@@ -33,6 +33,9 @@ export function createVitePlugins(viteEnv: ViteEnv, isBuild: boolean) { | @@ -33,6 +33,9 @@ export function createVitePlugins(viteEnv: ViteEnv, isBuild: boolean) { | ||
33 | vueJsx(), | 33 | vueJsx(), |
34 | ]; | 34 | ]; |
35 | 35 | ||
36 | + // vite-plugin-windicss | ||
37 | + vitePlugins.push(windiCSS()); | ||
38 | + | ||
36 | // TODO | 39 | // TODO |
37 | !isBuild && vitePlugins.push(configHmrPlugin()); | 40 | !isBuild && vitePlugins.push(configHmrPlugin()); |
38 | 41 |
package.json
@@ -35,8 +35,8 @@ | @@ -35,8 +35,8 @@ | ||
35 | }, | 35 | }, |
36 | "dependencies": { | 36 | "dependencies": { |
37 | "@iconify/iconify": "^2.0.3", | 37 | "@iconify/iconify": "^2.0.3", |
38 | - "@logicflow/core": "^0.6.5", | ||
39 | - "@logicflow/extension": "^0.6.5", | 38 | + "@logicflow/core": "^0.6.6", |
39 | + "@logicflow/extension": "^0.6.6", | ||
40 | "@vueuse/core": "^5.2.0", | 40 | "@vueuse/core": "^5.2.0", |
41 | "@zxcvbn-ts/core": "^1.0.0-beta.0", | 41 | "@zxcvbn-ts/core": "^1.0.0-beta.0", |
42 | "ant-design-vue": "2.2.2", | 42 | "ant-design-vue": "2.2.2", |
@@ -67,7 +67,7 @@ | @@ -67,7 +67,7 @@ | ||
67 | "devDependencies": { | 67 | "devDependencies": { |
68 | "@commitlint/cli": "^13.1.0", | 68 | "@commitlint/cli": "^13.1.0", |
69 | "@commitlint/config-conventional": "^13.1.0", | 69 | "@commitlint/config-conventional": "^13.1.0", |
70 | - "@iconify/json": "^1.1.381", | 70 | + "@iconify/json": "^1.1.382", |
71 | "@purge-icons/generated": "^0.7.0", | 71 | "@purge-icons/generated": "^0.7.0", |
72 | "@types/codemirror": "^5.60.2", | 72 | "@types/codemirror": "^5.60.2", |
73 | "@types/crypto-js": "^4.0.2", | 73 | "@types/crypto-js": "^4.0.2", |
@@ -77,13 +77,13 @@ | @@ -77,13 +77,13 @@ | ||
77 | "@types/jest": "^26.0.24", | 77 | "@types/jest": "^26.0.24", |
78 | "@types/lodash-es": "^4.17.4", | 78 | "@types/lodash-es": "^4.17.4", |
79 | "@types/mockjs": "^1.0.4", | 79 | "@types/mockjs": "^1.0.4", |
80 | - "@types/node": "^16.4.9", | 80 | + "@types/node": "^16.4.10", |
81 | "@types/nprogress": "^0.2.0", | 81 | "@types/nprogress": "^0.2.0", |
82 | "@types/qrcode": "^1.4.1", | 82 | "@types/qrcode": "^1.4.1", |
83 | "@types/qs": "^6.9.7", | 83 | "@types/qs": "^6.9.7", |
84 | "@types/sortablejs": "^1.10.7", | 84 | "@types/sortablejs": "^1.10.7", |
85 | - "@typescript-eslint/eslint-plugin": "^4.28.5", | ||
86 | - "@typescript-eslint/parser": "^4.28.5", | 85 | + "@typescript-eslint/eslint-plugin": "^4.29.0", |
86 | + "@typescript-eslint/parser": "^4.29.0", | ||
87 | "@vitejs/plugin-legacy": "^1.5.0", | 87 | "@vitejs/plugin-legacy": "^1.5.0", |
88 | "@vitejs/plugin-vue": "^1.3.0", | 88 | "@vitejs/plugin-vue": "^1.3.0", |
89 | "@vitejs/plugin-vue-jsx": "^1.1.7", | 89 | "@vitejs/plugin-vue-jsx": "^1.1.7", |
@@ -119,20 +119,20 @@ | @@ -119,20 +119,20 @@ | ||
119 | "stylelint-config-prettier": "^8.0.2", | 119 | "stylelint-config-prettier": "^8.0.2", |
120 | "stylelint-config-standard": "^22.0.0", | 120 | "stylelint-config-standard": "^22.0.0", |
121 | "stylelint-order": "^4.1.0", | 121 | "stylelint-order": "^4.1.0", |
122 | - "tailwindcss": "^2.2.7", | ||
123 | "ts-jest": "^27.0.4", | 122 | "ts-jest": "^27.0.4", |
124 | "ts-node": "^10.1.0", | 123 | "ts-node": "^10.1.0", |
125 | "typescript": "4.3.5", | 124 | "typescript": "4.3.5", |
126 | "vite": "2.4.4", | 125 | "vite": "2.4.4", |
127 | - "vite-plugin-compression": "^0.3.1", | 126 | + "vite-plugin-compression": "^0.3.3", |
128 | "vite-plugin-html": "^2.0.7", | 127 | "vite-plugin-html": "^2.0.7", |
129 | - "vite-plugin-imagemin": "^0.4.1", | ||
130 | - "vite-plugin-mock": "^2.9.3", | 128 | + "vite-plugin-imagemin": "^0.4.3", |
129 | + "vite-plugin-mock": "^2.9.4", | ||
131 | "vite-plugin-purge-icons": "^0.7.0", | 130 | "vite-plugin-purge-icons": "^0.7.0", |
132 | "vite-plugin-pwa": "^0.9.3", | 131 | "vite-plugin-pwa": "^0.9.3", |
133 | - "vite-plugin-style-import": "^1.0.1", | ||
134 | - "vite-plugin-svg-icons": "^1.0.1", | 132 | + "vite-plugin-style-import": "^1.1.0", |
133 | + "vite-plugin-svg-icons": "^1.0.3", | ||
135 | "vite-plugin-theme": "^0.8.1", | 134 | "vite-plugin-theme": "^0.8.1", |
135 | + "vite-plugin-windicss": "^1.2.7", | ||
136 | "vue-eslint-parser": "^7.10.0", | 136 | "vue-eslint-parser": "^7.10.0", |
137 | "vue-tsc": "^0.2.2" | 137 | "vue-tsc": "^0.2.2" |
138 | }, | 138 | }, |
postcss.config.js
src/design/tailwind.css deleted
100644 → 0
src/main.ts
1 | import '/@/design/index.less'; | 1 | import '/@/design/index.less'; |
2 | -import '/@/design/tailwind.css'; | 2 | + |
3 | +// Register windi | ||
4 | +import 'virtual:windi.css'; | ||
3 | // Register icon sprite | 5 | // Register icon sprite |
4 | import 'virtual:svg-icons-register'; | 6 | import 'virtual:svg-icons-register'; |
5 | import App from './App.vue'; | 7 | import App from './App.vue'; |
src/views/dashboard/analysis/components/GrowCard.vue
@@ -5,8 +5,8 @@ | @@ -5,8 +5,8 @@ | ||
5 | size="small" | 5 | size="small" |
6 | :loading="$attrs.loading" | 6 | :loading="$attrs.loading" |
7 | :title="item.title" | 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 | :canExpan="false" | 10 | :canExpan="false" |
11 | > | 11 | > |
12 | <template #extra> | 12 | <template #extra> |
src/views/dashboard/analysis/index.vue
@@ -6,7 +6,7 @@ | @@ -6,7 +6,7 @@ | ||
6 | <div class="md:flex enter-y"> | 6 | <div class="md:flex enter-y"> |
7 | <VisitRadar class="md:w-1/3 w-full" :loading="loading" /> | 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 | <SalesProductPie class="md:w-1/3 w-full" :loading="loading" /> | 10 | <SalesProductPie class="md:w-1/3 w-full" :loading="loading" /> |
11 | </div> | 11 | </div> |
12 | </div> | 12 | </div> |
src/views/dashboard/workbench/components/ProjectCard.vue
@@ -5,7 +5,7 @@ | @@ -5,7 +5,7 @@ | ||
5 | </template> | 5 | </template> |
6 | 6 | ||
7 | <template v-for="item in items" :key="item"> | 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 | <span class="flex"> | 9 | <span class="flex"> |
10 | <Icon :icon="item.icon" :color="item.color" size="30" /> | 10 | <Icon :icon="item.icon" :color="item.color" size="30" /> |
11 | <span class="text-lg ml-4">{{ item.title }}</span> | 11 | <span class="text-lg ml-4">{{ item.title }}</span> |
src/views/dashboard/workbench/index.vue
@@ -10,11 +10,7 @@ | @@ -10,11 +10,7 @@ | ||
10 | <QuickNav :loading="loading" class="enter-y" /> | 10 | <QuickNav :loading="loading" class="enter-y" /> |
11 | 11 | ||
12 | <Card class="!my-4 enter-y" :loading="loading"> | 12 | <Card class="!my-4 enter-y" :loading="loading"> |
13 | - <img | ||
14 | - style="height: 216px" | ||
15 | - class="h-20 mx-auto" | ||
16 | - src="../../../assets/svg/illustration.svg" | ||
17 | - /> | 13 | + <img class="xl:h-50 h-30 mx-auto" src="../../../assets/svg/illustration.svg" /> |
18 | </Card> | 14 | </Card> |
19 | 15 | ||
20 | <SaleRadar :loading="loading" class="enter-y" /> | 16 | <SaleRadar :loading="loading" class="enter-y" /> |
src/views/sys/login/LoginForm.vue
@@ -53,12 +53,12 @@ | @@ -53,12 +53,12 @@ | ||
53 | </Button> --> | 53 | </Button> --> |
54 | </FormItem> | 54 | </FormItem> |
55 | <ARow class="enter-x"> | 55 | <ARow class="enter-x"> |
56 | - <ACol :xs="24" :md="8"> | 56 | + <ACol :md="8" :xs="24"> |
57 | <Button block @click="setLoginState(LoginStateEnum.MOBILE)"> | 57 | <Button block @click="setLoginState(LoginStateEnum.MOBILE)"> |
58 | {{ t('sys.login.mobileSignInFormTitle') }} | 58 | {{ t('sys.login.mobileSignInFormTitle') }} |
59 | </Button> | 59 | </Button> |
60 | </ACol> | 60 | </ACol> |
61 | - <ACol :md="8" :xs="24" class="!my-2 md:!my-0 xs:mx-0 md:mx-2"> | 61 | + <ACol :md="8" :xs="24" class="!my-2 !md:my-0 xs:mx-0 md:mx-2"> |
62 | <Button block @click="setLoginState(LoginStateEnum.QR_CODE)"> | 62 | <Button block @click="setLoginState(LoginStateEnum.QR_CODE)"> |
63 | {{ t('sys.login.qrSignInFormTitle') }} | 63 | {{ t('sys.login.qrSignInFormTitle') }} |
64 | </Button> | 64 | </Button> |
yarn.lock
@@ -24,6 +24,13 @@ | @@ -24,6 +24,13 @@ | ||
24 | "@types/lodash" "^4.14.165" | 24 | "@types/lodash" "^4.14.165" |
25 | lodash "^4.17.15" | 25 | lodash "^4.17.15" |
26 | 26 | ||
27 | +"@antfu/utils@^0.2.4": | ||
28 | + version "0.2.4" | ||
29 | + resolved "https://registry.npmjs.org/@antfu/utils/-/utils-0.2.4.tgz#c7d33fc6faa0d3a6fcc2555673f5e9b19c0fbc15" | ||
30 | + integrity sha512-2bZNkVfL9IZESmvE26UKi8SzyvSoaIsGXDcnbHFMtmGMqUiB1fXpAJ1ijGf+tSqKRQ5yagck2U1Qk0p+705/kw== | ||
31 | + dependencies: | ||
32 | + "@types/throttle-debounce" "^2.1.0" | ||
33 | + | ||
27 | "@babel/code-frame@7.12.11": | 34 | "@babel/code-frame@7.12.11": |
28 | version "7.12.11" | 35 | version "7.12.11" |
29 | resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" | 36 | resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" |
@@ -1322,10 +1329,10 @@ | @@ -1322,10 +1329,10 @@ | ||
1322 | dependencies: | 1329 | dependencies: |
1323 | cross-fetch "^3.0.6" | 1330 | cross-fetch "^3.0.6" |
1324 | 1331 | ||
1325 | -"@iconify/json@^1.1.381": | ||
1326 | - version "1.1.381" | ||
1327 | - resolved "https://registry.yarnpkg.com/@iconify/json/-/json-1.1.381.tgz#a9a1b06f72bdc7387cc82f3346e8b2520b533f93" | ||
1328 | - integrity sha512-5Eh8r1uw48zgea+jKqrJRA+eA9646Zpxy9Vp0+YCAutkrkWGRkpRZQh/nDlHCq7zL1X0KdHoMprW+1Mne8B9nQ== | 1332 | +"@iconify/json@^1.1.382": |
1333 | + version "1.1.382" | ||
1334 | + resolved "https://registry.npmjs.org/@iconify/json/-/json-1.1.382.tgz#781bd272c52aedaa09d9ef13022660290d6ead12" | ||
1335 | + integrity sha512-AIx1BQ+Cr4P2wlUaPurv/DuFGSzhoh/ildJXluWuA0mGm/7fgeYfGX42ldWtOf0b+E4ZFLAAkUpgqTVqlfJ2/g== | ||
1329 | 1336 | ||
1330 | "@intlify/core-base@9.1.7": | 1337 | "@intlify/core-base@9.1.7": |
1331 | version "9.1.7" | 1338 | version "9.1.7" |
@@ -1599,10 +1606,19 @@ | @@ -1599,10 +1606,19 @@ | ||
1599 | mousetrap "^1.6.5" | 1606 | mousetrap "^1.6.5" |
1600 | preact "^10.4.8" | 1607 | preact "^10.4.8" |
1601 | 1608 | ||
1602 | -"@logicflow/extension@^0.6.5": | ||
1603 | - version "0.6.5" | ||
1604 | - resolved "https://registry.yarnpkg.com/@logicflow/extension/-/extension-0.6.5.tgz#e5bed9f61673d073adfc8e93511aa1181ebff53c" | ||
1605 | - integrity sha512-BS3F+HK91hsvnFc2LNvlxgGt60MQplbXnbNt5z/LDL04h2tSmmX/dY1k2xkk3+Eq4UccL/qrgDWPylh9ezNcXQ== | 1609 | +"@logicflow/core@^0.6.6": |
1610 | + version "0.6.6" | ||
1611 | + resolved "https://registry.npmjs.org/@logicflow/core/-/core-0.6.6.tgz#8dfdfc0a30e24e2477e8e2cc5b49abe0a890be85" | ||
1612 | + integrity sha512-LZEpdxxETWIVqWgdRcJ/8Jk+2R+2+oQdCw4r669nGe3E9YvF0X61SRk2WnG01azXPeIr0QgIezYIeymsjwmSTw== | ||
1613 | + dependencies: | ||
1614 | + "@types/mousetrap" "^1.6.4" | ||
1615 | + mousetrap "^1.6.5" | ||
1616 | + preact "^10.4.8" | ||
1617 | + | ||
1618 | +"@logicflow/extension@^0.6.6": | ||
1619 | + version "0.6.6" | ||
1620 | + resolved "https://registry.npmjs.org/@logicflow/extension/-/extension-0.6.6.tgz#a49bc5cffee986900f3fd9a0b1bf12bb770b3805" | ||
1621 | + integrity sha512-SNhzfPClwOaIMqfOmREtkn5iEM00KWTCWb+eR8q7wKl07geP59QzcSgXmBiUKTk1QejW45xvs9jzZWsh2zgakA== | ||
1606 | dependencies: | 1622 | dependencies: |
1607 | "@logicflow/core" "^0.6.5" | 1623 | "@logicflow/core" "^0.6.5" |
1608 | ids "^1.0.0" | 1624 | ids "^1.0.0" |
@@ -1696,14 +1712,6 @@ | @@ -1696,14 +1712,6 @@ | ||
1696 | estree-walker "^1.0.1" | 1712 | estree-walker "^1.0.1" |
1697 | picomatch "^2.2.2" | 1713 | picomatch "^2.2.2" |
1698 | 1714 | ||
1699 | -"@rollup/pluginutils@^4.1.0": | ||
1700 | - version "4.1.0" | ||
1701 | - resolved "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.1.0.tgz#0dcc61c780e39257554feb7f77207dceca13c838" | ||
1702 | - integrity sha512-TrBhfJkFxA+ER+ew2U2/fHbebhLT/l/2pRk0hfj9KusXUuRXd2v0R58AfaZK9VXDQ4TogOSEmICVrQAA3zFnHQ== | ||
1703 | - dependencies: | ||
1704 | - estree-walker "^2.0.1" | ||
1705 | - picomatch "^2.2.2" | ||
1706 | - | ||
1707 | "@rollup/pluginutils@^4.1.1": | 1715 | "@rollup/pluginutils@^4.1.1": |
1708 | version "4.1.1" | 1716 | version "4.1.1" |
1709 | resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-4.1.1.tgz#1d4da86dd4eded15656a57d933fda2b9a08d47ec" | 1717 | resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-4.1.1.tgz#1d4da86dd4eded15656a57d933fda2b9a08d47ec" |
@@ -1876,10 +1884,10 @@ | @@ -1876,10 +1884,10 @@ | ||
1876 | dependencies: | 1884 | dependencies: |
1877 | "@types/imagemin" "*" | 1885 | "@types/imagemin" "*" |
1878 | 1886 | ||
1879 | -"@types/imagemin-jpegtran@^5.0.0": | ||
1880 | - version "5.0.0" | ||
1881 | - resolved "https://registry.npmjs.org/@types/imagemin-jpegtran/-/imagemin-jpegtran-5.0.0.tgz#44d98874bdcc3f290ce1e158355f33fc90ac2758" | ||
1882 | - integrity sha512-uwJknBgND9Jx+/d5bJf+mvAjfes0NIDyCeOKFJ9LbEYnp8/PVt0YDGh8K96JemeF84VbhHFxnN62Wz68rVNfFQ== | 1887 | +"@types/imagemin-jpegtran@^5.0.1": |
1888 | + version "5.0.1" | ||
1889 | + resolved "https://registry.npmjs.org/@types/imagemin-jpegtran/-/imagemin-jpegtran-5.0.1.tgz#798b2a66cd49b7ec6550fb733c05a5b8755f211f" | ||
1890 | + integrity sha512-Ps8kbm+DUFte/Eln/tUdEvpMWHKFCsQKlV8n+RN50zqWqL/7QhfLxR0ymitP9wa90P6+rkbJlintBNPkVR+B/Q== | ||
1883 | dependencies: | 1891 | dependencies: |
1884 | "@types/imagemin" "*" | 1892 | "@types/imagemin" "*" |
1885 | 1893 | ||
@@ -2020,10 +2028,10 @@ | @@ -2020,10 +2028,10 @@ | ||
2020 | resolved "https://registry.npmjs.org/@types/node/-/node-14.17.3.tgz#6d327abaa4be34a74e421ed6409a0ae2f47f4c3d" | 2028 | resolved "https://registry.npmjs.org/@types/node/-/node-14.17.3.tgz#6d327abaa4be34a74e421ed6409a0ae2f47f4c3d" |
2021 | integrity sha512-e6ZowgGJmTuXa3GyaPbTGxX17tnThl2aSSizrFthQ7m9uLGZBXiGhgE55cjRZTF5kjZvYn9EOPOMljdjwbflxw== | 2029 | integrity sha512-e6ZowgGJmTuXa3GyaPbTGxX17tnThl2aSSizrFthQ7m9uLGZBXiGhgE55cjRZTF5kjZvYn9EOPOMljdjwbflxw== |
2022 | 2030 | ||
2023 | -"@types/node@^16.4.9": | ||
2024 | - version "16.4.9" | ||
2025 | - resolved "https://registry.yarnpkg.com/@types/node/-/node-16.4.9.tgz#04eb3da65d08ea377f5e682bf0d22dc1f5e7f19e" | ||
2026 | - integrity sha512-HXhRf581nCItzn8yevv4LYt+bJ5cBbDBAJExbDPMeU/2n5/j0ZemGpayahFBP4xL7RseaCLASLD9i9AYyDe7Nw== | 2031 | +"@types/node@^16.4.10": |
2032 | + version "16.4.10" | ||
2033 | + resolved "https://registry.npmjs.org/@types/node/-/node-16.4.10.tgz#e57e2a54fc6da58da94b3571b1cb456d39f88597" | ||
2034 | + integrity sha512-TmVHsm43br64js9BqHWqiDZA+xMtbUpI1MBIA0EyiBmoV9pcEYFOSdj5fr6enZNfh4fChh+AGOLIzGwJnkshyQ== | ||
2027 | 2035 | ||
2028 | "@types/normalize-package-data@^2.4.0": | 2036 | "@types/normalize-package-data@^2.4.0": |
2029 | version "2.4.0" | 2037 | version "2.4.0" |
@@ -2091,6 +2099,11 @@ | @@ -2091,6 +2099,11 @@ | ||
2091 | dependencies: | 2099 | dependencies: |
2092 | "@types/estree" "*" | 2100 | "@types/estree" "*" |
2093 | 2101 | ||
2102 | +"@types/throttle-debounce@^2.1.0": | ||
2103 | + version "2.1.0" | ||
2104 | + resolved "https://registry.npmjs.org/@types/throttle-debounce/-/throttle-debounce-2.1.0.tgz#1c3df624bfc4b62f992d3012b84c56d41eab3776" | ||
2105 | + integrity sha512-5eQEtSCoESnh2FsiLTxE121IiE60hnMqcb435fShf4bpLRjEu1Eoekht23y6zXS9Ts3l+Szu3TARnTsA0GkOkQ== | ||
2106 | + | ||
2094 | "@types/through@*": | 2107 | "@types/through@*": |
2095 | version "0.0.30" | 2108 | version "0.0.30" |
2096 | resolved "https://registry.npmjs.org/@types/through/-/through-0.0.30.tgz#e0e42ce77e897bd6aead6f6ea62aeb135b8a3895" | 2109 | resolved "https://registry.npmjs.org/@types/through/-/through-0.0.30.tgz#e0e42ce77e897bd6aead6f6ea62aeb135b8a3895" |
@@ -2127,28 +2140,28 @@ | @@ -2127,28 +2140,28 @@ | ||
2127 | dependencies: | 2140 | dependencies: |
2128 | "@types/yargs-parser" "*" | 2141 | "@types/yargs-parser" "*" |
2129 | 2142 | ||
2130 | -"@typescript-eslint/eslint-plugin@^4.28.5": | ||
2131 | - version "4.28.5" | ||
2132 | - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.28.5.tgz#8197f1473e7da8218c6a37ff308d695707835684" | ||
2133 | - integrity sha512-m31cPEnbuCqXtEZQJOXAHsHvtoDi9OVaeL5wZnO2KZTnkvELk+u6J6jHg+NzvWQxk+87Zjbc4lJS4NHmgImz6Q== | 2143 | +"@typescript-eslint/eslint-plugin@^4.29.0": |
2144 | + version "4.29.0" | ||
2145 | + resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.29.0.tgz#b866c9cd193bfaba5e89bade0015629ebeb27996" | ||
2146 | + integrity sha512-eiREtqWRZ8aVJcNru7cT/AMVnYd9a2UHsfZT8MR1dW3UUEg6jDv9EQ9Cq4CUPZesyQ58YUpoAADGv71jY8RwgA== | ||
2134 | dependencies: | 2147 | dependencies: |
2135 | - "@typescript-eslint/experimental-utils" "4.28.5" | ||
2136 | - "@typescript-eslint/scope-manager" "4.28.5" | 2148 | + "@typescript-eslint/experimental-utils" "4.29.0" |
2149 | + "@typescript-eslint/scope-manager" "4.29.0" | ||
2137 | debug "^4.3.1" | 2150 | debug "^4.3.1" |
2138 | functional-red-black-tree "^1.0.1" | 2151 | functional-red-black-tree "^1.0.1" |
2139 | regexpp "^3.1.0" | 2152 | regexpp "^3.1.0" |
2140 | semver "^7.3.5" | 2153 | semver "^7.3.5" |
2141 | tsutils "^3.21.0" | 2154 | tsutils "^3.21.0" |
2142 | 2155 | ||
2143 | -"@typescript-eslint/experimental-utils@4.28.5": | ||
2144 | - version "4.28.5" | ||
2145 | - resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.28.5.tgz#66c28bef115b417cf9d80812a713e0e46bb42a64" | ||
2146 | - integrity sha512-bGPLCOJAa+j49hsynTaAtQIWg6uZd8VLiPcyDe4QPULsvQwLHGLSGKKcBN8/lBxIX14F74UEMK2zNDI8r0okwA== | 2156 | +"@typescript-eslint/experimental-utils@4.29.0": |
2157 | + version "4.29.0" | ||
2158 | + resolved "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.29.0.tgz#19b1417602d0e1ef325b3312ee95f61220542df5" | ||
2159 | + integrity sha512-FpNVKykfeaIxlArLUP/yQfv/5/3rhl1ov6RWgud4OgbqWLkEq7lqgQU9iiavZRzpzCRQV4XddyFz3wFXdkiX9w== | ||
2147 | dependencies: | 2160 | dependencies: |
2148 | "@types/json-schema" "^7.0.7" | 2161 | "@types/json-schema" "^7.0.7" |
2149 | - "@typescript-eslint/scope-manager" "4.28.5" | ||
2150 | - "@typescript-eslint/types" "4.28.5" | ||
2151 | - "@typescript-eslint/typescript-estree" "4.28.5" | 2162 | + "@typescript-eslint/scope-manager" "4.29.0" |
2163 | + "@typescript-eslint/types" "4.29.0" | ||
2164 | + "@typescript-eslint/typescript-estree" "4.29.0" | ||
2152 | eslint-scope "^5.1.1" | 2165 | eslint-scope "^5.1.1" |
2153 | eslint-utils "^3.0.0" | 2166 | eslint-utils "^3.0.0" |
2154 | 2167 | ||
@@ -2164,14 +2177,14 @@ | @@ -2164,14 +2177,14 @@ | ||
2164 | eslint-scope "^5.1.1" | 2177 | eslint-scope "^5.1.1" |
2165 | eslint-utils "^3.0.0" | 2178 | eslint-utils "^3.0.0" |
2166 | 2179 | ||
2167 | -"@typescript-eslint/parser@^4.28.5": | ||
2168 | - version "4.28.5" | ||
2169 | - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.28.5.tgz#9c971668f86d1b5c552266c47788a87488a47d1c" | ||
2170 | - integrity sha512-NPCOGhTnkXGMqTznqgVbA5LqVsnw+i3+XA1UKLnAb+MG1Y1rP4ZSK9GX0kJBmAZTMIktf+dTwXToT6kFwyimbw== | 2180 | +"@typescript-eslint/parser@^4.29.0": |
2181 | + version "4.29.0" | ||
2182 | + resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.29.0.tgz#e5367ca3c63636bb5d8e0748fcbab7a4f4a04289" | ||
2183 | + integrity sha512-+92YRNHFdXgq+GhWQPT2bmjX09X7EH36JfgN2/4wmhtwV/HPxozpCNst8jrWcngLtEVd/4zAwA6BKojAlf+YqA== | ||
2171 | dependencies: | 2184 | dependencies: |
2172 | - "@typescript-eslint/scope-manager" "4.28.5" | ||
2173 | - "@typescript-eslint/types" "4.28.5" | ||
2174 | - "@typescript-eslint/typescript-estree" "4.28.5" | 2185 | + "@typescript-eslint/scope-manager" "4.29.0" |
2186 | + "@typescript-eslint/types" "4.29.0" | ||
2187 | + "@typescript-eslint/typescript-estree" "4.29.0" | ||
2175 | debug "^4.3.1" | 2188 | debug "^4.3.1" |
2176 | 2189 | ||
2177 | "@typescript-eslint/scope-manager@4.27.0": | 2190 | "@typescript-eslint/scope-manager@4.27.0": |
@@ -2182,23 +2195,23 @@ | @@ -2182,23 +2195,23 @@ | ||
2182 | "@typescript-eslint/types" "4.27.0" | 2195 | "@typescript-eslint/types" "4.27.0" |
2183 | "@typescript-eslint/visitor-keys" "4.27.0" | 2196 | "@typescript-eslint/visitor-keys" "4.27.0" |
2184 | 2197 | ||
2185 | -"@typescript-eslint/scope-manager@4.28.5": | ||
2186 | - version "4.28.5" | ||
2187 | - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.28.5.tgz#3a1b70c50c1535ac33322786ea99ebe403d3b923" | ||
2188 | - integrity sha512-PHLq6n9nTMrLYcVcIZ7v0VY1X7dK309NM8ya9oL/yG8syFINIMHxyr2GzGoBYUdv3NUfCOqtuqps0ZmcgnZTfQ== | 2198 | +"@typescript-eslint/scope-manager@4.29.0": |
2199 | + version "4.29.0" | ||
2200 | + resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.29.0.tgz#cf5474f87321bedf416ef65839b693bddd838599" | ||
2201 | + integrity sha512-HPq7XAaDMM3DpmuijxLV9Io8/6pQnliiXMQUcAdjpJJSR+fdmbD/zHCd7hMkjJn04UQtCQBtshgxClzg6NIS2w== | ||
2189 | dependencies: | 2202 | dependencies: |
2190 | - "@typescript-eslint/types" "4.28.5" | ||
2191 | - "@typescript-eslint/visitor-keys" "4.28.5" | 2203 | + "@typescript-eslint/types" "4.29.0" |
2204 | + "@typescript-eslint/visitor-keys" "4.29.0" | ||
2192 | 2205 | ||
2193 | "@typescript-eslint/types@4.27.0": | 2206 | "@typescript-eslint/types@4.27.0": |
2194 | version "4.27.0" | 2207 | version "4.27.0" |
2195 | resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.27.0.tgz#712b408519ed699baff69086bc59cd2fc13df8d8" | 2208 | resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.27.0.tgz#712b408519ed699baff69086bc59cd2fc13df8d8" |
2196 | integrity sha512-I4ps3SCPFCKclRcvnsVA/7sWzh7naaM/b4pBO2hVxnM3wrU51Lveybdw5WoIktU/V4KfXrTt94V9b065b/0+wA== | 2209 | integrity sha512-I4ps3SCPFCKclRcvnsVA/7sWzh7naaM/b4pBO2hVxnM3wrU51Lveybdw5WoIktU/V4KfXrTt94V9b065b/0+wA== |
2197 | 2210 | ||
2198 | -"@typescript-eslint/types@4.28.5": | ||
2199 | - version "4.28.5" | ||
2200 | - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.28.5.tgz#d33edf8e429f0c0930a7c3d44e9b010354c422e9" | ||
2201 | - integrity sha512-MruOu4ZaDOLOhw4f/6iudyks/obuvvZUAHBDSW80Trnc5+ovmViLT2ZMDXhUV66ozcl6z0LJfKs1Usldgi/WCA== | 2211 | +"@typescript-eslint/types@4.29.0": |
2212 | + version "4.29.0" | ||
2213 | + resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.29.0.tgz#c8f1a1e4441ea4aca9b3109241adbc145f7f8a4e" | ||
2214 | + integrity sha512-2YJM6XfWfi8pgU2HRhTp7WgRw78TCRO3dOmSpAvIQ8MOv4B46JD2chnhpNT7Jq8j0APlIbzO1Bach734xxUl4A== | ||
2202 | 2215 | ||
2203 | "@typescript-eslint/typescript-estree@4.27.0": | 2216 | "@typescript-eslint/typescript-estree@4.27.0": |
2204 | version "4.27.0" | 2217 | version "4.27.0" |
@@ -2213,13 +2226,13 @@ | @@ -2213,13 +2226,13 @@ | ||
2213 | semver "^7.3.5" | 2226 | semver "^7.3.5" |
2214 | tsutils "^3.21.0" | 2227 | tsutils "^3.21.0" |
2215 | 2228 | ||
2216 | -"@typescript-eslint/typescript-estree@4.28.5": | ||
2217 | - version "4.28.5" | ||
2218 | - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.28.5.tgz#4906d343de693cf3d8dcc301383ed638e0441cd1" | ||
2219 | - integrity sha512-FzJUKsBX8poCCdve7iV7ShirP8V+ys2t1fvamVeD1rWpiAnIm550a+BX/fmTHrjEpQJ7ZAn+Z7ZZwJjytk9rZw== | 2229 | +"@typescript-eslint/typescript-estree@4.29.0": |
2230 | + version "4.29.0" | ||
2231 | + resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.29.0.tgz#af7ab547757b86c91bfdbc54ff86845410856256" | ||
2232 | + integrity sha512-8ZpNHDIOyqzzgZrQW9+xQ4k5hM62Xy2R4RPO3DQxMc5Rq5QkCdSpk/drka+DL9w6sXNzV5nrdlBmf8+x495QXQ== | ||
2220 | dependencies: | 2233 | dependencies: |
2221 | - "@typescript-eslint/types" "4.28.5" | ||
2222 | - "@typescript-eslint/visitor-keys" "4.28.5" | 2234 | + "@typescript-eslint/types" "4.29.0" |
2235 | + "@typescript-eslint/visitor-keys" "4.29.0" | ||
2223 | debug "^4.3.1" | 2236 | debug "^4.3.1" |
2224 | globby "^11.0.3" | 2237 | globby "^11.0.3" |
2225 | is-glob "^4.0.1" | 2238 | is-glob "^4.0.1" |
@@ -2234,12 +2247,12 @@ | @@ -2234,12 +2247,12 @@ | ||
2234 | "@typescript-eslint/types" "4.27.0" | 2247 | "@typescript-eslint/types" "4.27.0" |
2235 | eslint-visitor-keys "^2.0.0" | 2248 | eslint-visitor-keys "^2.0.0" |
2236 | 2249 | ||
2237 | -"@typescript-eslint/visitor-keys@4.28.5": | ||
2238 | - version "4.28.5" | ||
2239 | - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.28.5.tgz#ffee2c602762ed6893405ee7c1144d9cc0a29675" | ||
2240 | - integrity sha512-dva/7Rr+EkxNWdJWau26xU/0slnFlkh88v3TsyTgRS/IIYFi5iIfpCFM4ikw0vQTFUR9FYSSyqgK4w64gsgxhg== | 2250 | +"@typescript-eslint/visitor-keys@4.29.0": |
2251 | + version "4.29.0" | ||
2252 | + resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.29.0.tgz#1ff60f240def4d85ea68d4fd2e4e9759b7850c04" | ||
2253 | + integrity sha512-LoaofO1C/jAJYs0uEpYMXfHboGXzOJeV118X4OsZu9f7rG7Pr9B3+4HTU8+err81rADa4xfQmAxnRnPAI2jp+Q== | ||
2241 | dependencies: | 2254 | dependencies: |
2242 | - "@typescript-eslint/types" "4.28.5" | 2255 | + "@typescript-eslint/types" "4.29.0" |
2243 | eslint-visitor-keys "^2.0.0" | 2256 | eslint-visitor-keys "^2.0.0" |
2244 | 2257 | ||
2245 | "@vitejs/plugin-legacy@^1.5.0": | 2258 | "@vitejs/plugin-legacy@^1.5.0": |
@@ -2501,6 +2514,28 @@ | @@ -2501,6 +2514,28 @@ | ||
2501 | dependencies: | 2514 | dependencies: |
2502 | vue-demi "*" | 2515 | vue-demi "*" |
2503 | 2516 | ||
2517 | +"@windicss/config@1.2.7": | ||
2518 | + version "1.2.7" | ||
2519 | + resolved "https://registry.npmjs.org/@windicss/config/-/config-1.2.7.tgz#c70bde7de272574f7a33eb9a1d7f80bdbffe48ba" | ||
2520 | + integrity sha512-XpH/dkXWk2LGygHzHBWWEW/yGcLqhpFFN2jo+zMeWZ1ggBzndQQzBHqHGQHcr6U6v3PoBuOz1prVWgUmQxn9eQ== | ||
2521 | + dependencies: | ||
2522 | + debug "^4.3.2" | ||
2523 | + jiti "^1.11.0" | ||
2524 | + windicss "^3.1.6" | ||
2525 | + | ||
2526 | +"@windicss/plugin-utils@1.2.7": | ||
2527 | + version "1.2.7" | ||
2528 | + resolved "https://registry.npmjs.org/@windicss/plugin-utils/-/plugin-utils-1.2.7.tgz#aa2c571f66600ce2c916c9c47efe8eafb229908c" | ||
2529 | + integrity sha512-aNQhd1nEjkVsCHmzq0+4VGTmovOGGfPnH2hspH4YuDxMDhQ/99VrBdyk7irngWJjedjHB3+UYCSYWpY5a+2Hbg== | ||
2530 | + dependencies: | ||
2531 | + "@antfu/utils" "^0.2.4" | ||
2532 | + "@windicss/config" "1.2.7" | ||
2533 | + debug "^4.3.2" | ||
2534 | + fast-glob "^3.2.7" | ||
2535 | + magic-string "^0.25.7" | ||
2536 | + micromatch "^4.0.4" | ||
2537 | + windicss "^3.1.6" | ||
2538 | + | ||
2504 | "@zxcvbn-ts/core@^1.0.0-beta.0": | 2539 | "@zxcvbn-ts/core@^1.0.0-beta.0": |
2505 | version "1.0.0-beta.0" | 2540 | version "1.0.0-beta.0" |
2506 | resolved "https://registry.yarnpkg.com/@zxcvbn-ts/core/-/core-1.0.0-beta.0.tgz#a616beacb83dbfe9174408ebabee746f3468b0ec" | 2541 | resolved "https://registry.yarnpkg.com/@zxcvbn-ts/core/-/core-1.0.0-beta.0.tgz#a616beacb83dbfe9174408ebabee746f3468b0ec" |
@@ -2532,21 +2567,12 @@ acorn-jsx@^5.2.0, acorn-jsx@^5.3.1: | @@ -2532,21 +2567,12 @@ acorn-jsx@^5.2.0, acorn-jsx@^5.3.1: | ||
2532 | resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.1.tgz#fc8661e11b7ac1539c47dbfea2e72b3af34d267b" | 2567 | resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.1.tgz#fc8661e11b7ac1539c47dbfea2e72b3af34d267b" |
2533 | integrity sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng== | 2568 | integrity sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng== |
2534 | 2569 | ||
2535 | -acorn-node@^1.6.1: | ||
2536 | - version "1.8.2" | ||
2537 | - resolved "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz#114c95d64539e53dede23de8b9d96df7c7ae2af8" | ||
2538 | - integrity sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A== | ||
2539 | - dependencies: | ||
2540 | - acorn "^7.0.0" | ||
2541 | - acorn-walk "^7.0.0" | ||
2542 | - xtend "^4.0.2" | ||
2543 | - | ||
2544 | -acorn-walk@^7.0.0, acorn-walk@^7.1.1: | 2570 | +acorn-walk@^7.1.1: |
2545 | version "7.2.0" | 2571 | version "7.2.0" |
2546 | resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" | 2572 | resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" |
2547 | integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== | 2573 | integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== |
2548 | 2574 | ||
2549 | -acorn@^7.0.0, acorn@^7.1.1, acorn@^7.4.0: | 2575 | +acorn@^7.1.1, acorn@^7.4.0: |
2550 | version "7.4.1" | 2576 | version "7.4.1" |
2551 | resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" | 2577 | resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" |
2552 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== | 2578 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== |
@@ -2711,11 +2737,6 @@ arg@^4.1.0: | @@ -2711,11 +2737,6 @@ arg@^4.1.0: | ||
2711 | resolved "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" | 2737 | resolved "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" |
2712 | integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== | 2738 | integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== |
2713 | 2739 | ||
2714 | -arg@^5.0.0: | ||
2715 | - version "5.0.0" | ||
2716 | - resolved "https://registry.npmjs.org/arg/-/arg-5.0.0.tgz#a20e2bb5710e82950a516b3f933fee5ed478be90" | ||
2717 | - integrity sha512-4P8Zm2H+BRS+c/xX1LrHw0qKpEhdlZjLCgWy+d78T9vqa2Z2SiD2wMrYuWIAFy5IZUD7nnNXroRttz+0RzlrzQ== | ||
2718 | - | ||
2719 | argparse@^1.0.7: | 2740 | argparse@^1.0.7: |
2720 | version "1.0.10" | 2741 | version "1.0.10" |
2721 | resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" | 2742 | resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" |
@@ -3192,11 +3213,6 @@ builtin-modules@^3.1.0: | @@ -3192,11 +3213,6 @@ builtin-modules@^3.1.0: | ||
3192 | resolved "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.2.0.tgz#45d5db99e7ee5e6bc4f362e008bf917ab5049887" | 3213 | resolved "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.2.0.tgz#45d5db99e7ee5e6bc4f362e008bf917ab5049887" |
3193 | integrity sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA== | 3214 | integrity sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA== |
3194 | 3215 | ||
3195 | -bytes@^3.0.0: | ||
3196 | - version "3.1.0" | ||
3197 | - resolved "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" | ||
3198 | - integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== | ||
3199 | - | ||
3200 | cache-base@^1.0.1: | 3216 | cache-base@^1.0.1: |
3201 | version "1.0.1" | 3217 | version "1.0.1" |
3202 | resolved "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" | 3218 | resolved "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" |
@@ -3251,11 +3267,6 @@ camel-case@^4.1.1, camel-case@^4.1.2: | @@ -3251,11 +3267,6 @@ camel-case@^4.1.1, camel-case@^4.1.2: | ||
3251 | pascal-case "^3.1.2" | 3267 | pascal-case "^3.1.2" |
3252 | tslib "^2.0.3" | 3268 | tslib "^2.0.3" |
3253 | 3269 | ||
3254 | -camelcase-css@^2.0.1: | ||
3255 | - version "2.0.1" | ||
3256 | - resolved "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" | ||
3257 | - integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== | ||
3258 | - | ||
3259 | camelcase-keys@^2.0.0: | 3270 | camelcase-keys@^2.0.0: |
3260 | version "2.1.0" | 3271 | version "2.1.0" |
3261 | resolved "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" | 3272 | resolved "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" |
@@ -3362,6 +3373,14 @@ chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1: | @@ -3362,6 +3373,14 @@ chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1: | ||
3362 | ansi-styles "^4.1.0" | 3373 | ansi-styles "^4.1.0" |
3363 | supports-color "^7.1.0" | 3374 | supports-color "^7.1.0" |
3364 | 3375 | ||
3376 | +chalk@^4.1.2: | ||
3377 | + version "4.1.2" | ||
3378 | + resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" | ||
3379 | + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== | ||
3380 | + dependencies: | ||
3381 | + ansi-styles "^4.1.0" | ||
3382 | + supports-color "^7.1.0" | ||
3383 | + | ||
3365 | change-case@^4.1.2: | 3384 | change-case@^4.1.2: |
3366 | version "4.1.2" | 3385 | version "4.1.2" |
3367 | resolved "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz#fedfc5f136045e2398c0410ee441f95704641e12" | 3386 | resolved "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz#fedfc5f136045e2398c0410ee441f95704641e12" |
@@ -3576,7 +3595,7 @@ collection-visit@^1.0.0: | @@ -3576,7 +3595,7 @@ collection-visit@^1.0.0: | ||
3576 | map-visit "^1.0.0" | 3595 | map-visit "^1.0.0" |
3577 | object-visit "^1.0.0" | 3596 | object-visit "^1.0.0" |
3578 | 3597 | ||
3579 | -color-convert@^1.9.0, color-convert@^1.9.3: | 3598 | +color-convert@^1.9.0: |
3580 | version "1.9.3" | 3599 | version "1.9.3" |
3581 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" | 3600 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" |
3582 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== | 3601 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== |
@@ -3595,27 +3614,11 @@ color-name@1.1.3: | @@ -3595,27 +3614,11 @@ color-name@1.1.3: | ||
3595 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" | 3614 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" |
3596 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= | 3615 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= |
3597 | 3616 | ||
3598 | -color-name@^1.0.0, color-name@~1.1.4: | 3617 | +color-name@~1.1.4: |
3599 | version "1.1.4" | 3618 | version "1.1.4" |
3600 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" | 3619 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" |
3601 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== | 3620 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== |
3602 | 3621 | ||
3603 | -color-string@^1.6.0: | ||
3604 | - version "1.6.0" | ||
3605 | - resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.6.0.tgz#c3915f61fe267672cb7e1e064c9d692219f6c312" | ||
3606 | - integrity sha512-c/hGS+kRWJutUBEngKKmk4iH3sD59MBkoxVapS/0wgpCz2u7XsNloxknyvBhzwEs1IbV36D9PwqLPJ2DTu3vMA== | ||
3607 | - dependencies: | ||
3608 | - color-name "^1.0.0" | ||
3609 | - simple-swizzle "^0.2.2" | ||
3610 | - | ||
3611 | -color@^3.2.0: | ||
3612 | - version "3.2.1" | ||
3613 | - resolved "https://registry.yarnpkg.com/color/-/color-3.2.1.tgz#3544dc198caf4490c3ecc9a790b54fe9ff45e164" | ||
3614 | - integrity sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA== | ||
3615 | - dependencies: | ||
3616 | - color-convert "^1.9.3" | ||
3617 | - color-string "^1.6.0" | ||
3618 | - | ||
3619 | colorette@^1.2.1, colorette@^1.2.2: | 3622 | colorette@^1.2.1, colorette@^1.2.2: |
3620 | version "1.2.2" | 3623 | version "1.2.2" |
3621 | resolved "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94" | 3624 | resolved "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94" |
@@ -3648,11 +3651,6 @@ commander@^4.1.1: | @@ -3648,11 +3651,6 @@ commander@^4.1.1: | ||
3648 | resolved "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" | 3651 | resolved "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" |
3649 | integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== | 3652 | integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== |
3650 | 3653 | ||
3651 | -commander@^6.0.0: | ||
3652 | - version "6.2.1" | ||
3653 | - resolved "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c" | ||
3654 | - integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA== | ||
3655 | - | ||
3656 | commander@~2.14.1: | 3654 | commander@~2.14.1: |
3657 | version "2.14.1" | 3655 | version "2.14.1" |
3658 | resolved "https://registry.npmjs.org/commander/-/commander-2.14.1.tgz#2235123e37af8ca3c65df45b026dbd357b01b9aa" | 3656 | resolved "https://registry.npmjs.org/commander/-/commander-2.14.1.tgz#2235123e37af8ca3c65df45b026dbd357b01b9aa" |
@@ -4084,11 +4082,6 @@ css-tree@^1.1.2: | @@ -4084,11 +4082,6 @@ css-tree@^1.1.2: | ||
4084 | mdn-data "2.0.14" | 4082 | mdn-data "2.0.14" |
4085 | source-map "^0.6.1" | 4083 | source-map "^0.6.1" |
4086 | 4084 | ||
4087 | -css-unit-converter@^1.1.1: | ||
4088 | - version "1.1.2" | ||
4089 | - resolved "https://registry.npmjs.org/css-unit-converter/-/css-unit-converter-1.1.2.tgz#4c77f5a1954e6dbff60695ecb214e3270436ab21" | ||
4090 | - integrity sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA== | ||
4091 | - | ||
4092 | css-what@^5.0.0: | 4085 | css-what@^5.0.0: |
4093 | version "5.0.1" | 4086 | version "5.0.1" |
4094 | resolved "https://registry.npmjs.org/css-what/-/css-what-5.0.1.tgz#3efa820131f4669a8ac2408f9c32e7c7de9f4cad" | 4087 | resolved "https://registry.npmjs.org/css-what/-/css-what-5.0.1.tgz#3efa820131f4669a8ac2408f9c32e7c7de9f4cad" |
@@ -4339,11 +4332,6 @@ define-property@^2.0.2: | @@ -4339,11 +4332,6 @@ define-property@^2.0.2: | ||
4339 | is-descriptor "^1.0.2" | 4332 | is-descriptor "^1.0.2" |
4340 | isobject "^3.0.1" | 4333 | isobject "^3.0.1" |
4341 | 4334 | ||
4342 | -defined@^1.0.0: | ||
4343 | - version "1.0.0" | ||
4344 | - resolved "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" | ||
4345 | - integrity sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM= | ||
4346 | - | ||
4347 | delayed-stream@~1.0.0: | 4335 | delayed-stream@~1.0.0: |
4348 | version "1.0.0" | 4336 | version "1.0.0" |
4349 | resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" | 4337 | resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" |
@@ -4364,20 +4352,6 @@ detect-newline@^3.0.0: | @@ -4364,20 +4352,6 @@ detect-newline@^3.0.0: | ||
4364 | resolved "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" | 4352 | resolved "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" |
4365 | integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== | 4353 | integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== |
4366 | 4354 | ||
4367 | -detective@^5.2.0: | ||
4368 | - version "5.2.0" | ||
4369 | - resolved "https://registry.npmjs.org/detective/-/detective-5.2.0.tgz#feb2a77e85b904ecdea459ad897cc90a99bd2a7b" | ||
4370 | - integrity sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg== | ||
4371 | - dependencies: | ||
4372 | - acorn-node "^1.6.1" | ||
4373 | - defined "^1.0.0" | ||
4374 | - minimist "^1.1.1" | ||
4375 | - | ||
4376 | -didyoumean@^1.2.2: | ||
4377 | - version "1.2.2" | ||
4378 | - resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037" | ||
4379 | - integrity sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw== | ||
4380 | - | ||
4381 | diff-match-patch@^1.0.5: | 4355 | diff-match-patch@^1.0.5: |
4382 | version "1.0.5" | 4356 | version "1.0.5" |
4383 | resolved "https://registry.npmjs.org/diff-match-patch/-/diff-match-patch-1.0.5.tgz#abb584d5f10cd1196dfc55aa03701592ae3f7b37" | 4357 | resolved "https://registry.npmjs.org/diff-match-patch/-/diff-match-patch-1.0.5.tgz#abb584d5f10cd1196dfc55aa03701592ae3f7b37" |
@@ -4410,11 +4384,6 @@ dir-glob@^3.0.1: | @@ -4410,11 +4384,6 @@ dir-glob@^3.0.1: | ||
4410 | dependencies: | 4384 | dependencies: |
4411 | path-type "^4.0.0" | 4385 | path-type "^4.0.0" |
4412 | 4386 | ||
4413 | -dlv@^1.1.3: | ||
4414 | - version "1.1.3" | ||
4415 | - resolved "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79" | ||
4416 | - integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA== | ||
4417 | - | ||
4418 | doctrine@^3.0.0: | 4387 | doctrine@^3.0.0: |
4419 | version "3.0.0" | 4388 | version "3.0.0" |
4420 | resolved "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" | 4389 | resolved "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" |
@@ -4695,10 +4664,10 @@ es-abstract@^1.18.0-next.2: | @@ -4695,10 +4664,10 @@ es-abstract@^1.18.0-next.2: | ||
4695 | string.prototype.trimstart "^1.0.4" | 4664 | string.prototype.trimstart "^1.0.4" |
4696 | unbox-primitive "^1.0.1" | 4665 | unbox-primitive "^1.0.1" |
4697 | 4666 | ||
4698 | -es-module-lexer@^0.6.0: | ||
4699 | - version "0.6.0" | ||
4700 | - resolved "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.6.0.tgz#e72ab05b7412e62b9be37c37a09bdb6000d706f0" | ||
4701 | - integrity sha512-f8kcHX1ArhllUtb/wVSyvygoKCznIjnxhLxy7TCvIiMdT7fL4ZDTIKaadMe6eLvOXg6Wk02UeoFgUoZ2EKZZUA== | 4667 | +es-module-lexer@^0.7.1: |
4668 | + version "0.7.1" | ||
4669 | + resolved "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.7.1.tgz#c2c8e0f46f2df06274cdaf0dd3f3b33e0a0b267d" | ||
4670 | + integrity sha512-MgtWFl5No+4S3TmhDmCz2ObFGm6lEpTnzbQi+Dd+pw4mlTIZTmM2iAs5gRlmx5zS9luzobCSBSI90JM/1/JgOw== | ||
4702 | 4671 | ||
4703 | es-to-primitive@^1.2.1: | 4672 | es-to-primitive@^1.2.1: |
4704 | version "1.2.1" | 4673 | version "1.2.1" |
@@ -5680,13 +5649,6 @@ glob-parent@^5.1.0, glob-parent@^5.1.2, glob-parent@~5.1.2: | @@ -5680,13 +5649,6 @@ glob-parent@^5.1.0, glob-parent@^5.1.2, glob-parent@~5.1.2: | ||
5680 | dependencies: | 5649 | dependencies: |
5681 | is-glob "^4.0.1" | 5650 | is-glob "^4.0.1" |
5682 | 5651 | ||
5683 | -glob-parent@^6.0.0: | ||
5684 | - version "6.0.0" | ||
5685 | - resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.0.tgz#f851b59b388e788f3a44d63fab50382b2859c33c" | ||
5686 | - integrity sha512-Hdd4287VEJcZXUwv1l8a+vXC1GjOQqXe+VS30w/ypihpcnu9M1n3xeYeJu5CBpeEQj2nAab2xxz28GuA3vp4Ww== | ||
5687 | - dependencies: | ||
5688 | - is-glob "^4.0.1" | ||
5689 | - | ||
5690 | glob@7.1.4: | 5652 | glob@7.1.4: |
5691 | version "7.1.4" | 5653 | version "7.1.4" |
5692 | resolved "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" | 5654 | resolved "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" |
@@ -6221,13 +6183,6 @@ imagemin@^7.0.1: | @@ -6221,13 +6183,6 @@ imagemin@^7.0.1: | ||
6221 | p-pipe "^3.0.0" | 6183 | p-pipe "^3.0.0" |
6222 | replace-ext "^1.0.0" | 6184 | replace-ext "^1.0.0" |
6223 | 6185 | ||
6224 | -import-cwd@^3.0.0: | ||
6225 | - version "3.0.0" | ||
6226 | - resolved "https://registry.npmjs.org/import-cwd/-/import-cwd-3.0.0.tgz#20845547718015126ea9b3676b7592fb8bd4cf92" | ||
6227 | - integrity sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg== | ||
6228 | - dependencies: | ||
6229 | - import-from "^3.0.0" | ||
6230 | - | ||
6231 | import-fresh@^3.0.0, import-fresh@^3.2.1: | 6186 | import-fresh@^3.0.0, import-fresh@^3.2.1: |
6232 | version "3.3.0" | 6187 | version "3.3.0" |
6233 | resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" | 6188 | resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" |
@@ -6236,13 +6191,6 @@ import-fresh@^3.0.0, import-fresh@^3.2.1: | @@ -6236,13 +6191,6 @@ import-fresh@^3.0.0, import-fresh@^3.2.1: | ||
6236 | parent-module "^1.0.0" | 6191 | parent-module "^1.0.0" |
6237 | resolve-from "^4.0.0" | 6192 | resolve-from "^4.0.0" |
6238 | 6193 | ||
6239 | -import-from@^3.0.0: | ||
6240 | - version "3.0.0" | ||
6241 | - resolved "https://registry.npmjs.org/import-from/-/import-from-3.0.0.tgz#055cfec38cd5a27d8057ca51376d7d3bf0891966" | ||
6242 | - integrity sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ== | ||
6243 | - dependencies: | ||
6244 | - resolve-from "^5.0.0" | ||
6245 | - | ||
6246 | import-lazy@^4.0.0: | 6194 | import-lazy@^4.0.0: |
6247 | version "4.0.0" | 6195 | version "4.0.0" |
6248 | resolved "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz#e8eb627483a0a43da3c03f3e35548be5cb0cc153" | 6196 | resolved "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz#e8eb627483a0a43da3c03f3e35548be5cb0cc153" |
@@ -6380,11 +6328,6 @@ is-arrayish@^0.2.1: | @@ -6380,11 +6328,6 @@ is-arrayish@^0.2.1: | ||
6380 | resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" | 6328 | resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" |
6381 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= | 6329 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= |
6382 | 6330 | ||
6383 | -is-arrayish@^0.3.1: | ||
6384 | - version "0.3.2" | ||
6385 | - resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" | ||
6386 | - integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== | ||
6387 | - | ||
6388 | is-bigint@^1.0.1: | 6331 | is-bigint@^1.0.1: |
6389 | version "1.0.2" | 6332 | version "1.0.2" |
6390 | resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.2.tgz#ffb381442503235ad245ea89e45b3dbff040ee5a" | 6333 | resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.2.tgz#ffb381442503235ad245ea89e45b3dbff040ee5a" |
@@ -7272,6 +7215,11 @@ jest@^27.0.6: | @@ -7272,6 +7215,11 @@ jest@^27.0.6: | ||
7272 | import-local "^3.0.2" | 7215 | import-local "^3.0.2" |
7273 | jest-cli "^27.0.6" | 7216 | jest-cli "^27.0.6" |
7274 | 7217 | ||
7218 | +jiti@^1.11.0: | ||
7219 | + version "1.11.0" | ||
7220 | + resolved "https://registry.npmjs.org/jiti/-/jiti-1.11.0.tgz#64120a30d97b9bf37b8b032cf4564dfadc28984c" | ||
7221 | + integrity sha512-/2c7e61hxxTIN34UeHBB0LCJ5Tq64kgJDV7GR+++e8XRxCKRIKmB8tH6ww1W+Z6Kgd6By+C3RSCu1lXjbPT68A== | ||
7222 | + | ||
7275 | jpegtran-bin@^5.0.0: | 7223 | jpegtran-bin@^5.0.0: |
7276 | version "5.0.2" | 7224 | version "5.0.2" |
7277 | resolved "https://registry.npmjs.org/jpegtran-bin/-/jpegtran-bin-5.0.2.tgz#5870fd7e68317bd203a1c94572bd06ae7732cac3" | 7225 | resolved "https://registry.npmjs.org/jpegtran-bin/-/jpegtran-bin-5.0.2.tgz#5870fd7e68317bd203a1c94572bd06ae7732cac3" |
@@ -7519,11 +7467,6 @@ levn@~0.3.0: | @@ -7519,11 +7467,6 @@ levn@~0.3.0: | ||
7519 | prelude-ls "~1.1.2" | 7467 | prelude-ls "~1.1.2" |
7520 | type-check "~0.3.2" | 7468 | type-check "~0.3.2" |
7521 | 7469 | ||
7522 | -lilconfig@^2.0.3: | ||
7523 | - version "2.0.3" | ||
7524 | - resolved "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.3.tgz#68f3005e921dafbd2a2afb48379986aa6d2579fd" | ||
7525 | - integrity sha512-EHKqr/+ZvdKCifpNrJCKxBTgk5XupZA3y/aCPY9mxfgBzmgh93Mt/WqjjQ38oMxXuvDokaKiM3lAgvSH2sjtHg== | ||
7526 | - | ||
7527 | lines-and-columns@^1.1.6: | 7470 | lines-and-columns@^1.1.6: |
7528 | version "1.1.6" | 7471 | version "1.1.6" |
7529 | resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" | 7472 | resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" |
@@ -7663,16 +7606,6 @@ lodash.sortby@^4.7.0: | @@ -7663,16 +7606,6 @@ lodash.sortby@^4.7.0: | ||
7663 | resolved "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" | 7606 | resolved "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" |
7664 | integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg= | 7607 | integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg= |
7665 | 7608 | ||
7666 | -lodash.toarray@^4.4.0: | ||
7667 | - version "4.4.0" | ||
7668 | - resolved "https://registry.npmjs.org/lodash.toarray/-/lodash.toarray-4.4.0.tgz#24c4bfcd6b2fba38bfd0594db1179d8e9b656561" | ||
7669 | - integrity sha1-JMS/zWsvuji/0FlNsRedjptlZWE= | ||
7670 | - | ||
7671 | -lodash.topath@^4.5.2: | ||
7672 | - version "4.5.2" | ||
7673 | - resolved "https://registry.npmjs.org/lodash.topath/-/lodash.topath-4.5.2.tgz#3616351f3bba61994a0931989660bd03254fd009" | ||
7674 | - integrity sha1-NhY1Hzu6YZlKCTGYlmC9AyVP0Ak= | ||
7675 | - | ||
7676 | lodash.truncate@^4.4.2: | 7609 | lodash.truncate@^4.4.2: |
7677 | version "4.4.2" | 7610 | version "4.4.2" |
7678 | resolved "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" | 7611 | resolved "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" |
@@ -8062,7 +7995,7 @@ minimist-options@4.1.0: | @@ -8062,7 +7995,7 @@ minimist-options@4.1.0: | ||
8062 | is-plain-obj "^1.1.0" | 7995 | is-plain-obj "^1.1.0" |
8063 | kind-of "^6.0.3" | 7996 | kind-of "^6.0.3" |
8064 | 7997 | ||
8065 | -minimist@1.2.5, minimist@^1.1.0, minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5: | 7998 | +minimist@1.2.5, minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5: |
8066 | version "1.2.5" | 7999 | version "1.2.5" |
8067 | resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" | 8000 | resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" |
8068 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== | 8001 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== |
@@ -8094,11 +8027,6 @@ mockjs@^1.1.0: | @@ -8094,11 +8027,6 @@ mockjs@^1.1.0: | ||
8094 | dependencies: | 8027 | dependencies: |
8095 | commander "*" | 8028 | commander "*" |
8096 | 8029 | ||
8097 | -modern-normalize@^1.1.0: | ||
8098 | - version "1.1.0" | ||
8099 | - resolved "https://registry.npmjs.org/modern-normalize/-/modern-normalize-1.1.0.tgz#da8e80140d9221426bd4f725c6e11283d34f90b7" | ||
8100 | - integrity sha512-2lMlY1Yc1+CUy0gw4H95uNN7vjbpoED7NNRSBHE25nWfLBdmMzFCsPshlzbxHz+gYMcBEUN8V4pU16prcdPSgA== | ||
8101 | - | ||
8102 | modify-values@^1.0.0: | 8030 | modify-values@^1.0.0: |
8103 | version "1.0.1" | 8031 | version "1.0.1" |
8104 | resolved "https://registry.npmjs.org/modify-values/-/modify-values-1.0.1.tgz#b3939fa605546474e3e3e3c63d64bd43b4ee6022" | 8032 | resolved "https://registry.npmjs.org/modify-values/-/modify-values-1.0.1.tgz#b3939fa605546474e3e3e3c63d64bd43b4ee6022" |
@@ -8223,13 +8151,6 @@ no-case@^3.0.4: | @@ -8223,13 +8151,6 @@ no-case@^3.0.4: | ||
8223 | lower-case "^2.0.2" | 8151 | lower-case "^2.0.2" |
8224 | tslib "^2.0.3" | 8152 | tslib "^2.0.3" |
8225 | 8153 | ||
8226 | -node-emoji@^1.8.1: | ||
8227 | - version "1.10.0" | ||
8228 | - resolved "https://registry.npmjs.org/node-emoji/-/node-emoji-1.10.0.tgz#8886abd25d9c7bb61802a658523d1f8d2a89b2da" | ||
8229 | - integrity sha512-Yt3384If5H6BYGVHiHwTL+99OzJKHhgp82S8/dktEK73T26BazdgZ4JZh92xSVtGNJvz9UbXdNAc5hcrXV42vw== | ||
8230 | - dependencies: | ||
8231 | - lodash.toarray "^4.4.0" | ||
8232 | - | ||
8233 | node-fetch@2.6.1: | 8154 | node-fetch@2.6.1: |
8234 | version "2.6.1" | 8155 | version "2.6.1" |
8235 | resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" | 8156 | resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" |
@@ -8367,11 +8288,6 @@ object-copy@^0.1.0: | @@ -8367,11 +8288,6 @@ object-copy@^0.1.0: | ||
8367 | define-property "^0.2.5" | 8288 | define-property "^0.2.5" |
8368 | kind-of "^3.0.3" | 8289 | kind-of "^3.0.3" |
8369 | 8290 | ||
8370 | -object-hash@^2.2.0: | ||
8371 | - version "2.2.0" | ||
8372 | - resolved "https://registry.npmjs.org/object-hash/-/object-hash-2.2.0.tgz#5ad518581eefc443bd763472b8ff2e9c2c0d54a5" | ||
8373 | - integrity sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw== | ||
8374 | - | ||
8375 | object-inspect@^1.10.3, object-inspect@^1.9.0: | 8291 | object-inspect@^1.10.3, object-inspect@^1.9.0: |
8376 | version "1.10.3" | 8292 | version "1.10.3" |
8377 | resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.10.3.tgz#c2aa7d2d09f50c99375704f7a0adf24c5782d369" | 8293 | resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.10.3.tgz#c2aa7d2d09f50c99375704f7a0adf24c5782d369" |
@@ -8922,14 +8838,6 @@ postcss-html@^0.36.0: | @@ -8922,14 +8838,6 @@ postcss-html@^0.36.0: | ||
8922 | dependencies: | 8838 | dependencies: |
8923 | htmlparser2 "^3.10.0" | 8839 | htmlparser2 "^3.10.0" |
8924 | 8840 | ||
8925 | -postcss-js@^3.0.3: | ||
8926 | - version "3.0.3" | ||
8927 | - resolved "https://registry.npmjs.org/postcss-js/-/postcss-js-3.0.3.tgz#2f0bd370a2e8599d45439f6970403b5873abda33" | ||
8928 | - integrity sha512-gWnoWQXKFw65Hk/mi2+WTQTHdPD5UJdDXZmX073EY/B3BWnYjO4F4t0VneTCnCGQ5E5GsCdMkzPaTXwl3r5dJw== | ||
8929 | - dependencies: | ||
8930 | - camelcase-css "^2.0.1" | ||
8931 | - postcss "^8.1.6" | ||
8932 | - | ||
8933 | postcss-less@^3.1.4: | 8841 | postcss-less@^3.1.4: |
8934 | version "3.1.4" | 8842 | version "3.1.4" |
8935 | resolved "https://registry.npmjs.org/postcss-less/-/postcss-less-3.1.4.tgz#369f58642b5928ef898ffbc1a6e93c958304c5ad" | 8843 | resolved "https://registry.npmjs.org/postcss-less/-/postcss-less-3.1.4.tgz#369f58642b5928ef898ffbc1a6e93c958304c5ad" |
@@ -8937,15 +8845,6 @@ postcss-less@^3.1.4: | @@ -8937,15 +8845,6 @@ postcss-less@^3.1.4: | ||
8937 | dependencies: | 8845 | dependencies: |
8938 | postcss "^7.0.14" | 8846 | postcss "^7.0.14" |
8939 | 8847 | ||
8940 | -postcss-load-config@^3.1.0: | ||
8941 | - version "3.1.0" | ||
8942 | - resolved "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.0.tgz#d39c47091c4aec37f50272373a6a648ef5e97829" | ||
8943 | - integrity sha512-ipM8Ds01ZUophjDTQYSVP70slFSYg3T0/zyfII5vzhN6V57YSxMgG5syXuwi5VtS8wSf3iL30v0uBdoIVx4Q0g== | ||
8944 | - dependencies: | ||
8945 | - import-cwd "^3.0.0" | ||
8946 | - lilconfig "^2.0.3" | ||
8947 | - yaml "^1.10.2" | ||
8948 | - | ||
8949 | postcss-media-query-parser@^0.2.3: | 8848 | postcss-media-query-parser@^0.2.3: |
8950 | version "0.2.3" | 8849 | version "0.2.3" |
8951 | resolved "https://registry.npmjs.org/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz#27b39c6f4d94f81b1a73b8f76351c609e5cef244" | 8850 | resolved "https://registry.npmjs.org/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz#27b39c6f4d94f81b1a73b8f76351c609e5cef244" |
@@ -8993,13 +8892,6 @@ postcss-modules@^4.0.0: | @@ -8993,13 +8892,6 @@ postcss-modules@^4.0.0: | ||
8993 | postcss-modules-values "^4.0.0" | 8892 | postcss-modules-values "^4.0.0" |
8994 | string-hash "^1.1.1" | 8893 | string-hash "^1.1.1" |
8995 | 8894 | ||
8996 | -postcss-nested@5.0.5: | ||
8997 | - version "5.0.5" | ||
8998 | - resolved "https://registry.npmjs.org/postcss-nested/-/postcss-nested-5.0.5.tgz#f0a107d33a9fab11d7637205f5321e27223e3603" | ||
8999 | - integrity sha512-GSRXYz5bccobpTzLQZXOnSOfKl6TwVr5CyAQJUPub4nuRJSOECK5AqurxVgmtxP48p0Kc/ndY/YyS1yqldX0Ew== | ||
9000 | - dependencies: | ||
9001 | - postcss-selector-parser "^6.0.4" | ||
9002 | - | ||
9003 | postcss-prefix-selector@^1.6.0: | 8895 | postcss-prefix-selector@^1.6.0: |
9004 | version "1.10.0" | 8896 | version "1.10.0" |
9005 | resolved "https://registry.npmjs.org/postcss-prefix-selector/-/postcss-prefix-selector-1.10.0.tgz#7ed3194d44f6c314ab4bd93a4b7b8a2d89718844" | 8897 | resolved "https://registry.npmjs.org/postcss-prefix-selector/-/postcss-prefix-selector-1.10.0.tgz#7ed3194d44f6c314ab4bd93a4b7b8a2d89718844" |
@@ -9034,7 +8926,7 @@ postcss-scss@^2.1.1: | @@ -9034,7 +8926,7 @@ postcss-scss@^2.1.1: | ||
9034 | dependencies: | 8926 | dependencies: |
9035 | postcss "^7.0.6" | 8927 | postcss "^7.0.6" |
9036 | 8928 | ||
9037 | -postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5, postcss-selector-parser@^6.0.6: | 8929 | +postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5: |
9038 | version "6.0.6" | 8930 | version "6.0.6" |
9039 | resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz#2c5bba8174ac2f6981ab631a42ab0ee54af332ea" | 8931 | resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz#2c5bba8174ac2f6981ab631a42ab0ee54af332ea" |
9040 | integrity sha512-9LXrvaaX3+mcv5xkg5kFwqSzSH1JIObIx51PrndZwlmznwXRfxMddDvo9gve3gVR8ZTKgoFDdWkbRFmEhT4PMg== | 8932 | integrity sha512-9LXrvaaX3+mcv5xkg5kFwqSzSH1JIObIx51PrndZwlmznwXRfxMddDvo9gve3gVR8ZTKgoFDdWkbRFmEhT4PMg== |
@@ -9055,11 +8947,6 @@ postcss-syntax@^0.36.2: | @@ -9055,11 +8947,6 @@ postcss-syntax@^0.36.2: | ||
9055 | resolved "https://registry.npmjs.org/postcss-syntax/-/postcss-syntax-0.36.2.tgz#f08578c7d95834574e5593a82dfbfa8afae3b51c" | 8947 | resolved "https://registry.npmjs.org/postcss-syntax/-/postcss-syntax-0.36.2.tgz#f08578c7d95834574e5593a82dfbfa8afae3b51c" |
9056 | integrity sha512-nBRg/i7E3SOHWxF3PpF5WnJM/jQ1YpY9000OaVXlAQj6Zp/kIqJxEDWIZ67tAd7NLuk7zqN4yqe9nc0oNAOs1w== | 8948 | integrity sha512-nBRg/i7E3SOHWxF3PpF5WnJM/jQ1YpY9000OaVXlAQj6Zp/kIqJxEDWIZ67tAd7NLuk7zqN4yqe9nc0oNAOs1w== |
9057 | 8949 | ||
9058 | -postcss-value-parser@^3.3.0: | ||
9059 | - version "3.3.1" | ||
9060 | - resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" | ||
9061 | - integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== | ||
9062 | - | ||
9063 | postcss-value-parser@^4.1.0: | 8950 | postcss-value-parser@^4.1.0: |
9064 | version "4.1.0" | 8951 | version "4.1.0" |
9065 | resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb" | 8952 | resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb" |
@@ -9084,7 +8971,7 @@ postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.21, postcss@^7.0. | @@ -9084,7 +8971,7 @@ postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.21, postcss@^7.0. | ||
9084 | source-map "^0.6.1" | 8971 | source-map "^0.6.1" |
9085 | supports-color "^6.1.0" | 8972 | supports-color "^6.1.0" |
9086 | 8973 | ||
9087 | -postcss@^8.1.10, postcss@^8.1.6, postcss@^8.2.1, postcss@^8.2.10: | 8974 | +postcss@^8.1.10, postcss@^8.2.10: |
9088 | version "8.3.5" | 8975 | version "8.3.5" |
9089 | resolved "https://registry.npmjs.org/postcss/-/postcss-8.3.5.tgz#982216b113412bc20a86289e91eb994952a5b709" | 8976 | resolved "https://registry.npmjs.org/postcss/-/postcss-8.3.5.tgz#982216b113412bc20a86289e91eb994952a5b709" |
9090 | integrity sha512-NxTuJocUhYGsMiMFHDUkmjSKT3EdH4/WbGF6GCi1NDGk+vbcUTun4fpbOqaPtD8IIsztA2ilZm2DhYCuyN58gA== | 8977 | integrity sha512-NxTuJocUhYGsMiMFHDUkmjSKT3EdH4/WbGF6GCi1NDGk+vbcUTun4fpbOqaPtD8IIsztA2ilZm2DhYCuyN58gA== |
@@ -9202,11 +9089,6 @@ pretty-format@^27.0.6: | @@ -9202,11 +9089,6 @@ pretty-format@^27.0.6: | ||
9202 | ansi-styles "^5.0.0" | 9089 | ansi-styles "^5.0.0" |
9203 | react-is "^17.0.1" | 9090 | react-is "^17.0.1" |
9204 | 9091 | ||
9205 | -pretty-hrtime@^1.0.3: | ||
9206 | - version "1.0.3" | ||
9207 | - resolved "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" | ||
9208 | - integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE= | ||
9209 | - | ||
9210 | pretty-quick@^3.1.1: | 9092 | pretty-quick@^3.1.1: |
9211 | version "3.1.1" | 9093 | version "3.1.1" |
9212 | resolved "https://registry.npmjs.org/pretty-quick/-/pretty-quick-3.1.1.tgz#93ca4e2dd38cc4e970e3f54a0ead317a25454688" | 9094 | resolved "https://registry.npmjs.org/pretty-quick/-/pretty-quick-3.1.1.tgz#93ca4e2dd38cc4e970e3f54a0ead317a25454688" |
@@ -9390,16 +9272,6 @@ punycode@^2.1.0, punycode@^2.1.1: | @@ -9390,16 +9272,6 @@ punycode@^2.1.0, punycode@^2.1.1: | ||
9390 | resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" | 9272 | resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" |
9391 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== | 9273 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== |
9392 | 9274 | ||
9393 | -purgecss@^4.0.3: | ||
9394 | - version "4.0.3" | ||
9395 | - resolved "https://registry.npmjs.org/purgecss/-/purgecss-4.0.3.tgz#8147b429f9c09db719e05d64908ea8b672913742" | ||
9396 | - integrity sha512-PYOIn5ibRIP34PBU9zohUcCI09c7drPJJtTDAc0Q6QlRz2/CHQ8ywGLdE7ZhxU2VTqB7p5wkvj5Qcm05Rz3Jmw== | ||
9397 | - dependencies: | ||
9398 | - commander "^6.0.0" | ||
9399 | - glob "^7.0.0" | ||
9400 | - postcss "^8.2.1" | ||
9401 | - postcss-selector-parser "^6.0.2" | ||
9402 | - | ||
9403 | q@^1.5.1: | 9275 | q@^1.5.1: |
9404 | version "1.5.1" | 9276 | version "1.5.1" |
9405 | resolved "https://registry.npmjs.org/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" | 9277 | resolved "https://registry.npmjs.org/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" |
@@ -9452,11 +9324,6 @@ quick-lru@^4.0.1: | @@ -9452,11 +9324,6 @@ quick-lru@^4.0.1: | ||
9452 | resolved "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f" | 9324 | resolved "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f" |
9453 | integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== | 9325 | integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== |
9454 | 9326 | ||
9455 | -quick-lru@^5.1.1: | ||
9456 | - version "5.1.1" | ||
9457 | - resolved "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932" | ||
9458 | - integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== | ||
9459 | - | ||
9460 | randombytes@^2.1.0: | 9327 | randombytes@^2.1.0: |
9461 | version "2.1.0" | 9328 | version "2.1.0" |
9462 | resolved "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" | 9329 | resolved "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" |
@@ -9574,14 +9441,6 @@ redent@^3.0.0: | @@ -9574,14 +9441,6 @@ redent@^3.0.0: | ||
9574 | indent-string "^4.0.0" | 9441 | indent-string "^4.0.0" |
9575 | strip-indent "^3.0.0" | 9442 | strip-indent "^3.0.0" |
9576 | 9443 | ||
9577 | -reduce-css-calc@^2.1.8: | ||
9578 | - version "2.1.8" | ||
9579 | - resolved "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-2.1.8.tgz#7ef8761a28d614980dc0c982f772c93f7a99de03" | ||
9580 | - integrity sha512-8liAVezDmUcH+tdzoEGrhfbGcP7nOV4NkGE3a74+qqvE7nt9i4sKLGBuZNOnpI4WiGksiNPklZxva80061QiPg== | ||
9581 | - dependencies: | ||
9582 | - css-unit-converter "^1.1.1" | ||
9583 | - postcss-value-parser "^3.3.0" | ||
9584 | - | ||
9585 | regenerate-unicode-properties@^8.2.0: | 9444 | regenerate-unicode-properties@^8.2.0: |
9586 | version "8.2.0" | 9445 | version "8.2.0" |
9587 | resolved "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec" | 9446 | resolved "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec" |
@@ -10061,13 +9920,6 @@ signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3: | @@ -10061,13 +9920,6 @@ signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3: | ||
10061 | resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" | 9920 | resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" |
10062 | integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== | 9921 | integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== |
10063 | 9922 | ||
10064 | -simple-swizzle@^0.2.2: | ||
10065 | - version "0.2.2" | ||
10066 | - resolved "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" | ||
10067 | - integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo= | ||
10068 | - dependencies: | ||
10069 | - is-arrayish "^0.3.1" | ||
10070 | - | ||
10071 | sisteransi@^1.0.5: | 9923 | sisteransi@^1.0.5: |
10072 | version "1.0.5" | 9924 | version "1.0.5" |
10073 | resolved "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" | 9925 | resolved "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" |
@@ -10708,43 +10560,6 @@ table@^6.0.9, table@^6.6.0: | @@ -10708,43 +10560,6 @@ table@^6.0.9, table@^6.6.0: | ||
10708 | string-width "^4.2.0" | 10560 | string-width "^4.2.0" |
10709 | strip-ansi "^6.0.0" | 10561 | strip-ansi "^6.0.0" |
10710 | 10562 | ||
10711 | -tailwindcss@^2.2.7: | ||
10712 | - version "2.2.7" | ||
10713 | - resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-2.2.7.tgz#795d07a14ef46c2dc4a1610f7f906f697daaf731" | ||
10714 | - integrity sha512-jv35rugP5j8PpzbXnsria7ZAry7Evh0KtQ4MZqNd+PhF+oIKPwJTVwe/rmfRx9cZw3W7iPZyzBmeoAoNwfJ1yg== | ||
10715 | - dependencies: | ||
10716 | - arg "^5.0.0" | ||
10717 | - bytes "^3.0.0" | ||
10718 | - chalk "^4.1.1" | ||
10719 | - chokidar "^3.5.2" | ||
10720 | - color "^3.2.0" | ||
10721 | - cosmiconfig "^7.0.0" | ||
10722 | - detective "^5.2.0" | ||
10723 | - didyoumean "^1.2.2" | ||
10724 | - dlv "^1.1.3" | ||
10725 | - fast-glob "^3.2.7" | ||
10726 | - fs-extra "^10.0.0" | ||
10727 | - glob-parent "^6.0.0" | ||
10728 | - html-tags "^3.1.0" | ||
10729 | - is-glob "^4.0.1" | ||
10730 | - lodash "^4.17.21" | ||
10731 | - lodash.topath "^4.5.2" | ||
10732 | - modern-normalize "^1.1.0" | ||
10733 | - node-emoji "^1.8.1" | ||
10734 | - normalize-path "^3.0.0" | ||
10735 | - object-hash "^2.2.0" | ||
10736 | - postcss-js "^3.0.3" | ||
10737 | - postcss-load-config "^3.1.0" | ||
10738 | - postcss-nested "5.0.5" | ||
10739 | - postcss-selector-parser "^6.0.6" | ||
10740 | - postcss-value-parser "^4.1.0" | ||
10741 | - pretty-hrtime "^1.0.3" | ||
10742 | - purgecss "^4.0.3" | ||
10743 | - quick-lru "^5.1.1" | ||
10744 | - reduce-css-calc "^2.1.8" | ||
10745 | - resolve "^1.20.0" | ||
10746 | - tmp "^0.2.1" | ||
10747 | - | ||
10748 | tar-stream@^1.5.2: | 10563 | tar-stream@^1.5.2: |
10749 | version "1.6.2" | 10564 | version "1.6.2" |
10750 | resolved "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz#8ea55dab37972253d9a9af90fdcd559ae435c555" | 10565 | resolved "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz#8ea55dab37972253d9a9af90fdcd559ae435c555" |
@@ -10886,13 +10701,6 @@ tmp@^0.0.33: | @@ -10886,13 +10701,6 @@ tmp@^0.0.33: | ||
10886 | dependencies: | 10701 | dependencies: |
10887 | os-tmpdir "~1.0.2" | 10702 | os-tmpdir "~1.0.2" |
10888 | 10703 | ||
10889 | -tmp@^0.2.1: | ||
10890 | - version "0.2.1" | ||
10891 | - resolved "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz#8457fc3037dcf4719c251367a1af6500ee1ccf14" | ||
10892 | - integrity sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ== | ||
10893 | - dependencies: | ||
10894 | - rimraf "^3.0.0" | ||
10895 | - | ||
10896 | tmpl@1.0.x: | 10704 | tmpl@1.0.x: |
10897 | version "1.0.4" | 10705 | version "1.0.4" |
10898 | resolved "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" | 10706 | resolved "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" |
@@ -11388,14 +11196,14 @@ vfile@^4.0.0: | @@ -11388,14 +11196,14 @@ vfile@^4.0.0: | ||
11388 | unist-util-stringify-position "^2.0.0" | 11196 | unist-util-stringify-position "^2.0.0" |
11389 | vfile-message "^2.0.0" | 11197 | vfile-message "^2.0.0" |
11390 | 11198 | ||
11391 | -vite-plugin-compression@^0.3.1: | ||
11392 | - version "0.3.1" | ||
11393 | - resolved "https://registry.yarnpkg.com/vite-plugin-compression/-/vite-plugin-compression-0.3.1.tgz#b8947d0fd7bba60f6c3385cfcb8ce3205028c541" | ||
11394 | - integrity sha512-KezpgSK/P1D63jyryYswPDsvONzKZRVimslSbdRiNCb0xq3nsLFA6RenghA+O7BQVC9ikfhu1eBaekXnwuPU2g== | 11199 | +vite-plugin-compression@^0.3.3: |
11200 | + version "0.3.3" | ||
11201 | + resolved "https://registry.npmjs.org/vite-plugin-compression/-/vite-plugin-compression-0.3.3.tgz#0ce6a0a793b79cfbf3a17b4390973c7ab6e41ace" | ||
11202 | + integrity sha512-BuI4jKk/D7snlRYNz/RhKXLWXseT5cB1aK7zhNRcXm/Tjf2P6wwll1JzPsUWuCvzvI6msAQ2wMRPdGb3QWGXSw== | ||
11395 | dependencies: | 11203 | dependencies: |
11396 | - chalk "^4.1.1" | 11204 | + chalk "^4.1.2" |
11397 | debug "^4.3.2" | 11205 | debug "^4.3.2" |
11398 | - fs-extra "^9.1.0" | 11206 | + fs-extra "^10.0.0" |
11399 | 11207 | ||
11400 | vite-plugin-html@^2.0.7: | 11208 | vite-plugin-html@^2.0.7: |
11401 | version "2.0.7" | 11209 | version "2.0.7" |
@@ -11406,20 +11214,20 @@ vite-plugin-html@^2.0.7: | @@ -11406,20 +11214,20 @@ vite-plugin-html@^2.0.7: | ||
11406 | fs-extra "^9.1.0" | 11214 | fs-extra "^9.1.0" |
11407 | html-minifier-terser "^5.1.1" | 11215 | html-minifier-terser "^5.1.1" |
11408 | 11216 | ||
11409 | -vite-plugin-imagemin@^0.4.1: | ||
11410 | - version "0.4.1" | ||
11411 | - resolved "https://registry.yarnpkg.com/vite-plugin-imagemin/-/vite-plugin-imagemin-0.4.1.tgz#c7d34586dca61089769124241ec89b6e62bf730d" | ||
11412 | - integrity sha512-sAVX9PKjzejFr//bes9wXM2mzwYkUeE9NQKXwaM3YwFD5aGKDN8S6g/p9TPej2Aaf1Da6vff7v7lE7CaMYiXzQ== | 11217 | +vite-plugin-imagemin@^0.4.3: |
11218 | + version "0.4.3" | ||
11219 | + resolved "https://registry.npmjs.org/vite-plugin-imagemin/-/vite-plugin-imagemin-0.4.3.tgz#9eab0b50137b10f105ab803be8a19eca4208f212" | ||
11220 | + integrity sha512-NIMFOiRT1t8Hc4o8KnilJSloUsPDQz77jITUU/eF9qEFjm3JvEes4NSW4egO54IOgKcj9jyXQsX5C2cKTbIE0A== | ||
11413 | dependencies: | 11221 | dependencies: |
11414 | "@types/imagemin" "^7.0.1" | 11222 | "@types/imagemin" "^7.0.1" |
11415 | "@types/imagemin-gifsicle" "^7.0.1" | 11223 | "@types/imagemin-gifsicle" "^7.0.1" |
11416 | - "@types/imagemin-jpegtran" "^5.0.0" | 11224 | + "@types/imagemin-jpegtran" "^5.0.1" |
11417 | "@types/imagemin-mozjpeg" "^8.0.1" | 11225 | "@types/imagemin-mozjpeg" "^8.0.1" |
11418 | "@types/imagemin-optipng" "^5.2.1" | 11226 | "@types/imagemin-optipng" "^5.2.1" |
11419 | "@types/imagemin-svgo" "^9.0.1" | 11227 | "@types/imagemin-svgo" "^9.0.1" |
11420 | "@types/imagemin-webp" "^5.1.2" | 11228 | "@types/imagemin-webp" "^5.1.2" |
11421 | "@types/svgo" "^2.3.1" | 11229 | "@types/svgo" "^2.3.1" |
11422 | - chalk "^4.1.1" | 11230 | + chalk "^4.1.2" |
11423 | debug "^4.3.2" | 11231 | debug "^4.3.2" |
11424 | esbuild "^0.11.23" | 11232 | esbuild "^0.11.23" |
11425 | fs-extra "^10.0.0" | 11233 | fs-extra "^10.0.0" |
@@ -11432,10 +11240,10 @@ vite-plugin-imagemin@^0.4.1: | @@ -11432,10 +11240,10 @@ vite-plugin-imagemin@^0.4.1: | ||
11432 | imagemin-svgo "^9.0.0" | 11240 | imagemin-svgo "^9.0.0" |
11433 | imagemin-webp "^6.0.0" | 11241 | imagemin-webp "^6.0.0" |
11434 | 11242 | ||
11435 | -vite-plugin-mock@^2.9.3: | ||
11436 | - version "2.9.3" | ||
11437 | - resolved "https://registry.yarnpkg.com/vite-plugin-mock/-/vite-plugin-mock-2.9.3.tgz#1afedd17a5a0a64c71acb7355f86977398f46912" | ||
11438 | - integrity sha512-4PTTtKc3MOIY/m0owguZl1aMM2dnNoNFsKAE4TKO5G7J31eqNbzLgunrozOvK06P90iA4FGb0SqUmnnZl32rLg== | 11243 | +vite-plugin-mock@^2.9.4: |
11244 | + version "2.9.4" | ||
11245 | + resolved "https://registry.npmjs.org/vite-plugin-mock/-/vite-plugin-mock-2.9.4.tgz#0d739fc1b2ff3f383f23abe2b906daca2895909d" | ||
11246 | + integrity sha512-42HzQBv0QNjNzOeN0WZ4bnPF8hZkbWPOZLy4kNe8g5sTpY8QurHi3Evsccv8rW9N48kHT10zQVyNA3EipZjCQg== | ||
11439 | dependencies: | 11247 | dependencies: |
11440 | "@rollup/plugin-node-resolve" "^13.0.2" | 11248 | "@rollup/plugin-node-resolve" "^13.0.2" |
11441 | "@types/mockjs" "^1.0.4" | 11249 | "@types/mockjs" "^1.0.4" |
@@ -11468,21 +11276,21 @@ vite-plugin-pwa@^0.9.3: | @@ -11468,21 +11276,21 @@ vite-plugin-pwa@^0.9.3: | ||
11468 | workbox-build "^6.1.5" | 11276 | workbox-build "^6.1.5" |
11469 | workbox-window "^6.1.5" | 11277 | workbox-window "^6.1.5" |
11470 | 11278 | ||
11471 | -vite-plugin-style-import@^1.0.1: | ||
11472 | - version "1.0.1" | ||
11473 | - resolved "https://registry.npmjs.org/vite-plugin-style-import/-/vite-plugin-style-import-1.0.1.tgz#bf61337dd11e4ebc0f355f271e06d374b1ca5c79" | ||
11474 | - integrity sha512-qinzdBxqkmX4fEyLZJVIBQTrgKivbROgcKJfBRz66knbghYAoe9cQeRptWKh35hE7obiidItWSCrHWkeu+JMVw== | 11279 | +vite-plugin-style-import@^1.1.0: |
11280 | + version "1.1.0" | ||
11281 | + resolved "https://registry.npmjs.org/vite-plugin-style-import/-/vite-plugin-style-import-1.1.0.tgz#9405fe6a8662833218d64182cfa1973ffc04e6fa" | ||
11282 | + integrity sha512-fcTa9mrmwgN84XtWb9f0401puExhHL2qK93fnvXxXMW4SPDWJ6ZRk93Tu8V6kY/HEA/CODA4vucfAUGYwFZNHA== | ||
11475 | dependencies: | 11283 | dependencies: |
11476 | - "@rollup/pluginutils" "^4.1.0" | 11284 | + "@rollup/pluginutils" "^4.1.1" |
11477 | change-case "^4.1.2" | 11285 | change-case "^4.1.2" |
11478 | debug "^4.3.2" | 11286 | debug "^4.3.2" |
11479 | - es-module-lexer "^0.6.0" | 11287 | + es-module-lexer "^0.7.1" |
11480 | magic-string "^0.25.7" | 11288 | magic-string "^0.25.7" |
11481 | 11289 | ||
11482 | -vite-plugin-svg-icons@^1.0.1: | ||
11483 | - version "1.0.1" | ||
11484 | - resolved "https://registry.npmjs.org/vite-plugin-svg-icons/-/vite-plugin-svg-icons-1.0.1.tgz#2fb8c257cf2b7bf085c40b7feb4b82e5e368778b" | ||
11485 | - integrity sha512-bWAfm2zm0Y6OXhLWn9C1hcEOZo4Mgdgv6vJgkdb16RdWBUDWd5zcewMNKlYp1s8wjmvsK4xqUJvmM7vd3E3naQ== | 11290 | +vite-plugin-svg-icons@^1.0.3: |
11291 | + version "1.0.3" | ||
11292 | + resolved "https://registry.npmjs.org/vite-plugin-svg-icons/-/vite-plugin-svg-icons-1.0.3.tgz#5812ee61458e8e9fc0e0fe8a6a3abbc20e875b0a" | ||
11293 | + integrity sha512-3YLjemTDWabzrBtSJJyhA9ZIy+EeRS+cri44omS03BkrVG2xepbwbAv8WiDc7YugKqUkh0MGEEYajFixl905Wg== | ||
11486 | dependencies: | 11294 | dependencies: |
11487 | "@types/svgo" "^2.3.1" | 11295 | "@types/svgo" "^2.3.1" |
11488 | cors "^2.8.5" | 11296 | cors "^2.8.5" |
@@ -11506,6 +11314,16 @@ vite-plugin-theme@^0.8.1: | @@ -11506,6 +11314,16 @@ vite-plugin-theme@^0.8.1: | ||
11506 | esbuild-plugin-alias "^0.1.2" | 11314 | esbuild-plugin-alias "^0.1.2" |
11507 | tinycolor2 "^1.4.2" | 11315 | tinycolor2 "^1.4.2" |
11508 | 11316 | ||
11317 | +vite-plugin-windicss@^1.2.7: | ||
11318 | + version "1.2.7" | ||
11319 | + resolved "https://registry.npmjs.org/vite-plugin-windicss/-/vite-plugin-windicss-1.2.7.tgz#92671ec795ab1a8a4e520aff8117ac14c04d312f" | ||
11320 | + integrity sha512-JgIGsH5HPaz3ghDRhhLeF8VZQMUE+R0jD9u8sbne5KdBBa208r0IuTcx73V7CPcmsu7KABG6rfLgST9ffVoiDA== | ||
11321 | + dependencies: | ||
11322 | + "@windicss/plugin-utils" "1.2.7" | ||
11323 | + chalk "^4.1.1" | ||
11324 | + debug "^4.3.2" | ||
11325 | + windicss "^3.1.6" | ||
11326 | + | ||
11509 | vite@2.4.4: | 11327 | vite@2.4.4: |
11510 | version "2.4.4" | 11328 | version "2.4.4" |
11511 | resolved "https://registry.yarnpkg.com/vite/-/vite-2.4.4.tgz#8c402a07ad45f168f6eb5428bead38f3e4363e47" | 11329 | resolved "https://registry.yarnpkg.com/vite/-/vite-2.4.4.tgz#8c402a07ad45f168f6eb5428bead38f3e4363e47" |
@@ -11845,6 +11663,11 @@ which@^2.0.1: | @@ -11845,6 +11663,11 @@ which@^2.0.1: | ||
11845 | dependencies: | 11663 | dependencies: |
11846 | isexe "^2.0.0" | 11664 | isexe "^2.0.0" |
11847 | 11665 | ||
11666 | +windicss@^3.1.6: | ||
11667 | + version "3.1.6" | ||
11668 | + resolved "https://registry.npmjs.org/windicss/-/windicss-3.1.6.tgz#237f24be8b38f90f451eedda166c46c25227c608" | ||
11669 | + integrity sha512-9/ShTPRs2pg/AJo4PtbgDv9p7BUgR52WqL7Gpr8VSO6LH8z4I/oKamUAlSXqyLsWD6yKS+xtxF3FRiHVJwYcuQ== | ||
11670 | + | ||
11848 | with@^7.0.0: | 11671 | with@^7.0.0: |
11849 | version "7.0.2" | 11672 | version "7.0.2" |
11850 | resolved "https://registry.npmjs.org/with/-/with-7.0.2.tgz#ccee3ad542d25538a7a7a80aad212b9828495bac" | 11673 | resolved "https://registry.npmjs.org/with/-/with-7.0.2.tgz#ccee3ad542d25538a7a7a80aad212b9828495bac" |
@@ -12103,7 +11926,7 @@ xmlchars@^2.2.0: | @@ -12103,7 +11926,7 @@ xmlchars@^2.2.0: | ||
12103 | resolved "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" | 11926 | resolved "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" |
12104 | integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== | 11927 | integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== |
12105 | 11928 | ||
12106 | -xtend@^4.0.0, xtend@^4.0.2, xtend@~4.0.1: | 11929 | +xtend@^4.0.0, xtend@~4.0.1: |
12107 | version "4.0.2" | 11930 | version "4.0.2" |
12108 | resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" | 11931 | resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" |
12109 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== | 11932 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== |
@@ -12133,7 +11956,7 @@ yallist@^4.0.0: | @@ -12133,7 +11956,7 @@ yallist@^4.0.0: | ||
12133 | resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" | 11956 | resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" |
12134 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== | 11957 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== |
12135 | 11958 | ||
12136 | -yaml@^1.10.0, yaml@^1.10.2: | 11959 | +yaml@^1.10.0: |
12137 | version "1.10.2" | 11960 | version "1.10.2" |
12138 | resolved "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" | 11961 | resolved "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" |
12139 | integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== | 11962 | integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== |