Commit e090689ef5c2d88aa19da994324561c26e37e17e
1 parent
2658e15d
chore: update deps
Showing
16 changed files
with
515 additions
and
498 deletions
.eslintrc.js
1 | -module.exports = { | |
1 | +const { defineConfig } = require('eslint-define-config'); | |
2 | +module.exports = defineConfig({ | |
2 | 3 | root: true, |
3 | 4 | env: { |
4 | 5 | browser: true, |
... | ... | @@ -58,7 +59,6 @@ module.exports = { |
58 | 59 | 'vue/multiline-html-element-content-newline': 'off', |
59 | 60 | 'vue/singleline-html-element-content-newline': 'off', |
60 | 61 | 'vue/attribute-hyphenation': 'off', |
61 | - // 'vue/html-self-closing': 'off', | |
62 | 62 | 'vue/require-default-prop': 'off', |
63 | 63 | 'vue/html-self-closing': [ |
64 | 64 | 'error', |
... | ... | @@ -73,4 +73,4 @@ module.exports = { |
73 | 73 | }, |
74 | 74 | ], |
75 | 75 | }, |
76 | -}; | |
76 | +}); | |
... | ... |
.vscode/settings.json
build/script/postBuild.ts
1 | 1 | // #!/usr/bin/env node |
2 | 2 | |
3 | -import { argv } from 'yargs'; | |
4 | 3 | import { runBuildConfig } from './buildConf'; |
5 | 4 | import chalk from 'chalk'; |
6 | 5 | |
... | ... | @@ -8,10 +7,10 @@ import pkg from '../../package.json'; |
8 | 7 | |
9 | 8 | export const runBuild = async () => { |
10 | 9 | try { |
11 | - const argvList = argv._; | |
10 | + const argvList = process.argv.splice(2); | |
12 | 11 | |
13 | 12 | // Generate configuration file |
14 | - if (!argvList.includes('no-conf')) { | |
13 | + if (!argvList.includes('disabled-config')) { | |
15 | 14 | await runBuildConfig(); |
16 | 15 | } |
17 | 16 | |
... | ... |
build/vite/plugin/imagemin.ts
build/vite/proxy.ts
1 | 1 | /** |
2 | 2 | * Used to parse the .env.development proxy configuration |
3 | 3 | */ |
4 | -import type { ServerOptions } from 'http-proxy'; | |
4 | +import type { ProxyOptions } from 'vite'; | |
5 | 5 | |
6 | 6 | type ProxyItem = [string, string]; |
7 | 7 | |
8 | 8 | type ProxyList = ProxyItem[]; |
9 | 9 | |
10 | -type ProxyTargetList = Record<string, ServerOptions & { rewrite: (path: string) => string }>; | |
10 | +type ProxyTargetList = Record<string, ProxyOptions & { rewrite: (path: string) => string }>; | |
11 | 11 | |
12 | 12 | const httpsRE = /^https:\/\//; |
13 | 13 | |
... | ... |
commitlint.config.js
... | ... | @@ -17,7 +17,7 @@ module.exports = { |
17 | 17 | 'resolved', |
18 | 18 | ], |
19 | 19 | issuePrefixes: ['#'], |
20 | - noteKeywords: ['BREAKING CHANGE', '不兼容变更'], | |
20 | + noteKeywords: ['BREAKING CHANGE'], | |
21 | 21 | fieldPattern: /^-(.*?)-$/, |
22 | 22 | revertPattern: /^Revert\s"([\s\S]*)"\s*This reverts commit (\w*)\./, |
23 | 23 | revertCorrespondence: ['header', 'hash'], |
... | ... | @@ -50,6 +50,7 @@ module.exports = { |
50 | 50 | 'wip', |
51 | 51 | 'workflow', |
52 | 52 | 'types', |
53 | + 'release', | |
53 | 54 | ], |
54 | 55 | ], |
55 | 56 | }, |
... | ... |
package.json
... | ... | @@ -10,7 +10,7 @@ |
10 | 10 | "bootstrap": "yarn install", |
11 | 11 | "serve": "npx --max_old_space_size=4096 vite", |
12 | 12 | "dev": "npx --max_old_space_size=4096 vite", |
13 | - "build": "vite build && esno ./build/script/postBuild.ts", | |
13 | + "build": "esno ./build/script/postBuild.ts", | |
14 | 14 | "build:no-cache": "yarn clean:cache && npm run build", |
15 | 15 | "report": "cross-env REPORT=true npm run build ", |
16 | 16 | "preview": "npm run build && vite preview", |
... | ... | @@ -32,7 +32,7 @@ |
32 | 32 | }, |
33 | 33 | "dependencies": { |
34 | 34 | "@iconify/iconify": "^2.0.0-rc.6", |
35 | - "@vueuse/core": "^4.5.0", | |
35 | + "@vueuse/core": "^4.6.0", | |
36 | 36 | "@zxcvbn-ts/core": "^0.3.0", |
37 | 37 | "ant-design-vue": "2.1.0", |
38 | 38 | "apexcharts": "^3.26.0", |
... | ... | @@ -45,7 +45,7 @@ |
45 | 45 | "path-to-regexp": "^6.2.0", |
46 | 46 | "qrcode": "^1.4.4", |
47 | 47 | "sortablejs": "^1.13.0", |
48 | - "vditor": "^3.8.3", | |
48 | + "vditor": "^3.8.4", | |
49 | 49 | "vue": "^3.0.7", |
50 | 50 | "vue-i18n": "^9.0.0", |
51 | 51 | "vue-router": "^4.0.5", |
... | ... | @@ -60,18 +60,15 @@ |
60 | 60 | "@iconify/json": "^1.1.322", |
61 | 61 | "@purge-icons/generated": "^0.7.0", |
62 | 62 | "@types/crypto-js": "^4.0.1", |
63 | - "@types/fs-extra": "^9.0.8", | |
64 | - "@types/http-proxy": "^1.17.5", | |
63 | + "@types/fs-extra": "^9.0.9", | |
65 | 64 | "@types/inquirer": "^7.3.1", |
66 | 65 | "@types/lodash-es": "^4.17.4", |
67 | 66 | "@types/mockjs": "^1.0.3", |
68 | - "@types/node": "^14.14.35", | |
69 | 67 | "@types/nprogress": "^0.2.0", |
70 | 68 | "@types/qrcode": "^1.4.0", |
71 | 69 | "@types/qs": "^6.9.6", |
72 | 70 | "@types/rollup-plugin-visualizer": "^2.6.0", |
73 | 71 | "@types/sortablejs": "^1.10.6", |
74 | - "@types/yargs": "^16.0.0", | |
75 | 72 | "@typescript-eslint/eslint-plugin": "^4.19.0", |
76 | 73 | "@typescript-eslint/parser": "^4.19.0", |
77 | 74 | "@vitejs/plugin-legacy": "^1.3.1", |
... | ... | @@ -86,6 +83,7 @@ |
86 | 83 | "dotenv": "^8.2.0", |
87 | 84 | "eslint": "^7.22.0", |
88 | 85 | "eslint-config-prettier": "^8.1.0", |
86 | + "eslint-define-config": "^1.0.2", | |
89 | 87 | "eslint-plugin-prettier": "^3.3.1", |
90 | 88 | "eslint-plugin-vue": "^7.8.0", |
91 | 89 | "esno": "^0.5.0", |
... | ... | @@ -96,7 +94,6 @@ |
96 | 94 | "is-ci": "^3.0.0", |
97 | 95 | "less": "^4.1.1", |
98 | 96 | "lint-staged": "^10.5.4", |
99 | - "madge": "^4.0.2", | |
100 | 97 | "postcss": "^8.2.8", |
101 | 98 | "prettier": "^2.2.1", |
102 | 99 | "pretty-quick": "^3.1.0", |
... | ... | @@ -114,13 +111,12 @@ |
114 | 111 | "vite-plugin-imagemin": "^0.2.9", |
115 | 112 | "vite-plugin-mock": "^2.4.0", |
116 | 113 | "vite-plugin-purge-icons": "^0.7.0", |
117 | - "vite-plugin-pwa": "^0.6.2", | |
118 | - "vite-plugin-style-import": "^0.8.3", | |
114 | + "vite-plugin-pwa": "^0.6.3", | |
115 | + "vite-plugin-style-import": "^0.9.0", | |
119 | 116 | "vite-plugin-svg-icons": "^0.4.0", |
120 | 117 | "vite-plugin-theme": "^0.5.0", |
121 | 118 | "vite-plugin-windicss": "0.9.11", |
122 | - "vue-eslint-parser": "^7.6.0", | |
123 | - "yargs": "^16.2.0" | |
119 | + "vue-eslint-parser": "^7.6.0" | |
124 | 120 | }, |
125 | 121 | "resolutions": { |
126 | 122 | "//": "Used to install imagemin dependencies, because imagemin may not be installed in China.If it is abroad, you can delete it", |
... | ... |
public/resource/tinymce/langs/en.js
0 → 100644
1 | +tinymce.addI18n('es', { | |
2 | + Redo: 'Rehacer', | |
3 | + Undo: 'Deshacer', | |
4 | + Cut: 'Cortar', | |
5 | + Copy: 'Copiar', | |
6 | + Paste: 'Pegar', | |
7 | + 'Select all': 'Seleccionar todo', | |
8 | + 'New document': 'Nuevo documento', | |
9 | + Ok: 'Ok', | |
10 | + Cancel: 'Cancelar', | |
11 | + 'Visual aids': 'Ayudas visuales', | |
12 | + Bold: 'Negrita', | |
13 | + Italic: 'Cursiva', | |
14 | + Underline: 'Subrayado', | |
15 | + Strikethrough: 'Tachado', | |
16 | + Superscript: 'Super\u00edndice', | |
17 | + Subscript: 'Sub\u00edndice', | |
18 | + 'Clear formatting': 'Limpiar formato', | |
19 | + 'Align left': 'Alinear a la izquierda', | |
20 | + 'Align center': 'Alinear al centro', | |
21 | + 'Align right': 'Alinear a la derecha', | |
22 | + Justify: 'Justificar', | |
23 | + 'Bullet list': 'Lista de vi\u00f1etas', | |
24 | + 'Numbered list': 'Lista numerada', | |
25 | + 'Decrease indent': 'Disminuir sangr\u00eda', | |
26 | + 'Increase indent': 'Incrementar sangr\u00eda', | |
27 | + Close: 'Cerrar', | |
28 | + Formats: 'Formatos', | |
29 | + "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": 'Su navegador no es compatible con el acceso directo al portapapeles. Use las teclas Crtl+X\/C\/V de su teclado.', | |
30 | + Headers: 'Encabezados', | |
31 | + 'Header 1': 'Encabezado 1', | |
32 | + 'Header 2': 'Encabezado 2', | |
33 | + 'Header 3': 'Encabezado 3', | |
34 | + 'Header 4': 'Encabezado 4', | |
35 | + 'Header 5': 'Encabezado 5', | |
36 | + 'Header 6': 'Encabezado 6', | |
37 | + Headings: 'Encabezados', | |
38 | + 'Heading 1': 'Encabezado 1', | |
39 | + 'Heading 2': 'Encabezado 2', | |
40 | + 'Heading 3': 'Encabezado 3', | |
41 | + 'Heading 4': 'Encabezado 4', | |
42 | + 'Heading 5': 'Encabezado 5', | |
43 | + 'Heading 6': 'Encabezado 6', | |
44 | + Preformatted: 'Con formato previo', | |
45 | + Div: 'Div', | |
46 | + Pre: 'Pre', | |
47 | + Code: 'C\u00f3digo', | |
48 | + Paragraph: 'P\u00e1rrafo', | |
49 | + Blockquote: 'Blockquote', | |
50 | + Inline: 'Alineado', | |
51 | + Blocks: 'Bloques', | |
52 | + 'Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.': 'Pegar est\u00e1 ahora en modo de texto plano. El contenido se pegar\u00e1 como texto plano hasta que desactive esta opci\u00f3n.', | |
53 | + Fonts: 'Fuentes', | |
54 | + 'Font Sizes': 'Tama\u00f1os de fuente', | |
55 | + Class: 'Clase', | |
56 | + 'Browse for an image': 'Buscar una imagen', | |
57 | + OR: 'OR', | |
58 | + 'Drop an image here': 'Arrastre una imagen aqu\u00ed', | |
59 | + Upload: 'Cargar', | |
60 | + Block: 'Bloque', | |
61 | + Align: 'Alinear', | |
62 | + Default: 'Por defecto', | |
63 | + Circle: 'C\u00edrculo', | |
64 | + Disc: 'Disco', | |
65 | + Square: 'Cuadrado', | |
66 | + 'Lower Alpha': 'Inferior Alfa', | |
67 | + 'Lower Greek': 'Inferior Griega', | |
68 | + 'Lower Roman': 'Inferior Romana', | |
69 | + 'Upper Alpha': 'Superior Alfa', | |
70 | + 'Upper Roman': 'Superior Romana', | |
71 | + 'Anchor...': 'Anclaje...', | |
72 | + Name: 'Nombre', | |
73 | + Id: 'Id', | |
74 | + 'Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.': 'Deber\u00eda comenzar por una letra, seguida solo de letras, n\u00fameros, guiones, puntos, dos puntos o guiones bajos.', | |
75 | + 'You have unsaved changes are you sure you want to navigate away?': 'Tiene cambios sin guardar. \u00bfEst\u00e1 seguro de que quiere salir?', | |
76 | + 'Restore last draft': 'Restaurar el \u00faltimo borrador', | |
77 | + 'Special character...': 'Car\u00e1cter especial...', | |
78 | + 'Source code': 'C\u00f3digo fuente', | |
79 | + 'Insert\/Edit code sample': 'Insertar\/editar c\u00f3digo de prueba', | |
80 | + Language: 'Idioma', | |
81 | + 'Code sample...': 'Ejemplo de c\u00f3digo...', | |
82 | + 'Color Picker': 'Selector de colores', | |
83 | + R: 'R', | |
84 | + G: 'V', | |
85 | + B: 'A', | |
86 | + 'Left to right': 'De izquierda a derecha', | |
87 | + 'Right to left': 'De derecha a izquierda', | |
88 | + 'Emoticons...': 'Emoticones...', | |
89 | + 'Metadata and Document Properties': 'Metadatos y propiedades del documento', | |
90 | + Title: 'T\u00edtulo', | |
91 | + Keywords: 'Palabras clave', | |
92 | + Description: 'Descripci\u00f3n', | |
93 | + Robots: 'Robots', | |
94 | + Author: 'Autor', | |
95 | + Encoding: 'Codificaci\u00f3n', | |
96 | + Fullscreen: 'Pantalla completa', | |
97 | + Action: 'Acci\u00f3n', | |
98 | + Shortcut: 'Atajo', | |
99 | + Help: 'Ayuda', | |
100 | + Address: 'Direcci\u00f3n', | |
101 | + 'Focus to menubar': 'Enfocar la barra del men\u00fa', | |
102 | + 'Focus to toolbar': 'Enfocar la barra de herramientas', | |
103 | + 'Focus to element path': 'Enfocar la ruta del elemento', | |
104 | + 'Focus to contextual toolbar': 'Enfocar la barra de herramientas contextual', | |
105 | + 'Insert link (if link plugin activated)': 'Insertar enlace (si el complemento de enlace est\u00e1 activado)', | |
106 | + 'Save (if save plugin activated)': 'Guardar (si el componente de salvar est\u00e1 activado)', | |
107 | + 'Find (if searchreplace plugin activated)': 'Buscar (si el complemento buscar-remplazar est\u00e1 activado)', | |
108 | + 'Plugins installed ({0}):': 'Plugins instalados ({0}):', | |
109 | + 'Premium plugins:': 'Complementos premium:', | |
110 | + 'Learn more...': 'Aprende m\u00e1s...', | |
111 | + 'You are using {0}': 'Estas usando {0}', | |
112 | + Plugins: 'Complementos', | |
113 | + 'Handy Shortcuts': 'Accesos directos', | |
114 | + 'Horizontal line': 'L\u00ednea horizontal', | |
115 | + 'Insert\/edit image': 'Insertar\/editar imagen', | |
116 | + 'Image description': 'Descripci\u00f3n de la imagen', | |
117 | + Source: 'Enlace', | |
118 | + Dimensions: 'Dimensiones', | |
119 | + 'Constrain proportions': 'Restringir proporciones', | |
120 | + General: 'General', | |
121 | + Advanced: 'Avanzado', | |
122 | + Style: 'Estilo', | |
123 | + 'Vertical space': 'Espacio vertical', | |
124 | + 'Horizontal space': 'Espacio horizontal', | |
125 | + Border: 'Borde', | |
126 | + 'Insert image': 'Insertar imagen', | |
127 | + 'Image...': 'Imagen...', | |
128 | + 'Image list': 'Lista de im\u00e1genes', | |
129 | + 'Rotate counterclockwise': 'Girar a la izquierda', | |
130 | + 'Rotate clockwise': 'Girar a la derecha', | |
131 | + 'Flip vertically': 'Invertir verticalmente', | |
132 | + 'Flip horizontally': 'Invertir horizontalmente', | |
133 | + 'Edit image': 'Editar imagen', | |
134 | + 'Image options': 'Opciones de imagen', | |
135 | + 'Zoom in': 'Acercar', | |
136 | + 'Zoom out': 'Alejar', | |
137 | + Crop: 'Recortar', | |
138 | + Resize: 'Redimensionar', | |
139 | + Orientation: 'Orientaci\u00f3n', | |
140 | + Brightness: 'Brillo', | |
141 | + Sharpen: 'Forma', | |
142 | + Contrast: 'Contraste', | |
143 | + 'Color levels': 'Niveles de color', | |
144 | + Gamma: 'Gamma', | |
145 | + Invert: 'Invertir', | |
146 | + Apply: 'Aplicar', | |
147 | + Back: 'Atr\u00e1s', | |
148 | + 'Insert date\/time': 'Insertar fecha\/hora', | |
149 | + 'Date\/time': 'Fecha\/hora', | |
150 | + 'Insert\/Edit Link': 'Insertar\/editar enlace', | |
151 | + 'Insert\/edit link': 'Insertar\/editar enlace', | |
152 | + 'Text to display': 'Texto para mostrar', | |
153 | + Url: 'URL', | |
154 | + 'Open link in...': 'Abrir enlace en...', | |
155 | + 'Current window': 'Ventana actual', | |
156 | + None: 'Ninguno', | |
157 | + 'New window': 'Nueva ventana', | |
158 | + 'Remove link': 'Quitar enlace', | |
159 | + Anchors: 'Anclas', | |
160 | + 'Link...': 'Enlace...', | |
161 | + 'Paste or type a link': 'Pega o introduce un enlace', | |
162 | + 'The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?': 'El enlace que has introducido no parece ser una direcci\u00f3n de correo electr\u00f3nico. Quieres a\u00f1adir el prefijo necesario mailto: ?', | |
163 | + 'The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?': 'El enlace que has introducido no parece ser una enlace externo. Quieres a\u00f1adir el prefijo necesario http:\/\/ ?', | |
164 | + 'Link list': 'Lista de enlaces', | |
165 | + 'Insert video': 'Insertar video', | |
166 | + 'Insert\/edit video': 'Insertar\/editar video', | |
167 | + 'Insert\/edit media': 'Insertar\/editar medio', | |
168 | + 'Alternative source': 'Enlace alternativo', | |
169 | + 'Alternative source URL': 'Origen de URL alternativo', | |
170 | + 'Media poster (Image URL)': 'P\u00f3ster de medio (URL de imagen)', | |
171 | + 'Paste your embed code below:': 'Pega tu c\u00f3digo embebido debajo', | |
172 | + Embed: 'Incrustado', | |
173 | + 'Media...': 'Medios...', | |
174 | + 'Nonbreaking space': 'Espacio fijo', | |
175 | + 'Page break': 'Salto de p\u00e1gina', | |
176 | + 'Paste as text': 'Pegar como texto', | |
177 | + Preview: 'Previsualizar', | |
178 | + 'Print...': 'Imprimir...', | |
179 | + Save: 'Guardar', | |
180 | + Find: 'Buscar', | |
181 | + 'Replace with': 'Reemplazar con', | |
182 | + Replace: 'Reemplazar', | |
183 | + 'Replace all': 'Reemplazar todo', | |
184 | + Previous: 'Anterior', | |
185 | + Next: 'Siguiente', | |
186 | + 'Find and replace...': 'Buscar y reemplazar...', | |
187 | + 'Could not find the specified string.': 'No se encuentra la cadena de texto especificada', | |
188 | + 'Match case': 'Coincidencia exacta', | |
189 | + 'Find whole words only': 'Solo palabras completas', | |
190 | + 'Spell check': 'Revisar ortograf\u00eda', | |
191 | + Ignore: 'Ignorar', | |
192 | + 'Ignore all': 'Ignorar todos', | |
193 | + Finish: 'Finalizar', | |
194 | + 'Add to Dictionary': 'A\u00f1adir al Diccionario', | |
195 | + 'Insert table': 'Insertar tabla', | |
196 | + 'Table properties': 'Propiedades de la tabla', | |
197 | + 'Delete table': 'Eliminar tabla', | |
198 | + Cell: 'Celda', | |
199 | + Row: 'Fila', | |
200 | + Column: 'Columna', | |
201 | + 'Cell properties': 'Propiedades de la celda', | |
202 | + 'Merge cells': 'Combinar celdas', | |
203 | + 'Split cell': 'Dividir celdas', | |
204 | + 'Insert row before': 'Insertar fila antes', | |
205 | + 'Insert row after': 'Insertar fila despu\u00e9s ', | |
206 | + 'Delete row': 'Eliminar fila', | |
207 | + 'Row properties': 'Propiedades de la fila', | |
208 | + 'Cut row': 'Cortar fila', | |
209 | + 'Copy row': 'Copiar fila', | |
210 | + 'Paste row before': 'Pegar la fila antes', | |
211 | + 'Paste row after': 'Pegar la fila despu\u00e9s', | |
212 | + 'Insert column before': 'Insertar columna antes', | |
213 | + 'Insert column after': 'Insertar columna despu\u00e9s', | |
214 | + 'Delete column': 'Eliminar columna', | |
215 | + Cols: 'Columnas', | |
216 | + Rows: 'Filas', | |
217 | + Width: 'Ancho', | |
218 | + Height: 'Alto', | |
219 | + 'Cell spacing': 'Espacio entre celdas', | |
220 | + 'Cell padding': 'Relleno de celda', | |
221 | + 'Show caption': 'Mostrar t\u00edtulo', | |
222 | + Left: 'Izquierda', | |
223 | + Center: 'Centrado', | |
224 | + Right: 'Derecha', | |
225 | + 'Cell type': 'Tipo de celda', | |
226 | + Scope: '\u00c1mbito', | |
227 | + Alignment: 'Alineaci\u00f3n', | |
228 | + 'H Align': 'Alineamiento Horizontal', | |
229 | + 'V Align': 'Alineamiento Vertical', | |
230 | + Top: 'Arriba', | |
231 | + Middle: 'Centro', | |
232 | + Bottom: 'Abajo', | |
233 | + 'Header cell': 'Celda de la cebecera', | |
234 | + 'Row group': 'Grupo de filas', | |
235 | + 'Column group': 'Grupo de columnas', | |
236 | + 'Row type': 'Tipo de fila', | |
237 | + Header: 'Cabecera', | |
238 | + Body: 'Cuerpo', | |
239 | + Footer: 'Pie de p\u00e1gina', | |
240 | + 'Border color': 'Color del borde', | |
241 | + 'Insert template...': 'Insertar plantilla...', | |
242 | + Templates: 'Plantillas', | |
243 | + Template: 'Plantilla', | |
244 | + 'Text color': 'Color del texto', | |
245 | + 'Background color': 'Color de fondo', | |
246 | + 'Custom...': 'Personalizar...', | |
247 | + 'Custom color': 'Color personalizado', | |
248 | + 'No color': 'Sin color', | |
249 | + 'Remove color': 'Quitar color', | |
250 | + 'Table of Contents': 'Tabla de contenidos', | |
251 | + 'Show blocks': 'Mostrar bloques', | |
252 | + 'Show invisible characters': 'Mostrar caracteres invisibles', | |
253 | + 'Word count': 'Contar palabras', | |
254 | + Count: 'Recuento', | |
255 | + Document: 'Documento', | |
256 | + Selection: 'Selecci\u00f3n', | |
257 | + Words: 'Palabras', | |
258 | + 'Words: {0}': 'Palabras: {0}', | |
259 | + '{0} words': '{0} palabras', | |
260 | + File: 'Archivo', | |
261 | + Edit: 'Editar', | |
262 | + Insert: 'Insertar', | |
263 | + View: 'Ver', | |
264 | + Format: 'Formato', | |
265 | + Table: 'Tabla', | |
266 | + Tools: 'Herramientas', | |
267 | + 'Powered by {0}': 'Desarrollado por {0}', | |
268 | + 'Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help': '\u00c1rea de texto enriquecido. Pulse ALT-F9 para el menu. Pulse ALT-F10 para la barra de herramientas. Pulse ALT-0 para ayuda', | |
269 | + 'Image title': 'Titulo de imagen', | |
270 | + 'Border width': 'Ancho de borde', | |
271 | + 'Border style': 'Estilo de borde', | |
272 | + Error: 'Error', | |
273 | + Warn: 'Advertencia', | |
274 | + Valid: 'V\u00e1lido', | |
275 | + 'To open the popup, press Shift+Enter': 'Para abrir el elemento emergente, pulse May\u00fas+Intro', | |
276 | + 'Rich Text Area. Press ALT-0 for help.': '\u00c1rea de texto enriquecido. Pulse ALT-0 para abrir la ayuda.', | |
277 | + 'System Font': 'Fuente de sistema', | |
278 | + 'Failed to upload image: {0}': 'Fallo al cargar imagen: {0}', | |
279 | + 'Failed to load plugin: {0} from url {1}': 'Fallo al cargar complemento: {0} desde URL {1}', | |
280 | + 'Failed to load plugin url: {0}': 'Fallo al cargar URL del complemento: {0}', | |
281 | + 'Failed to initialize plugin: {0}': 'Fallo al iniciar el complemento: {0}', | |
282 | + example: 'ejemplo', | |
283 | + Search: 'Buscar', | |
284 | + All: 'Todo', | |
285 | + Currency: 'Divisa', | |
286 | + Text: 'Texto', | |
287 | + Quotations: 'Comillas', | |
288 | + Mathematical: 'S\u00edmbolo matem\u00e1tico', | |
289 | + 'Extended Latin': 'Latino extendido A', | |
290 | + Symbols: 'S\u00edmbolos', | |
291 | + Arrows: 'Flechas', | |
292 | + 'User Defined': 'Definido por el usuario', | |
293 | + 'dollar sign': 'signo de d\u00f3lar', | |
294 | + 'currency sign': 'signo de divisa', | |
295 | + 'euro-currency sign': 'signo de euro', | |
296 | + 'colon sign': 'signo de dos puntos', | |
297 | + 'cruzeiro sign': 'signo de cruceiro', | |
298 | + 'french franc sign': 'signo de franco franc\u00e9s', | |
299 | + 'lira sign': 'signo de lira', | |
300 | + 'mill sign': 'signo de mill', | |
301 | + 'naira sign': 'signo de naira', | |
302 | + 'peseta sign': 'signo de peseta', | |
303 | + 'rupee sign': 'signo de rupia', | |
304 | + 'won sign': 'signo de won', | |
305 | + 'new sheqel sign': 'signo de nuevo s\u00e9quel', | |
306 | + 'dong sign': 'signo de dong', | |
307 | + 'kip sign': 'signo de kip', | |
308 | + 'tugrik sign': 'signo de tugrik', | |
309 | + 'drachma sign': 'signo de dracma', | |
310 | + 'german penny symbol': 'signo de penique alem\u00e1n', | |
311 | + 'peso sign': 'signo de peso', | |
312 | + 'guarani sign': 'signo de guaran\u00ed', | |
313 | + 'austral sign': 'signo de austral', | |
314 | + 'hryvnia sign': 'signo de grivna', | |
315 | + 'cedi sign': 'signo de cedi', | |
316 | + 'livre tournois sign': 'signo de libra tornesa', | |
317 | + 'spesmilo sign': 'signo de spesmilo', | |
318 | + 'tenge sign': 'signo de tenge', | |
319 | + 'indian rupee sign': 'signo de rupia india', | |
320 | + 'turkish lira sign': 'signo de lira turca', | |
321 | + 'nordic mark sign': 'signo de marco n\u00f3rdico', | |
322 | + 'manat sign': 'signo de manat', | |
323 | + 'ruble sign': 'signo de rublo', | |
324 | + 'yen character': 'car\u00e1cter de yen', | |
325 | + 'yuan character': 'car\u00e1cter de yuan', | |
326 | + 'yuan character, in hong kong and taiwan': 'car\u00e1cter de yuan en Hong Kong y Taiw\u00e1n', | |
327 | + 'yen\/yuan character variant one': 'Variante uno de car\u00e1cter de yen\/yuan', | |
328 | + 'Loading emoticons...': 'Cargando emoticonos...', | |
329 | + 'Could not load emoticons': 'No se han podido cargar los emoticonos', | |
330 | + People: 'Personas', | |
331 | + 'Animals and Nature': 'Animales y naturaleza', | |
332 | + 'Food and Drink': 'Comida y bebida', | |
333 | + Activity: 'Actividad', | |
334 | + 'Travel and Places': 'Viajes y lugares', | |
335 | + Objects: 'Objetos', | |
336 | + Flags: 'Banderas', | |
337 | + Characters: 'Caracteres', | |
338 | + 'Characters (no spaces)': 'Caracteres (sin espacios)', | |
339 | + '{0} characters': '{0} caracteres', | |
340 | + 'Error: Form submit field collision.': 'Error: Colisi\u00f3n de campo al enviar formulario.', | |
341 | + 'Error: No form element found.': 'Error: No se encuentra ning\u00fan elemento de formulario.', | |
342 | + Update: 'Actualizar', | |
343 | + 'Color swatch': 'Muestrario de colores', | |
344 | + Turquoise: 'Turquesa', | |
345 | + Green: 'Verde', | |
346 | + Blue: 'Azul', | |
347 | + Purple: 'P\u00farpura', | |
348 | + 'Navy Blue': 'Azul marino', | |
349 | + 'Dark Turquoise': 'Turquesa oscuro', | |
350 | + 'Dark Green': 'Verde oscuro', | |
351 | + 'Medium Blue': 'Azul medio', | |
352 | + 'Medium Purple': 'P\u00farpura medio', | |
353 | + 'Midnight Blue': 'Azul medio', | |
354 | + Yellow: 'Amarillo', | |
355 | + Orange: 'Naranja', | |
356 | + Red: 'Rojo', | |
357 | + 'Light Gray': 'Gris claro', | |
358 | + Gray: 'Gris', | |
359 | + 'Dark Yellow': 'Amarillo oscuro', | |
360 | + 'Dark Orange': 'Naranja oscuro', | |
361 | + 'Dark Red': 'Rojo oscuro', | |
362 | + 'Medium Gray': 'Gris medio', | |
363 | + 'Dark Gray': 'Gris oscuro', | |
364 | + 'Light Green': 'Verde claro', | |
365 | + 'Light Yellow': 'Amarillo claro', | |
366 | + 'Light Red': 'Rojo claro', | |
367 | + 'Light Purple': 'Morado claro', | |
368 | + 'Light Blue': 'Azul claro', | |
369 | + 'Dark Purple': 'Morado oscuro', | |
370 | + 'Dark Blue': 'Azul oscuro', | |
371 | + Black: 'Negro', | |
372 | + White: 'Blanco', | |
373 | + 'Switch to or from fullscreen mode': 'Activar o desactivar modo pantalla completa', | |
374 | + 'Open help dialog': 'Abrir di\u00e1logo de ayuda', | |
375 | + history: 'historial', | |
376 | + styles: 'estilos', | |
377 | + formatting: 'formato', | |
378 | + alignment: 'alineaci\u00f3n', | |
379 | + indentation: 'sangr\u00eda', | |
380 | + 'permanent pen': 'bol\u00edgrafo permanente', | |
381 | + comments: 'comentarios', | |
382 | + 'Format Painter': 'Copiar formato', | |
383 | + 'Insert\/edit iframe': 'Insertar\/editar iframe', | |
384 | + Capitalization: 'Uso de may\u00fasculas', | |
385 | + lowercase: 'min\u00fasculas', | |
386 | + UPPERCASE: 'MAY\u00daSCULAS', | |
387 | + 'Title Case': 'Tipo T\u00edtulo', | |
388 | + 'Permanent Pen Properties': 'Propiedades del bol\u00edgrafo permanente', | |
389 | + 'Permanent pen properties...': 'Propiedades del bol\u00edgrafo permanente...', | |
390 | + Font: 'Fuente', | |
391 | + Size: 'Tama\u00f1o', | |
392 | + 'More...': 'M\u00e1s...', | |
393 | + 'Spellcheck Language': 'Corrector', | |
394 | + 'Select...': 'Seleccionar...', | |
395 | + Preferences: 'Preferencias', | |
396 | + Yes: 'S\u00ed', | |
397 | + No: 'No', | |
398 | + 'Keyboard Navigation': 'Navegaci\u00f3n con el teclado', | |
399 | + Version: 'Versi\u00f3n', | |
400 | + Anchor: 'Ancla', | |
401 | + 'Special character': 'Car\u00e1cter especial', | |
402 | + 'Code sample': 'Ejemplo de c\u00f3digo', | |
403 | + Color: 'Color', | |
404 | + Emoticons: 'Emoticonos', | |
405 | + 'Document properties': 'Propiedades del documento', | |
406 | + Image: 'Imagen', | |
407 | + 'Insert link': 'Insertar enlace', | |
408 | + Target: 'Destino', | |
409 | + Link: 'Enlace', | |
410 | + Poster: 'Miniatura', | |
411 | + Media: 'Media', | |
412 | + Print: 'Imprimir', | |
413 | + Prev: 'Anterior', | |
414 | + 'Find and replace': 'Buscar y reemplazar', | |
415 | + 'Whole words': 'Palabras completas', | |
416 | + Spellcheck: 'Corrector ortogr\u00e1fico', | |
417 | + Caption: 'Subt\u00edtulo', | |
418 | + 'Insert template': 'Insertar plantilla' | |
419 | +}) | |
... | ... |
src/components/Application/src/AppLocalePicker.vue
src/components/Application/src/search/AppSearchFooter.vue
src/components/Application/src/search/AppSearchKeyItem.vue
... | ... | @@ -5,7 +5,7 @@ |
5 | 5 | </template> |
6 | 6 | <script lang="ts"> |
7 | 7 | import { defineComponent } from 'vue'; |
8 | - import Icon from '/@/components/Icon'; | |
8 | + import { Icon } from '/@/components/Icon'; | |
9 | 9 | import { propTypes } from '/@/utils/propTypes'; |
10 | 10 | |
11 | 11 | export default defineComponent({ |
... | ... |
src/components/Table/src/BasicTable.vue
... | ... | @@ -35,7 +35,7 @@ |
35 | 35 | <script lang="ts"> |
36 | 36 | import type { BasicTableProps, TableActionType, SizeType } from './types/table'; |
37 | 37 | |
38 | - import { defineComponent, ref, computed, unref } from 'vue'; | |
38 | + import { defineComponent, ref, computed, unref, toRaw } from 'vue'; | |
39 | 39 | import { Table } from 'ant-design-vue'; |
40 | 40 | import { BasicForm, useForm } from '/@/components/Form/index'; |
41 | 41 | import expandIcon from './components/ExpandIcon'; |
... | ... | @@ -197,9 +197,9 @@ |
197 | 197 | tableLayout: 'fixed', |
198 | 198 | rowSelection: unref(getRowSelectionRef), |
199 | 199 | rowKey: unref(getRowKey), |
200 | - columns: unref(getViewColumns), | |
201 | - pagination: unref(getPaginationInfo), | |
202 | - dataSource: unref(getDataSourceRef), | |
200 | + columns: toRaw(unref(getViewColumns)), | |
201 | + pagination: toRaw(unref(getPaginationInfo)), | |
202 | + dataSource: toRaw(unref(getDataSourceRef)), | |
203 | 203 | footer: unref(getFooterProps), |
204 | 204 | ...unref(getExpandOption), |
205 | 205 | }; |
... | ... |
src/main.ts
stylelint.config.js
... | ... | @@ -30,6 +30,24 @@ module.exports = { |
30 | 30 | }, |
31 | 31 | ], |
32 | 32 | 'unit-no-unknown': [true, { ignoreUnits: ['rpx'] }], |
33 | + 'order/order': [ | |
34 | + [ | |
35 | + 'dollar-variables', | |
36 | + 'custom-properties', | |
37 | + 'at-rules', | |
38 | + 'declarations', | |
39 | + { | |
40 | + type: 'at-rule', | |
41 | + name: 'supports', | |
42 | + }, | |
43 | + { | |
44 | + type: 'at-rule', | |
45 | + name: 'media', | |
46 | + }, | |
47 | + 'rules', | |
48 | + ], | |
49 | + { severity: 'warning' }, | |
50 | + ], | |
33 | 51 | // Specify the alphabetical order of the attributes in the declaration block |
34 | 52 | 'order/properties-order': [ |
35 | 53 | 'position', |
... | ... |
vite.config.ts
... | ... | @@ -37,12 +37,9 @@ export default ({ command, mode }: ConfigEnv): UserConfig => { |
37 | 37 | port: VITE_PORT, |
38 | 38 | // Load proxy configuration from .env |
39 | 39 | proxy: createProxy(VITE_PROXY), |
40 | - hmr: { | |
41 | - overlay: true, | |
42 | - }, | |
43 | 40 | }, |
44 | - | |
45 | 41 | build: { |
42 | + target: 'es2015', | |
46 | 43 | outDir: OUTPUT_DIR, |
47 | 44 | terserOptions: { |
48 | 45 | compress: { |
... | ... |
yarn.lock
... | ... | @@ -292,7 +292,7 @@ |
292 | 292 | chalk "^2.0.0" |
293 | 293 | js-tokens "^4.0.0" |
294 | 294 | |
295 | -"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.12.0", "@babel/parser@^7.12.13", "@babel/parser@^7.13.0", "@babel/parser@^7.13.10": | |
295 | +"@babel/parser@^7.1.0", "@babel/parser@^7.12.0", "@babel/parser@^7.12.13", "@babel/parser@^7.13.0", "@babel/parser@^7.13.10": | |
296 | 296 | version "7.13.11" |
297 | 297 | resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.13.11.tgz#f93ebfc99d21c1772afbbaa153f47e7ce2f50b88" |
298 | 298 | integrity sha512-PhuoqeHoO9fc4ffMEVk4qb/w/s2iOSWohvbHxLtxui0eBg3Lg5gN1U8wp1V1u61hOWkPQJJyJzGH6Y+grwkq8Q== |
... | ... | @@ -1545,10 +1545,10 @@ |
1545 | 1545 | resolved "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f" |
1546 | 1546 | integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== |
1547 | 1547 | |
1548 | -"@types/fs-extra@^9.0.8": | |
1549 | - version "9.0.8" | |
1550 | - resolved "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-9.0.8.tgz#32c3c07ddf8caa5020f84b5f65a48470519f78ba" | |
1551 | - integrity sha512-bnlTVTwq03Na7DpWxFJ1dvnORob+Otb8xHyUqUWhqvz/Ksg8+JXPlR52oeMSZ37YEOa5PyccbgUNutiQdi13TA== | |
1548 | +"@types/fs-extra@^9.0.9": | |
1549 | + version "9.0.9" | |
1550 | + resolved "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-9.0.9.tgz#11ed43b3f3c6b3490f1ef9bd17f58da896e2d861" | |
1551 | + integrity sha512-5TqDycCl0oMzwzd1cIjSJWMKMvLCDVErle4ZTjU4EmHDURR/+yZghe6GDHMCpHtcVfq0x0gMoOM546/5TbYHrg== | |
1552 | 1552 | dependencies: |
1553 | 1553 | "@types/node" "*" |
1554 | 1554 | |
... | ... | @@ -1567,13 +1567,6 @@ |
1567 | 1567 | dependencies: |
1568 | 1568 | "@types/node" "*" |
1569 | 1569 | |
1570 | -"@types/http-proxy@^1.17.5": | |
1571 | - version "1.17.5" | |
1572 | - resolved "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.5.tgz#c203c5e6e9dc6820d27a40eb1e511c70a220423d" | |
1573 | - integrity sha512-GNkDE7bTv6Sf8JbV2GksknKOsk7OznNYHSdrtvPJXO0qJ9odZig6IZKUi5RFGi6d1bf6dgIAe4uXi3DBc7069Q== | |
1574 | - dependencies: | |
1575 | - "@types/node" "*" | |
1576 | - | |
1577 | 1570 | "@types/imagemin-gifsicle@^7.0.0": |
1578 | 1571 | version "7.0.0" |
1579 | 1572 | resolved "https://registry.npmjs.org/@types/imagemin-gifsicle/-/imagemin-gifsicle-7.0.0.tgz#80cfc5f68b2bbce57c6a3b97556ffa861a649132" |
... | ... | @@ -1698,7 +1691,7 @@ |
1698 | 1691 | resolved "https://registry.npmjs.org/@types/mockjs/-/mockjs-1.0.3.tgz#bd8ee3c7cbbd9a18788ab677b9e4f97c8d0bb0bf" |
1699 | 1692 | integrity sha512-OlwyyyoY81P8f7FU0zILUPxqQQ3/W+CwbqI6dWvOxaH8w948fAl1+hOG9C9ZgJcwzG+aloJcsastY4c4p91R1Q== |
1700 | 1693 | |
1701 | -"@types/node@*", "@types/node@^14.14.32", "@types/node@^14.14.35": | |
1694 | +"@types/node@*", "@types/node@^14.14.32": | |
1702 | 1695 | version "14.14.35" |
1703 | 1696 | resolved "https://registry.npmjs.org/@types/node/-/node-14.14.35.tgz#42c953a4e2b18ab931f72477e7012172f4ffa313" |
1704 | 1697 | integrity sha512-Lt+wj8NVPx0zUmUwumiVXapmaLUcAk3yPuHCFVXras9k5VT9TdhJqKqGVUQCD60OTMCl0qxJ57OiTL0Mic3Iag== |
... | ... | @@ -1799,13 +1792,6 @@ |
1799 | 1792 | dependencies: |
1800 | 1793 | "@types/yargs-parser" "*" |
1801 | 1794 | |
1802 | -"@types/yargs@^16.0.0": | |
1803 | - version "16.0.0" | |
1804 | - resolved "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.0.tgz#0e033b23452da5d61b6c44747612cb80ac528751" | |
1805 | - integrity sha512-2nN6AGeMwe8+O6nO9ytQfbMQOJy65oi1yK2y/9oReR08DaXSGtMsrLyCM1ooKqfICpCx4oITaR4LkOmdzz41Ww== | |
1806 | - dependencies: | |
1807 | - "@types/yargs-parser" "*" | |
1808 | - | |
1809 | 1795 | "@typescript-eslint/eslint-plugin@^4.16.1": |
1810 | 1796 | version "4.18.0" |
1811 | 1797 | resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.18.0.tgz#50fbce93211b5b690895d20ebec6fe8db48af1f6" |
... | ... | @@ -1904,7 +1890,7 @@ |
1904 | 1890 | resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.19.0.tgz#5181d5d2afd02e5b8f149ebb37ffc8bd7b07a568" |
1905 | 1891 | integrity sha512-A4iAlexVvd4IBsSTNxdvdepW0D4uR/fwxDrKUa+iEY9UWvGREu2ZyB8ylTENM1SH8F7bVC9ac9+si3LWNxcBuA== |
1906 | 1892 | |
1907 | -"@typescript-eslint/typescript-estree@4.18.0", "@typescript-eslint/typescript-estree@^4.8.2": | |
1893 | +"@typescript-eslint/typescript-estree@4.18.0": | |
1908 | 1894 | version "4.18.0" |
1909 | 1895 | resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.18.0.tgz#756d3e61da8c16ab99185532c44872f4cd5538cb" |
1910 | 1896 | integrity sha512-wt4xvF6vvJI7epz+rEqxmoNQ4ZADArGQO9gDU+cM0U5fdVv7N+IAuVoVAoZSOZxzGHBfvE3XQMLdy+scsqFfeg== |
... | ... | @@ -2076,18 +2062,18 @@ |
2076 | 2062 | resolved "https://registry.npmjs.org/@vue/shared/-/shared-3.0.7.tgz#96d52988efc07444c108c7c6803ba7cc93e40045" |
2077 | 2063 | integrity sha512-dn5FyfSc4ky424jH4FntiHno7Ss5yLkqKNmM/NXwANRnlkmqu74pnGetexDFVG5phMk9/FhwovUZCWGxsotVKg== |
2078 | 2064 | |
2079 | -"@vueuse/core@^4.5.0": | |
2080 | - version "4.5.0" | |
2081 | - resolved "https://registry.npmjs.org/@vueuse/core/-/core-4.5.0.tgz#7e19d0df721550ab27486dadf5b8f760370196da" | |
2082 | - integrity sha512-2em6NKrjJv2j2jjo73bm7pLKK7JQ8dTNrJ3Rh350xbHFqBXAECd+mbidm0gic20USDfpRMB7SwPY91qCSQDi2Q== | |
2065 | +"@vueuse/core@^4.6.0": | |
2066 | + version "4.6.0" | |
2067 | + resolved "https://registry.npmjs.org/@vueuse/core/-/core-4.6.0.tgz#4bb7cbcc01ac27943d0a278e1bf4e714970d2a6d" | |
2068 | + integrity sha512-SC9UK6eNESVSBkEzklNfmqxmIwAuohuW9FQvf7tvsz++XirbKblRPaXkohClS0ZmrtW+ylI5q3aOdBhADbbfEQ== | |
2083 | 2069 | dependencies: |
2084 | - "@vueuse/shared" "4.5.0" | |
2070 | + "@vueuse/shared" "4.6.0" | |
2085 | 2071 | vue-demi latest |
2086 | 2072 | |
2087 | -"@vueuse/shared@4.5.0": | |
2088 | - version "4.5.0" | |
2089 | - resolved "https://registry.npmjs.org/@vueuse/shared/-/shared-4.5.0.tgz#f679d6c962feb37a1c5057d70984ec45b67358fb" | |
2090 | - integrity sha512-D8cxNlGQ0tJXRirPwRJ2h8qacZiVMzagkrB4+vLAwJQXWaZh7j14Mr+I/BRyqj1aFilDGU75vclTkslnbOEy0g== | |
2073 | +"@vueuse/shared@4.6.0": | |
2074 | + version "4.6.0" | |
2075 | + resolved "https://registry.npmjs.org/@vueuse/shared/-/shared-4.6.0.tgz#4fb644ae0699d754506ad94c721845df00b0d6d0" | |
2076 | + integrity sha512-330uwtbWoIy53O0YwllckYDiK/f353aVrqeB7Z6/Sg5uFckNiKqX68g2wlDdvUnW/SIOC6cyxIZutZe/xxEFAw== | |
2091 | 2077 | dependencies: |
2092 | 2078 | vue-demi latest |
2093 | 2079 | |
... | ... | @@ -2301,11 +2287,6 @@ apexcharts@^3.26.0: |
2301 | 2287 | svg.resize.js "^1.4.3" |
2302 | 2288 | svg.select.js "^3.0.1" |
2303 | 2289 | |
2304 | -app-module-path@^2.2.0: | |
2305 | - version "2.2.0" | |
2306 | - resolved "https://registry.npmjs.org/app-module-path/-/app-module-path-2.2.0.tgz#641aa55dfb7d6a6f0a8141c4b9c0aa50b6c24dd5" | |
2307 | - integrity sha1-ZBqlXft9am8KgUHEucCqULbCTdU= | |
2308 | - | |
2309 | 2290 | arch@^2.1.0: |
2310 | 2291 | version "2.2.0" |
2311 | 2292 | resolved "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz#1bc47818f305764f23ab3306b0bfc086c5a29d11" |
... | ... | @@ -2402,11 +2383,6 @@ assign-symbols@^1.0.0: |
2402 | 2383 | resolved "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" |
2403 | 2384 | integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= |
2404 | 2385 | |
2405 | -ast-module-types@^2.3.2, ast-module-types@^2.4.0, ast-module-types@^2.7.0, ast-module-types@^2.7.1: | |
2406 | - version "2.7.1" | |
2407 | - resolved "https://registry.npmjs.org/ast-module-types/-/ast-module-types-2.7.1.tgz#3f7989ef8dfa1fdb82dfe0ab02bdfc7c77a57dd3" | |
2408 | - integrity sha512-Rnnx/4Dus6fn7fTqdeLEAn5vUll5w7/vts0RN608yFa6si/rDOUonlIIiwugHBFWjylHjxm9owoSZn71KwG4gw== | |
2409 | - | |
2410 | 2386 | astral-regex@^2.0.0: |
2411 | 2387 | version "2.0.0" |
2412 | 2388 | resolved "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" |
... | ... | @@ -2690,15 +2666,6 @@ bl@^1.0.0: |
2690 | 2666 | readable-stream "^2.3.5" |
2691 | 2667 | safe-buffer "^5.1.1" |
2692 | 2668 | |
2693 | -bl@^4.1.0: | |
2694 | - version "4.1.0" | |
2695 | - resolved "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" | |
2696 | - integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== | |
2697 | - dependencies: | |
2698 | - buffer "^5.5.0" | |
2699 | - inherits "^2.0.4" | |
2700 | - readable-stream "^3.4.0" | |
2701 | - | |
2702 | 2669 | bluebird@^3.5.0, bluebird@^3.7.2: |
2703 | 2670 | version "3.7.2" |
2704 | 2671 | resolved "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" |
... | ... | @@ -2814,7 +2781,7 @@ buffer-from@1.x, buffer-from@^1.0.0, buffer-from@^1.1.1: |
2814 | 2781 | resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" |
2815 | 2782 | integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== |
2816 | 2783 | |
2817 | -buffer@^5.2.1, buffer@^5.4.3, buffer@^5.5.0: | |
2784 | +buffer@^5.2.1, buffer@^5.4.3: | |
2818 | 2785 | version "5.7.1" |
2819 | 2786 | resolved "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" |
2820 | 2787 | integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== |
... | ... | @@ -3115,11 +3082,6 @@ cli-cursor@^3.1.0: |
3115 | 3082 | dependencies: |
3116 | 3083 | restore-cursor "^3.1.0" |
3117 | 3084 | |
3118 | -cli-spinners@^2.5.0: | |
3119 | - version "2.6.0" | |
3120 | - resolved "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.0.tgz#36c7dc98fb6a9a76bd6238ec3f77e2425627e939" | |
3121 | - integrity sha512-t+4/y50K/+4xcCRosKkA7W4gTr1MySvLV0q+PxmG7FJ5g+66ChKurYjxBCjHggHH3HA5Hh9cy+lcUGWDqVH+4Q== | |
3122 | - | |
3123 | 3085 | cli-truncate@^2.1.0: |
3124 | 3086 | version "2.1.0" |
3125 | 3087 | resolved "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7" |
... | ... | @@ -3179,11 +3141,6 @@ clone-response@1.0.2: |
3179 | 3141 | dependencies: |
3180 | 3142 | mimic-response "^1.0.0" |
3181 | 3143 | |
3182 | -clone@^1.0.2: | |
3183 | - version "1.0.4" | |
3184 | - resolved "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" | |
3185 | - integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4= | |
3186 | - | |
3187 | 3144 | clone@^2.1.1: |
3188 | 3145 | version "2.1.2" |
3189 | 3146 | resolved "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f" |
... | ... | @@ -3270,7 +3227,7 @@ commander@*, commander@^7.1.0: |
3270 | 3227 | resolved "https://registry.npmjs.org/commander/-/commander-7.1.0.tgz#f2eaecf131f10e36e07d894698226e36ae0eb5ff" |
3271 | 3228 | integrity sha512-pRxBna3MJe6HKnBGsDyMv8ETbptw3axEdYHoqNh7gu5oDcew8fs0xnivZGm06Ogk8zGAJ9VX+OPEr2GXEQK4dg== |
3272 | 3229 | |
3273 | -commander@^2.16.0, commander@^2.20.0, commander@^2.20.3, commander@^2.8.1: | |
3230 | +commander@^2.20.0, commander@^2.8.1: | |
3274 | 3231 | version "2.20.3" |
3275 | 3232 | resolved "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" |
3276 | 3233 | integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== |
... | ... | @@ -3280,7 +3237,7 @@ commander@^4.0.0, commander@^4.1.1: |
3280 | 3237 | resolved "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" |
3281 | 3238 | integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== |
3282 | 3239 | |
3283 | -commander@^6.2.0, commander@^6.2.1: | |
3240 | +commander@^6.2.0: | |
3284 | 3241 | version "6.2.1" |
3285 | 3242 | resolved "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c" |
3286 | 3243 | integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA== |
... | ... | @@ -3320,11 +3277,6 @@ common-tags@^1.8.0: |
3320 | 3277 | resolved "https://registry.npmjs.org/common-tags/-/common-tags-1.8.0.tgz#8e3153e542d4a39e9b10554434afaaf98956a937" |
3321 | 3278 | integrity sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw== |
3322 | 3279 | |
3323 | -commondir@^1.0.1: | |
3324 | - version "1.0.1" | |
3325 | - resolved "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" | |
3326 | - integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= | |
3327 | - | |
3328 | 3280 | compare-func@^2.0.0: |
3329 | 3281 | version "2.0.0" |
3330 | 3282 | resolved "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz#fb65e75edbddfd2e568554e8b5b05fff7a51fcb3" |
... | ... | @@ -3874,13 +3826,6 @@ decode-uri-component@^0.2.0: |
3874 | 3826 | resolved "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" |
3875 | 3827 | integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= |
3876 | 3828 | |
3877 | -decomment@^0.9.3: | |
3878 | - version "0.9.4" | |
3879 | - resolved "https://registry.npmjs.org/decomment/-/decomment-0.9.4.tgz#fa40335bd90e3826d5c1984276e390525ff856d5" | |
3880 | - integrity sha512-8eNlhyI5cSU4UbBlrtagWpR03dqXcE5IR9zpe7PnO6UzReXDskucsD8usgrzUmQ6qJ3N82aws/p/mu/jqbURWw== | |
3881 | - dependencies: | |
3882 | - esprima "4.0.1" | |
3883 | - | |
3884 | 3829 | decompress-response@^3.2.0, decompress-response@^3.3.0: |
3885 | 3830 | version "3.3.0" |
3886 | 3831 | resolved "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" |
... | ... | @@ -3946,11 +3891,6 @@ dedent@0.7.0, dedent@^0.7.0: |
3946 | 3891 | resolved "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" |
3947 | 3892 | integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw= |
3948 | 3893 | |
3949 | -deep-extend@^0.6.0: | |
3950 | - version "0.6.0" | |
3951 | - resolved "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" | |
3952 | - integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== | |
3953 | - | |
3954 | 3894 | deep-is@^0.1.3, deep-is@~0.1.3: |
3955 | 3895 | version "0.1.3" |
3956 | 3896 | resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" |
... | ... | @@ -3961,13 +3901,6 @@ deepmerge@^4.2.2: |
3961 | 3901 | resolved "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" |
3962 | 3902 | integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== |
3963 | 3903 | |
3964 | -defaults@^1.0.3: | |
3965 | - version "1.0.3" | |
3966 | - resolved "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" | |
3967 | - integrity sha1-xlYFHpgX2f8I7YgUd/P+QBnz730= | |
3968 | - dependencies: | |
3969 | - clone "^1.0.2" | |
3970 | - | |
3971 | 3904 | define-properties@^1.1.3: |
3972 | 3905 | version "1.1.3" |
3973 | 3906 | resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" |
... | ... | @@ -4007,17 +3940,6 @@ depd@~1.1.2: |
4007 | 3940 | resolved "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" |
4008 | 3941 | integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= |
4009 | 3942 | |
4010 | -dependency-tree@^8.0.0: | |
4011 | - version "8.0.0" | |
4012 | - resolved "https://registry.npmjs.org/dependency-tree/-/dependency-tree-8.0.0.tgz#59d141bcb53ca59f54e7f7b94013820ddd49b7d7" | |
4013 | - integrity sha512-zagnV3jgizudEWY3FIFkGCrRr3+GukSMLlw1snIWAOL2beceC22hBXdeNjCnnfPZvbHIPB9DvacSCfD+IoOG3w== | |
4014 | - dependencies: | |
4015 | - commander "^2.20.3" | |
4016 | - debug "^4.3.1" | |
4017 | - filing-cabinet "^3.0.0" | |
4018 | - precinct "^7.0.0" | |
4019 | - typescript "^3.9.7" | |
4020 | - | |
4021 | 3943 | detect-file@^1.0.0: |
4022 | 3944 | version "1.0.0" |
4023 | 3945 | resolved "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7" |
... | ... | @@ -4033,93 +3955,6 @@ detect-newline@^3.0.0: |
4033 | 3955 | resolved "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" |
4034 | 3956 | integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== |
4035 | 3957 | |
4036 | -detective-amd@^3.0.1: | |
4037 | - version "3.1.0" | |
4038 | - resolved "https://registry.npmjs.org/detective-amd/-/detective-amd-3.1.0.tgz#92daee3214a0ca4522646cf333cac90a3fca6373" | |
4039 | - integrity sha512-G7wGWT6f0VErjUkE2utCm7IUshT7nBh7aBBH2VBOiY9Dqy2DMens5iiOvYCuhstoIxRKLrnOvVAz4/EyPIAjnw== | |
4040 | - dependencies: | |
4041 | - ast-module-types "^2.7.0" | |
4042 | - escodegen "^2.0.0" | |
4043 | - get-amd-module-type "^3.0.0" | |
4044 | - node-source-walk "^4.0.0" | |
4045 | - | |
4046 | -detective-cjs@^3.1.1: | |
4047 | - version "3.1.1" | |
4048 | - resolved "https://registry.npmjs.org/detective-cjs/-/detective-cjs-3.1.1.tgz#18da3e39a002d2098a1123d45ce1de1b0d9045a0" | |
4049 | - integrity sha512-JQtNTBgFY6h8uT6pgph5QpV3IyxDv+z3qPk/FZRDT9TlFfm5dnRtpH39WtQEr1khqsUxVqXzKjZHpdoQvQbllg== | |
4050 | - dependencies: | |
4051 | - ast-module-types "^2.4.0" | |
4052 | - node-source-walk "^4.0.0" | |
4053 | - | |
4054 | -detective-es6@^2.1.0, detective-es6@^2.2.0: | |
4055 | - version "2.2.0" | |
4056 | - resolved "https://registry.npmjs.org/detective-es6/-/detective-es6-2.2.0.tgz#8f2baba3f8cd90a5cfd748f5ac436f0158ed2585" | |
4057 | - integrity sha512-fSpNY0SLER7/sVgQZ1NxJPwmc9uCTzNgdkQDhAaj8NPYwr7Qji9QBcmbNvtMCnuuOGMuKn3O7jv0An+/WRWJZQ== | |
4058 | - dependencies: | |
4059 | - node-source-walk "^4.0.0" | |
4060 | - | |
4061 | -detective-less@^1.0.2: | |
4062 | - version "1.0.2" | |
4063 | - resolved "https://registry.npmjs.org/detective-less/-/detective-less-1.0.2.tgz#a68af9ca5f69d74b7d0aa190218b211d83b4f7e3" | |
4064 | - integrity sha512-Rps1xDkEEBSq3kLdsdnHZL1x2S4NGDcbrjmd4q+PykK5aJwDdP5MBgrJw1Xo+kyUHuv3JEzPqxr+Dj9ryeDRTA== | |
4065 | - dependencies: | |
4066 | - debug "^4.0.0" | |
4067 | - gonzales-pe "^4.2.3" | |
4068 | - node-source-walk "^4.0.0" | |
4069 | - | |
4070 | -detective-postcss@^4.0.0: | |
4071 | - version "4.0.0" | |
4072 | - resolved "https://registry.npmjs.org/detective-postcss/-/detective-postcss-4.0.0.tgz#24e69b465e5fefe7a6afd05f7e894e34595dbf51" | |
4073 | - integrity sha512-Fwc/g9VcrowODIAeKRWZfVA/EufxYL7XfuqJQFroBKGikKX83d2G7NFw6kDlSYGG3LNQIyVa+eWv1mqre+v4+A== | |
4074 | - dependencies: | |
4075 | - debug "^4.1.1" | |
4076 | - is-url "^1.2.4" | |
4077 | - postcss "^8.1.7" | |
4078 | - postcss-values-parser "^2.0.1" | |
4079 | - | |
4080 | -detective-sass@^3.0.1: | |
4081 | - version "3.0.1" | |
4082 | - resolved "https://registry.npmjs.org/detective-sass/-/detective-sass-3.0.1.tgz#496b819efd1f5c4dd3f0e19b43a8634bdd6927c4" | |
4083 | - integrity sha512-oSbrBozRjJ+QFF4WJFbjPQKeakoaY1GiR380NPqwdbWYd5wfl5cLWv0l6LsJVqrgWfFN1bjFqSeo32Nxza8Lbw== | |
4084 | - dependencies: | |
4085 | - debug "^4.1.1" | |
4086 | - gonzales-pe "^4.2.3" | |
4087 | - node-source-walk "^4.0.0" | |
4088 | - | |
4089 | -detective-scss@^2.0.1: | |
4090 | - version "2.0.1" | |
4091 | - resolved "https://registry.npmjs.org/detective-scss/-/detective-scss-2.0.1.tgz#06f8c21ae6dedad1fccc26d544892d968083eaf8" | |
4092 | - integrity sha512-VveyXW4WQE04s05KlJ8K0bG34jtHQVgTc9InspqoQxvnelj/rdgSAy7i2DXAazyQNFKlWSWbS+Ro2DWKFOKTPQ== | |
4093 | - dependencies: | |
4094 | - debug "^4.1.1" | |
4095 | - gonzales-pe "^4.2.3" | |
4096 | - node-source-walk "^4.0.0" | |
4097 | - | |
4098 | -detective-stylus@^1.0.0: | |
4099 | - version "1.0.0" | |
4100 | - resolved "https://registry.npmjs.org/detective-stylus/-/detective-stylus-1.0.0.tgz#50aee7db8babb990381f010c63fabba5b58e54cd" | |
4101 | - integrity sha1-UK7n24uruZA4HwEMY/q7pbWOVM0= | |
4102 | - | |
4103 | -detective-typescript@^6.0.0: | |
4104 | - version "6.0.0" | |
4105 | - resolved "https://registry.npmjs.org/detective-typescript/-/detective-typescript-6.0.0.tgz#394062118d7c7da53425647ca41e0081169aa2b3" | |
4106 | - integrity sha512-vTidcSDK3QostdbrH2Rwf9FhvrgJ4oIaVw5jbolgruTejexk6nNa9DShGpuS8CFVDb1IP86jct5BaZt1wSxpkA== | |
4107 | - dependencies: | |
4108 | - "@typescript-eslint/typescript-estree" "^4.8.2" | |
4109 | - ast-module-types "^2.7.1" | |
4110 | - node-source-walk "^4.2.0" | |
4111 | - typescript "^3.9.7" | |
4112 | - | |
4113 | -detective-typescript@^7.0.0: | |
4114 | - version "7.0.0" | |
4115 | - resolved "https://registry.npmjs.org/detective-typescript/-/detective-typescript-7.0.0.tgz#8c8917f2e51d9e4ee49821abf759ff512dd897f2" | |
4116 | - integrity sha512-y/Ev98AleGvl43YKTNcA2Q+lyFmsmCfTTNWy4cjEJxoLkbobcXtRS0Kvx06daCgr2GdtlwLfNzL553BkktfJoA== | |
4117 | - dependencies: | |
4118 | - "@typescript-eslint/typescript-estree" "^4.8.2" | |
4119 | - ast-module-types "^2.7.1" | |
4120 | - node-source-walk "^4.2.0" | |
4121 | - typescript "^3.9.7" | |
4122 | - | |
4123 | 3958 | diff-match-patch@^1.0.5: |
4124 | 3959 | version "1.0.5" |
4125 | 3960 | resolved "https://registry.npmjs.org/diff-match-patch/-/diff-match-patch-1.0.5.tgz#abb584d5f10cd1196dfc55aa03701592ae3f7b37" |
... | ... | @@ -4369,14 +4204,6 @@ end-of-stream@^1.0.0, end-of-stream@^1.1.0: |
4369 | 4204 | dependencies: |
4370 | 4205 | once "^1.4.0" |
4371 | 4206 | |
4372 | -enhanced-resolve@^5.3.2: | |
4373 | - version "5.7.0" | |
4374 | - resolved "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.7.0.tgz#525c5d856680fbd5052de453ac83e32049958b5c" | |
4375 | - integrity sha512-6njwt/NsZFUKhM6j9U8hzVyD4E4r0x7NQzhTCbcWOJ0IQjNSAoalWmb0AE51Wn+fwan5qVESWi7t2ToBxs9vrw== | |
4376 | - dependencies: | |
4377 | - graceful-fs "^4.2.4" | |
4378 | - tapable "^2.2.0" | |
4379 | - | |
4380 | 4207 | enquirer@^2.3.5, enquirer@^2.3.6: |
4381 | 4208 | version "2.3.6" |
4382 | 4209 | resolved "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" |
... | ... | @@ -4499,6 +4326,11 @@ eslint-config-prettier@^8.1.0: |
4499 | 4326 | resolved "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.1.0.tgz#4ef1eaf97afe5176e6a75ddfb57c335121abc5a6" |
4500 | 4327 | integrity sha512-oKMhGv3ihGbCIimCAjqkdzx2Q+jthoqnXSP+d86M9tptwugycmTFdVR4IpLgq2c4SHifbwO90z2fQ8/Aio73yw== |
4501 | 4328 | |
4329 | +eslint-define-config@^1.0.2: | |
4330 | + version "1.0.2" | |
4331 | + resolved "https://registry.npmjs.org/eslint-define-config/-/eslint-define-config-1.0.2.tgz#42775cfd2eedf0ed1b57d15a3f5ade45419fbb46" | |
4332 | + integrity sha512-TiSz3uwXdgvoO4kGcC+xqazY4bvHD95BK+zsu7+xTSpn4fnfTBcs14CoxE7VmlCqiodeuU5uNtGO00Aks5sEjQ== | |
4333 | + | |
4502 | 4334 | eslint-plugin-jest@^24.1.5: |
4503 | 4335 | version "24.3.2" |
4504 | 4336 | resolved "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-24.3.2.tgz#30a8b2dea6278d0da1d6fb9d6cd530aaf58050a1" |
... | ... | @@ -4617,7 +4449,7 @@ espree@^7.3.0, espree@^7.3.1: |
4617 | 4449 | acorn-jsx "^5.3.1" |
4618 | 4450 | eslint-visitor-keys "^1.3.0" |
4619 | 4451 | |
4620 | -esprima@4.0.1, esprima@^4.0.0, esprima@^4.0.1: | |
4452 | +esprima@^4.0.0, esprima@^4.0.1: | |
4621 | 4453 | version "4.0.1" |
4622 | 4454 | resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" |
4623 | 4455 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== |
... | ... | @@ -5020,25 +4852,6 @@ filenamify@^2.0.0: |
5020 | 4852 | strip-outer "^1.0.0" |
5021 | 4853 | trim-repeated "^1.0.0" |
5022 | 4854 | |
5023 | -filing-cabinet@^3.0.0: | |
5024 | - version "3.0.0" | |
5025 | - resolved "https://registry.npmjs.org/filing-cabinet/-/filing-cabinet-3.0.0.tgz#08f9ceec5134f4a662926dd45b8a26eca1b5f622" | |
5026 | - integrity sha512-o8Qac5qxZ1uVidR4Sd7ZQbbqObFZlqXU4xu1suAYg9PQPcQFNTzOmxQa/MehIDMgIvXHTb42mWPNV9l3eHBPSw== | |
5027 | - dependencies: | |
5028 | - app-module-path "^2.2.0" | |
5029 | - commander "^2.20.3" | |
5030 | - debug "^4.3.1" | |
5031 | - decomment "^0.9.3" | |
5032 | - enhanced-resolve "^5.3.2" | |
5033 | - is-relative-path "^1.0.2" | |
5034 | - module-definition "^3.3.1" | |
5035 | - module-lookup-amd "^7.0.0" | |
5036 | - resolve "^1.19.0" | |
5037 | - resolve-dependency-path "^2.0.0" | |
5038 | - sass-lookup "^3.0.0" | |
5039 | - stylus-lookup "^3.0.1" | |
5040 | - typescript "^3.9.7" | |
5041 | - | |
5042 | 4855 | fill-range@^4.0.0: |
5043 | 4856 | version "4.0.0" |
5044 | 4857 | resolved "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" |
... | ... | @@ -5150,11 +4963,6 @@ flatted@^3.1.0: |
5150 | 4963 | resolved "https://registry.npmjs.org/flatted/-/flatted-3.1.1.tgz#c4b489e80096d9df1dfc97c79871aea7c617c469" |
5151 | 4964 | integrity sha512-zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA== |
5152 | 4965 | |
5153 | -flatten@^1.0.2: | |
5154 | - version "1.0.3" | |
5155 | - resolved "https://registry.npmjs.org/flatten/-/flatten-1.0.3.tgz#c1283ac9f27b368abc1e36d1ff7b04501a30356b" | |
5156 | - integrity sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg== | |
5157 | - | |
5158 | 4966 | follow-redirects@^1.0.0, follow-redirects@^1.10.0: |
5159 | 4967 | version "1.13.3" |
5160 | 4968 | resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.3.tgz#e5598ad50174c1bc4e872301e82ac2cd97f90267" |
... | ... | @@ -5265,14 +5073,6 @@ gensync@^1.0.0-beta.2: |
5265 | 5073 | resolved "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" |
5266 | 5074 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== |
5267 | 5075 | |
5268 | -get-amd-module-type@^3.0.0: | |
5269 | - version "3.0.0" | |
5270 | - resolved "https://registry.npmjs.org/get-amd-module-type/-/get-amd-module-type-3.0.0.tgz#bb334662fa04427018c937774570de495845c288" | |
5271 | - integrity sha512-99Q7COuACPfVt18zH9N4VAMyb81S6TUgJm2NgV6ERtkh9VIkAaByZkW530wl3lLN5KTtSrK9jVLxYsoP5hQKsw== | |
5272 | - dependencies: | |
5273 | - ast-module-types "^2.3.2" | |
5274 | - node-source-walk "^4.0.0" | |
5275 | - | |
5276 | 5076 | get-caller-file@^2.0.1, get-caller-file@^2.0.5: |
5277 | 5077 | version "2.0.5" |
5278 | 5078 | resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" |
... | ... | @@ -5537,7 +5337,7 @@ globjoin@^0.1.4: |
5537 | 5337 | resolved "https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz#2f4494ac8919e3767c5cbb691e9f463324285d43" |
5538 | 5338 | integrity sha1-L0SUrIkZ43Z8XLtpHp9GMyQoXUM= |
5539 | 5339 | |
5540 | -gonzales-pe@^4.2.3, gonzales-pe@^4.3.0: | |
5340 | +gonzales-pe@^4.3.0: | |
5541 | 5341 | version "4.3.0" |
5542 | 5342 | resolved "https://registry.npmjs.org/gonzales-pe/-/gonzales-pe-4.3.0.tgz#fe9dec5f3c557eead09ff868c65826be54d067b3" |
5543 | 5343 | integrity sha512-otgSPpUmdWJ43VXyiNgEYE4luzHCL2pz4wQ0OnDluC6Eg4Ko3Vexy/SrSynglw/eR+OhkzmqFCZa/OFa/RgAOQ== |
... | ... | @@ -5592,13 +5392,6 @@ graceful-fs@^4.1.10, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, |
5592 | 5392 | resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee" |
5593 | 5393 | integrity sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ== |
5594 | 5394 | |
5595 | -graphviz@0.0.9: | |
5596 | - version "0.0.9" | |
5597 | - resolved "https://registry.npmjs.org/graphviz/-/graphviz-0.0.9.tgz#0bbf1df588c6a92259282da35323622528c4bbc4" | |
5598 | - integrity sha512-SmoY2pOtcikmMCqCSy2NO1YsRfu9OO0wpTlOYW++giGjfX1a6gax/m1Fo8IdUd0/3H15cTOfR1SMKwohj4LKsg== | |
5599 | - dependencies: | |
5600 | - temp "~0.4.0" | |
5601 | - | |
5602 | 5395 | growly@^1.3.0: |
5603 | 5396 | version "1.3.0" |
5604 | 5397 | resolved "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" |
... | ... | @@ -6021,7 +5814,7 @@ inflight@^1.0.4: |
6021 | 5814 | once "^1.3.0" |
6022 | 5815 | wrappy "1" |
6023 | 5816 | |
6024 | -inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: | |
5817 | +inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.3: | |
6025 | 5818 | version "2.0.4" |
6026 | 5819 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" |
6027 | 5820 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== |
... | ... | @@ -6031,7 +5824,7 @@ inherits@2.0.3: |
6031 | 5824 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" |
6032 | 5825 | integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= |
6033 | 5826 | |
6034 | -ini@^1.3.2, ini@^1.3.4, ini@^1.3.5, ini@~1.3.0: | |
5827 | +ini@^1.3.2, ini@^1.3.4, ini@^1.3.5: | |
6035 | 5828 | version "1.3.8" |
6036 | 5829 | resolved "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" |
6037 | 5830 | integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== |
... | ... | @@ -6284,11 +6077,6 @@ is-hexadecimal@^1.0.0: |
6284 | 6077 | resolved "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz#cc35c97588da4bd49a8eedd6bc4082d44dcb23a7" |
6285 | 6078 | integrity sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw== |
6286 | 6079 | |
6287 | -is-interactive@^1.0.0: | |
6288 | - version "1.0.0" | |
6289 | - resolved "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e" | |
6290 | - integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== | |
6291 | - | |
6292 | 6080 | is-jpg@^2.0.0: |
6293 | 6081 | version "2.0.0" |
6294 | 6082 | resolved "https://registry.npmjs.org/is-jpg/-/is-jpg-2.0.0.tgz#2e1997fa6e9166eaac0242daae443403e4ef1d97" |
... | ... | @@ -6396,11 +6184,6 @@ is-regexp@^2.0.0: |
6396 | 6184 | resolved "https://registry.npmjs.org/is-regexp/-/is-regexp-2.1.0.tgz#cd734a56864e23b956bf4e7c66c396a4c0b22c2d" |
6397 | 6185 | integrity sha512-OZ4IlER3zmRIoB9AqNhEggVxqIH4ofDns5nRrPS6yQxXE1TPCUpFznBfRQmQa8uC+pXqjMnukiJBxCisIxiLGA== |
6398 | 6186 | |
6399 | -is-relative-path@^1.0.2: | |
6400 | - version "1.0.2" | |
6401 | - resolved "https://registry.npmjs.org/is-relative-path/-/is-relative-path-1.0.2.tgz#091b46a0d67c1ed0fe85f1f8cfdde006bb251d46" | |
6402 | - integrity sha1-CRtGoNZ8HtD+hfH4z93gBrslHUY= | |
6403 | - | |
6404 | 6187 | is-retry-allowed@^1.0.0, is-retry-allowed@^1.1.0: |
6405 | 6188 | version "1.2.0" |
6406 | 6189 | resolved "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4" |
... | ... | @@ -6452,11 +6235,6 @@ is-unicode-supported@^0.1.0: |
6452 | 6235 | resolved "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" |
6453 | 6236 | integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== |
6454 | 6237 | |
6455 | -is-url@^1.2.4: | |
6456 | - version "1.2.4" | |
6457 | - resolved "https://registry.npmjs.org/is-url/-/is-url-1.2.4.tgz#04a4df46d28c4cff3d73d01ff06abeb318a1aa52" | |
6458 | - integrity sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww== | |
6459 | - | |
6460 | 6238 | is-utf8@^0.2.0, is-utf8@^0.2.1: |
6461 | 6239 | version "0.2.1" |
6462 | 6240 | resolved "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" |
... | ... | @@ -7323,7 +7101,7 @@ lodash@4.x, lodash@^4.17.12, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, |
7323 | 7101 | resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" |
7324 | 7102 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== |
7325 | 7103 | |
7326 | -log-symbols@^4.0.0, log-symbols@^4.1.0: | |
7104 | +log-symbols@^4.0.0: | |
7327 | 7105 | version "4.1.0" |
7328 | 7106 | resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" |
7329 | 7107 | integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== |
... | ... | @@ -7428,34 +7206,6 @@ lru-cache@^6.0.0: |
7428 | 7206 | dependencies: |
7429 | 7207 | yallist "^4.0.0" |
7430 | 7208 | |
7431 | -madge@^4.0.2: | |
7432 | - version "4.0.2" | |
7433 | - resolved "https://registry.npmjs.org/madge/-/madge-4.0.2.tgz#56a3aff8021a5844f8713e0789f6ee94095f2f41" | |
7434 | - integrity sha512-l5bnA2dvyk0azLKDbOTCI+wDZ6nB007PhvPdmiYlPmqwVi49JPbhQrH/t4u8E6Akp3gwji1GZuA+v/F5q6yoWQ== | |
7435 | - dependencies: | |
7436 | - chalk "^4.1.0" | |
7437 | - commander "^6.2.1" | |
7438 | - commondir "^1.0.1" | |
7439 | - debug "^4.0.1" | |
7440 | - dependency-tree "^8.0.0" | |
7441 | - detective-amd "^3.0.1" | |
7442 | - detective-cjs "^3.1.1" | |
7443 | - detective-es6 "^2.1.0" | |
7444 | - detective-less "^1.0.2" | |
7445 | - detective-postcss "^4.0.0" | |
7446 | - detective-sass "^3.0.1" | |
7447 | - detective-scss "^2.0.1" | |
7448 | - detective-stylus "^1.0.0" | |
7449 | - detective-typescript "^7.0.0" | |
7450 | - graphviz "0.0.9" | |
7451 | - ora "^5.1.0" | |
7452 | - pluralize "^8.0.0" | |
7453 | - precinct "^7.0.0" | |
7454 | - pretty-ms "^7.0.0" | |
7455 | - rc "^1.2.7" | |
7456 | - typescript "^3.9.5" | |
7457 | - walkdir "^0.4.1" | |
7458 | - | |
7459 | 7209 | magic-string@^0.25.0, magic-string@^0.25.7: |
7460 | 7210 | version "0.25.7" |
7461 | 7211 | resolved "https://registry.npmjs.org/magic-string/-/magic-string-0.25.7.tgz#3f497d6fd34c669c6798dcb821f2ef31f5445051" |
... | ... | @@ -7791,25 +7541,6 @@ modify-values@^1.0.0: |
7791 | 7541 | resolved "https://registry.npmjs.org/modify-values/-/modify-values-1.0.1.tgz#b3939fa605546474e3e3e3c63d64bd43b4ee6022" |
7792 | 7542 | integrity sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw== |
7793 | 7543 | |
7794 | -module-definition@^3.3.1: | |
7795 | - version "3.3.1" | |
7796 | - resolved "https://registry.npmjs.org/module-definition/-/module-definition-3.3.1.tgz#fedef71667713e36988b93d0626a4fe7b35aebfc" | |
7797 | - integrity sha512-kLidGPwQ2yq484nSD+D3JoJp4Etc0Ox9P0L34Pu/cU4X4HcG7k7p62XI5BBuvURWMRX3RPyuhOcBHbKus+UH4A== | |
7798 | - dependencies: | |
7799 | - ast-module-types "^2.7.1" | |
7800 | - node-source-walk "^4.0.0" | |
7801 | - | |
7802 | -module-lookup-amd@^7.0.0: | |
7803 | - version "7.0.1" | |
7804 | - resolved "https://registry.npmjs.org/module-lookup-amd/-/module-lookup-amd-7.0.1.tgz#d67c1a93f2ff8e38b8774b99a638e9a4395774b2" | |
7805 | - integrity sha512-w9mCNlj0S8qviuHzpakaLVc+/7q50jl9a/kmJ/n8bmXQZgDPkQHnPBb8MUOYh3WpAYkXuNc2c+khsozhIp/amQ== | |
7806 | - dependencies: | |
7807 | - commander "^2.8.1" | |
7808 | - debug "^4.1.0" | |
7809 | - glob "^7.1.6" | |
7810 | - requirejs "^2.3.5" | |
7811 | - requirejs-config-file "^4.0.0" | |
7812 | - | |
7813 | 7544 | moment@^2.27.0: |
7814 | 7545 | version "2.29.1" |
7815 | 7546 | resolved "https://registry.npmjs.org/moment/-/moment-2.29.1.tgz#b2be769fa31940be9eeea6469c075e35006fa3d3" |
... | ... | @@ -7965,13 +7696,6 @@ node-releases@^1.1.70: |
7965 | 7696 | resolved "https://registry.npmjs.org/node-releases/-/node-releases-1.1.71.tgz#cb1334b179896b1c89ecfdd4b725fb7bbdfc7dbb" |
7966 | 7697 | integrity sha512-zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg== |
7967 | 7698 | |
7968 | -node-source-walk@^4.0.0, node-source-walk@^4.2.0: | |
7969 | - version "4.2.0" | |
7970 | - resolved "https://registry.npmjs.org/node-source-walk/-/node-source-walk-4.2.0.tgz#c2efe731ea8ba9c03c562aa0a9d984e54f27bc2c" | |
7971 | - integrity sha512-hPs/QMe6zS94f5+jG3kk9E7TNm4P2SulrKiLWMzKszBfNZvL/V6wseHlTd7IvfW0NZWqPtK3+9yYNr+3USGteA== | |
7972 | - dependencies: | |
7973 | - "@babel/parser" "^7.0.0" | |
7974 | - | |
7975 | 7699 | normalize-package-data@^2.3.0, normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.5.0: |
7976 | 7700 | version "2.5.0" |
7977 | 7701 | resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" |
... | ... | @@ -8225,21 +7949,6 @@ optipng-bin@^7.0.0: |
8225 | 7949 | bin-wrapper "^4.0.0" |
8226 | 7950 | logalot "^2.0.0" |
8227 | 7951 | |
8228 | -ora@^5.1.0: | |
8229 | - version "5.4.0" | |
8230 | - resolved "https://registry.npmjs.org/ora/-/ora-5.4.0.tgz#42eda4855835b9cd14d33864c97a3c95a3f56bf4" | |
8231 | - integrity sha512-1StwyXQGoU6gdjYkyVcqOLnVlbKj+6yPNNOxJVgpt9t4eksKjiriiHuxktLYkgllwk+D6MbC4ihH84L1udRXPg== | |
8232 | - dependencies: | |
8233 | - bl "^4.1.0" | |
8234 | - chalk "^4.1.0" | |
8235 | - cli-cursor "^3.1.0" | |
8236 | - cli-spinners "^2.5.0" | |
8237 | - is-interactive "^1.0.0" | |
8238 | - is-unicode-supported "^0.1.0" | |
8239 | - log-symbols "^4.1.0" | |
8240 | - strip-ansi "^6.0.0" | |
8241 | - wcwidth "^1.0.1" | |
8242 | - | |
8243 | 7952 | os-filter-obj@^2.0.0: |
8244 | 7953 | version "2.0.0" |
8245 | 7954 | resolved "https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz#1c0b62d5f3a2442749a2d139e6dddee6e81d8d16" |
... | ... | @@ -8452,11 +8161,6 @@ parse-json@^5.0.0: |
8452 | 8161 | json-parse-even-better-errors "^2.3.0" |
8453 | 8162 | lines-and-columns "^1.1.6" |
8454 | 8163 | |
8455 | -parse-ms@^2.1.0: | |
8456 | - version "2.1.0" | |
8457 | - resolved "https://registry.npmjs.org/parse-ms/-/parse-ms-2.1.0.tgz#348565a753d4391fa524029956b172cb7753097d" | |
8458 | - integrity sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA== | |
8459 | - | |
8460 | 8164 | parse-node-version@^1.0.1: |
8461 | 8165 | version "1.0.1" |
8462 | 8166 | resolved "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz#e2b5dbede00e7fa9bc363607f53327e8b073189b" |
... | ... | @@ -8631,11 +8335,6 @@ please-upgrade-node@^3.2.0: |
8631 | 8335 | dependencies: |
8632 | 8336 | semver-compare "^1.0.0" |
8633 | 8337 | |
8634 | -pluralize@^8.0.0: | |
8635 | - version "8.0.0" | |
8636 | - resolved "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz#1a6fa16a38d12a1901e0320fa017051c539ce3b1" | |
8637 | - integrity sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA== | |
8638 | - | |
8639 | 8338 | pngjs@^3.3.0: |
8640 | 8339 | version "3.4.0" |
8641 | 8340 | resolved "https://registry.npmjs.org/pngjs/-/pngjs-3.4.0.tgz#99ca7d725965fb655814eaf65f38f12bbdbf555f" |
... | ... | @@ -8788,15 +8487,6 @@ postcss-value-parser@^4.1.0: |
8788 | 8487 | resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb" |
8789 | 8488 | integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ== |
8790 | 8489 | |
8791 | -postcss-values-parser@^2.0.1: | |
8792 | - version "2.0.1" | |
8793 | - resolved "https://registry.npmjs.org/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz#da8b472d901da1e205b47bdc98637b9e9e550e5f" | |
8794 | - integrity sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg== | |
8795 | - dependencies: | |
8796 | - flatten "^1.0.2" | |
8797 | - indexes-of "^1.0.1" | |
8798 | - uniq "^1.0.1" | |
8799 | - | |
8800 | 8490 | postcss@^5.2.17: |
8801 | 8491 | version "5.2.18" |
8802 | 8492 | resolved "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz#badfa1497d46244f6390f58b319830d9107853c5" |
... | ... | @@ -8816,7 +8506,7 @@ postcss@^7.0.0, postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.2 |
8816 | 8506 | source-map "^0.6.1" |
8817 | 8507 | supports-color "^6.1.0" |
8818 | 8508 | |
8819 | -postcss@^8.1.10, postcss@^8.1.7, postcss@^8.2.1, postcss@^8.2.8: | |
8509 | +postcss@^8.1.10, postcss@^8.2.1, postcss@^8.2.8: | |
8820 | 8510 | version "8.2.8" |
8821 | 8511 | resolved "https://registry.npmjs.org/postcss/-/postcss-8.2.8.tgz#0b90f9382efda424c4f0f69a2ead6f6830d08ece" |
8822 | 8512 | integrity sha512-1F0Xb2T21xET7oQV9eKuctbM9S7BC0fetoHCc4H13z0PT6haiRLP4T0ZY4XWh7iLP0usgqykT6p9B2RtOf4FPw== |
... | ... | @@ -8863,25 +8553,6 @@ posthtml@^0.9.2: |
8863 | 8553 | posthtml-parser "^0.2.0" |
8864 | 8554 | posthtml-render "^1.0.5" |
8865 | 8555 | |
8866 | -precinct@^7.0.0: | |
8867 | - version "7.1.0" | |
8868 | - resolved "https://registry.npmjs.org/precinct/-/precinct-7.1.0.tgz#a0311e0b59029647eaf57c2d30b8efa9c85d129a" | |
8869 | - integrity sha512-I1RkW5PX51/q6Xl39//D7x9NgaKNGHpR5DCNaoxP/b2+KbzzXDNhauJUMV17KSYkJA41CSpwYUPRtRoNxbshWA== | |
8870 | - dependencies: | |
8871 | - commander "^2.20.3" | |
8872 | - debug "^4.3.1" | |
8873 | - detective-amd "^3.0.1" | |
8874 | - detective-cjs "^3.1.1" | |
8875 | - detective-es6 "^2.2.0" | |
8876 | - detective-less "^1.0.2" | |
8877 | - detective-postcss "^4.0.0" | |
8878 | - detective-sass "^3.0.1" | |
8879 | - detective-scss "^2.0.1" | |
8880 | - detective-stylus "^1.0.0" | |
8881 | - detective-typescript "^6.0.0" | |
8882 | - module-definition "^3.3.1" | |
8883 | - node-source-walk "^4.2.0" | |
8884 | - | |
8885 | 8556 | prelude-ls@^1.2.1: |
8886 | 8557 | version "1.2.1" |
8887 | 8558 | resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" |
... | ... | @@ -8929,13 +8600,6 @@ pretty-format@^26.0.0, pretty-format@^26.6.2: |
8929 | 8600 | ansi-styles "^4.0.0" |
8930 | 8601 | react-is "^17.0.1" |
8931 | 8602 | |
8932 | -pretty-ms@^7.0.0: | |
8933 | - version "7.0.1" | |
8934 | - resolved "https://registry.npmjs.org/pretty-ms/-/pretty-ms-7.0.1.tgz#7d903eaab281f7d8e03c66f867e239dc32fb73e8" | |
8935 | - integrity sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q== | |
8936 | - dependencies: | |
8937 | - parse-ms "^2.1.0" | |
8938 | - | |
8939 | 8603 | pretty-quick@^3.1.0: |
8940 | 8604 | version "3.1.0" |
8941 | 8605 | resolved "https://registry.npmjs.org/pretty-quick/-/pretty-quick-3.1.0.tgz#cb172e9086deb57455dea7c7e8f136cd0a4aef6c" |
... | ... | @@ -9083,16 +8747,6 @@ raw-body@2.4.0: |
9083 | 8747 | iconv-lite "0.4.24" |
9084 | 8748 | unpipe "1.0.0" |
9085 | 8749 | |
9086 | -rc@^1.2.7: | |
9087 | - version "1.2.8" | |
9088 | - resolved "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" | |
9089 | - integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== | |
9090 | - dependencies: | |
9091 | - deep-extend "^0.6.0" | |
9092 | - ini "~1.3.0" | |
9093 | - minimist "^1.2.0" | |
9094 | - strip-json-comments "~2.0.1" | |
9095 | - | |
9096 | 8750 | react-is@^17.0.1: |
9097 | 8751 | version "17.0.1" |
9098 | 8752 | resolved "https://registry.npmjs.org/react-is/-/react-is-17.0.1.tgz#5b3531bd76a645a4c9fb6e693ed36419e3301339" |
... | ... | @@ -9151,7 +8805,7 @@ read-pkg@^5.2.0: |
9151 | 8805 | parse-json "^5.0.0" |
9152 | 8806 | type-fest "^0.6.0" |
9153 | 8807 | |
9154 | -readable-stream@3, readable-stream@^3.0.0, readable-stream@^3.1.1, readable-stream@^3.4.0: | |
8808 | +readable-stream@3, readable-stream@^3.0.0, readable-stream@^3.1.1: | |
9155 | 8809 | version "3.6.0" |
9156 | 8810 | resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" |
9157 | 8811 | integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== |
... | ... | @@ -9376,19 +9030,6 @@ require-main-filename@^2.0.0: |
9376 | 9030 | resolved "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" |
9377 | 9031 | integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== |
9378 | 9032 | |
9379 | -requirejs-config-file@^4.0.0: | |
9380 | - version "4.0.0" | |
9381 | - resolved "https://registry.npmjs.org/requirejs-config-file/-/requirejs-config-file-4.0.0.tgz#4244da5dd1f59874038cc1091d078d620abb6ebc" | |
9382 | - integrity sha512-jnIre8cbWOyvr8a5F2KuqBnY+SDA4NXr/hzEZJG79Mxm2WiFQz2dzhC8ibtPJS7zkmBEl1mxSwp5HhC1W4qpxw== | |
9383 | - dependencies: | |
9384 | - esprima "^4.0.0" | |
9385 | - stringify-object "^3.2.1" | |
9386 | - | |
9387 | -requirejs@^2.3.5: | |
9388 | - version "2.3.6" | |
9389 | - resolved "https://registry.npmjs.org/requirejs/-/requirejs-2.3.6.tgz#e5093d9601c2829251258c0b9445d4d19fa9e7c9" | |
9390 | - integrity sha512-ipEzlWQe6RK3jkzikgCupiTbTvm4S0/CAU5GlgptkN5SO6F3u0UD0K18wy6ErDqiCyP4J4YYe1HuAShvsxePLg== | |
9391 | - | |
9392 | 9033 | requires-port@^1.0.0: |
9393 | 9034 | version "1.0.0" |
9394 | 9035 | resolved "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" |
... | ... | @@ -9406,11 +9047,6 @@ resolve-cwd@^3.0.0: |
9406 | 9047 | dependencies: |
9407 | 9048 | resolve-from "^5.0.0" |
9408 | 9049 | |
9409 | -resolve-dependency-path@^2.0.0: | |
9410 | - version "2.0.0" | |
9411 | - resolved "https://registry.npmjs.org/resolve-dependency-path/-/resolve-dependency-path-2.0.0.tgz#11700e340717b865d216c66cabeb4a2a3c696736" | |
9412 | - integrity sha512-DIgu+0Dv+6v2XwRaNWnumKu7GPufBBOr5I1gRPJHkvghrfCGOooJODFvgFimX/KRxk9j0whD2MnKHzM1jYvk9w== | |
9413 | - | |
9414 | 9050 | resolve-dir@^1.0.0, resolve-dir@^1.0.1: |
9415 | 9051 | version "1.0.1" |
9416 | 9052 | resolved "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43" |
... | ... | @@ -9616,13 +9252,6 @@ sane@^4.0.3: |
9616 | 9252 | minimist "^1.1.1" |
9617 | 9253 | walker "~1.0.5" |
9618 | 9254 | |
9619 | -sass-lookup@^3.0.0: | |
9620 | - version "3.0.0" | |
9621 | - resolved "https://registry.npmjs.org/sass-lookup/-/sass-lookup-3.0.0.tgz#3b395fa40569738ce857bc258e04df2617c48cac" | |
9622 | - integrity sha512-TTsus8CfFRn1N44bvdEai1no6PqdmDiQUiqW5DlpmtT+tYnIt1tXtDIph5KA1efC+LmioJXSnCtUVpcK9gaKIg== | |
9623 | - dependencies: | |
9624 | - commander "^2.16.0" | |
9625 | - | |
9626 | 9255 | sax@^1.2.4, sax@~1.2.4: |
9627 | 9256 | version "1.2.4" |
9628 | 9257 | resolved "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" |
... | ... | @@ -10126,7 +9755,7 @@ string_decoder@~1.1.1: |
10126 | 9755 | dependencies: |
10127 | 9756 | safe-buffer "~5.1.0" |
10128 | 9757 | |
10129 | -stringify-object@^3.2.1, stringify-object@^3.3.0: | |
9758 | +stringify-object@^3.3.0: | |
10130 | 9759 | version "3.3.0" |
10131 | 9760 | resolved "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629" |
10132 | 9761 | integrity sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw== |
... | ... | @@ -10226,11 +9855,6 @@ strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: |
10226 | 9855 | resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" |
10227 | 9856 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== |
10228 | 9857 | |
10229 | -strip-json-comments@~2.0.1: | |
10230 | - version "2.0.1" | |
10231 | - resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" | |
10232 | - integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= | |
10233 | - | |
10234 | 9858 | strip-outer@^1.0.0: |
10235 | 9859 | version "1.0.1" |
10236 | 9860 | resolved "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz#b2fd2abf6604b9d1e6013057195df836b8a9d631" |
... | ... | @@ -10323,14 +9947,6 @@ stylelint@^13.12.0: |
10323 | 9947 | v8-compile-cache "^2.2.0" |
10324 | 9948 | write-file-atomic "^3.0.3" |
10325 | 9949 | |
10326 | -stylus-lookup@^3.0.1: | |
10327 | - version "3.0.2" | |
10328 | - resolved "https://registry.npmjs.org/stylus-lookup/-/stylus-lookup-3.0.2.tgz#c9eca3ff799691020f30b382260a67355fefdddd" | |
10329 | - integrity sha512-oEQGHSjg/AMaWlKe7gqsnYzan8DLcGIHe0dUaFkucZZ14z4zjENRlQMCHT4FNsiWnJf17YN9OvrCfCoi7VvOyg== | |
10330 | - dependencies: | |
10331 | - commander "^2.8.1" | |
10332 | - debug "^4.1.0" | |
10333 | - | |
10334 | 9950 | sucrase@^3.17.1: |
10335 | 9951 | version "3.17.1" |
10336 | 9952 | resolved "https://registry.npmjs.org/sucrase/-/sucrase-3.17.1.tgz#b5e35ca7d99db2cc82b3e942934c3746b41ff8e2" |
... | ... | @@ -10522,11 +10138,6 @@ table@^6.0.4, table@^6.0.7: |
10522 | 10138 | slice-ansi "^4.0.0" |
10523 | 10139 | string-width "^4.2.0" |
10524 | 10140 | |
10525 | -tapable@^2.2.0: | |
10526 | - version "2.2.0" | |
10527 | - resolved "https://registry.npmjs.org/tapable/-/tapable-2.2.0.tgz#5c373d281d9c672848213d0e037d1c4165ab426b" | |
10528 | - integrity sha512-FBk4IesMV1rBxX2tfiK8RAmogtWn53puLOQlvO8XuwlgxcYbP4mVPS9Ph4aeamSyyVjOl24aYWAuc8U5kCVwMw== | |
10529 | - | |
10530 | 10141 | tar-stream@^1.5.2: |
10531 | 10142 | version "1.6.2" |
10532 | 10143 | resolved "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz#8ea55dab37972253d9a9af90fdcd559ae435c555" |
... | ... | @@ -10550,11 +10161,6 @@ temp-dir@^2.0.0: |
10550 | 10161 | resolved "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz#bde92b05bdfeb1516e804c9c00ad45177f31321e" |
10551 | 10162 | integrity sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg== |
10552 | 10163 | |
10553 | -temp@~0.4.0: | |
10554 | - version "0.4.0" | |
10555 | - resolved "https://registry.npmjs.org/temp/-/temp-0.4.0.tgz#671ad63d57be0fe9d7294664b3fc400636678a60" | |
10556 | - integrity sha1-ZxrWPVe+D+nXKUZks/xABjZnimA= | |
10557 | - | |
10558 | 10164 | tempfile@^2.0.0: |
10559 | 10165 | version "2.0.0" |
10560 | 10166 | resolved "https://registry.npmjs.org/tempfile/-/tempfile-2.0.0.tgz#6b0446856a9b1114d1856ffcbe509cccb0977265" |
... | ... | @@ -10933,11 +10539,6 @@ typescript@4.2.3: |
10933 | 10539 | resolved "https://registry.npmjs.org/typescript/-/typescript-4.2.3.tgz#39062d8019912d43726298f09493d598048c1ce3" |
10934 | 10540 | integrity sha512-qOcYwxaByStAWrBf4x0fibwZvMRG+r4cQoTjbPtUlrWjBHbmCAww1i448U0GJ+3cNNEtebDteo/cHOR3xJ4wEw== |
10935 | 10541 | |
10936 | -typescript@^3.9.5, typescript@^3.9.7: | |
10937 | - version "3.9.9" | |
10938 | - resolved "https://registry.npmjs.org/typescript/-/typescript-3.9.9.tgz#e69905c54bc0681d0518bd4d587cc6f2d0b1a674" | |
10939 | - integrity sha512-kdMjTiekY+z/ubJCATUPlRDl39vXYiMV9iyeMuEuXZh2we6zz80uovNN2WlAxmmdE/Z/YQe+EbOEXB5RHEED3w== | |
10940 | - | |
10941 | 10542 | uglify-js@^3.1.4: |
10942 | 10543 | version "3.13.1" |
10943 | 10544 | resolved "https://registry.npmjs.org/uglify-js/-/uglify-js-3.13.1.tgz#2749d4b8b5b7d67460b4a418023ff73c3fefa60a" |
... | ... | @@ -11184,10 +10785,10 @@ validate-npm-package-license@^3.0.1: |
11184 | 10785 | spdx-correct "^3.0.0" |
11185 | 10786 | spdx-expression-parse "^3.0.0" |
11186 | 10787 | |
11187 | -vditor@^3.8.3: | |
11188 | - version "3.8.3" | |
11189 | - resolved "https://registry.npmjs.org/vditor/-/vditor-3.8.3.tgz#f649580e070b5c7f2b82b4034c572210afcc5162" | |
11190 | - integrity sha512-XRaQolQNqFQ3RjmGhYCvcdQTaGT1s+RraJMZqA79izne8xtcEtopj97WCm2+ARnN4aoma2u0iEimpTAgzOXHbw== | |
10788 | +vditor@^3.8.4: | |
10789 | + version "3.8.4" | |
10790 | + resolved "https://registry.npmjs.org/vditor/-/vditor-3.8.4.tgz#5b68e127de83f31f3df1d5d0d512e6b100e98b04" | |
10791 | + integrity sha512-tCAxS9gz2JWQW6w2L2gzCCkHXM+btTCI0qkhYGvWDidGmze23LvKmPvr9iwpBad/XhGw66iifD23R1VHEEJxhg== | |
11191 | 10792 | dependencies: |
11192 | 10793 | diff-match-patch "^1.0.5" |
11193 | 10794 | |
... | ... | @@ -11285,21 +10886,21 @@ vite-plugin-purge-icons@^0.7.0: |
11285 | 10886 | "@purge-icons/generated" "^0.7.0" |
11286 | 10887 | rollup-plugin-purge-icons "^0.7.0" |
11287 | 10888 | |
11288 | -vite-plugin-pwa@^0.6.2: | |
11289 | - version "0.6.2" | |
11290 | - resolved "https://registry.npmjs.org/vite-plugin-pwa/-/vite-plugin-pwa-0.6.2.tgz#da014b7c8860390dc481c2ef235457c7ffe286e1" | |
11291 | - integrity sha512-HkKSSjzgm/8YPp8qH7UxWKlxR3ZKLL7X3lwOSvT+M4GpkmcZmq6xtVIOmlO526e9wh4/31xPwyr1o0MfCzL6Xw== | |
10889 | +vite-plugin-pwa@^0.6.3: | |
10890 | + version "0.6.3" | |
10891 | + resolved "https://registry.npmjs.org/vite-plugin-pwa/-/vite-plugin-pwa-0.6.3.tgz#91c0481e1c7f89b9c4502c582b2d25ea73aac311" | |
10892 | + integrity sha512-wZxE2ZAKpwaig2JFOm6ama8p2iHBUZuHLEko1co7zDdnb6C/Epmih5aCIyHHvZKcFEaUxFogLQCnRDD41vd5cw== | |
11292 | 10893 | dependencies: |
11293 | 10894 | debug "^4.3.2" |
11294 | 10895 | fast-glob "^3.2.5" |
11295 | 10896 | pretty-bytes "^5.6.0" |
11296 | - workbox-build "^6.1.1" | |
11297 | - workbox-window "^6.1.1" | |
10897 | + workbox-build "^6.1.2" | |
10898 | + workbox-window "^6.1.2" | |
11298 | 10899 | |
11299 | -vite-plugin-style-import@^0.8.3: | |
11300 | - version "0.8.3" | |
11301 | - resolved "https://registry.npmjs.org/vite-plugin-style-import/-/vite-plugin-style-import-0.8.3.tgz#6c9120f76cba103497c4631fd942ac1d6baa2694" | |
11302 | - integrity sha512-CAb/c6ZKYBCT9+oMv2GpbcDKDv4gq7lL0q8deRW0aIQaRbx5L/MdZCIKtbJiifVzTUzPb5qwrWTcnBc12uMioQ== | |
10900 | +vite-plugin-style-import@^0.9.0: | |
10901 | + version "0.9.0" | |
10902 | + resolved "https://registry.npmjs.org/vite-plugin-style-import/-/vite-plugin-style-import-0.9.0.tgz#4adc4456374ba0e87b7a178b59dce6f9fa7f6cd9" | |
10903 | + integrity sha512-4Y8Px2t4IXnr6SqjPyAju3sELkV5UcwwoxkxsYkZOQRxHv2gtBUAsBuuQ8xTZNxbic4ODS+H/Z99UgtjNiDekw== | |
11303 | 10904 | dependencies: |
11304 | 10905 | "@rollup/pluginutils" "^4.1.0" |
11305 | 10906 | change-case "^4.1.2" |
... | ... | @@ -11441,11 +11042,6 @@ w3c-xmlserializer@^2.0.0: |
11441 | 11042 | dependencies: |
11442 | 11043 | xml-name-validator "^3.0.0" |
11443 | 11044 | |
11444 | -walkdir@^0.4.1: | |
11445 | - version "0.4.1" | |
11446 | - resolved "https://registry.npmjs.org/walkdir/-/walkdir-0.4.1.tgz#dc119f83f4421df52e3061e514228a2db20afa39" | |
11447 | - integrity sha512-3eBwRyEln6E1MSzcxcVpQIhRG8Q1jLvEqRmCZqS3dsfXEDR/AhOF4d+jHg1qvDCpYaVRZjENPQyrVxAkQqxPgQ== | |
11448 | - | |
11449 | 11045 | walker@^1.0.7, walker@~1.0.5: |
11450 | 11046 | version "1.0.7" |
11451 | 11047 | resolved "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" |
... | ... | @@ -11460,13 +11056,6 @@ warning@^4.0.0: |
11460 | 11056 | dependencies: |
11461 | 11057 | loose-envify "^1.0.0" |
11462 | 11058 | |
11463 | -wcwidth@^1.0.1: | |
11464 | - version "1.0.1" | |
11465 | - resolved "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" | |
11466 | - integrity sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g= | |
11467 | - dependencies: | |
11468 | - defaults "^1.0.3" | |
11469 | - | |
11470 | 11059 | webidl-conversions@^4.0.2: |
11471 | 11060 | version "4.0.2" |
11472 | 11061 | resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" |
... | ... | @@ -11543,9 +11132,9 @@ which@^2.0.1, which@^2.0.2: |
11543 | 11132 | isexe "^2.0.0" |
11544 | 11133 | |
11545 | 11134 | windicss@^2.5.4: |
11546 | - version "2.5.4" | |
11547 | - resolved "https://registry.npmjs.org/windicss/-/windicss-2.5.4.tgz#e89cd614cc4a7c2c13cc5af588642959de6746db" | |
11548 | - integrity sha512-K+w/TOxbY38bIjRyJVgQ29ndZ0xZsbpf4a7wClqyFDQdCTbuCnzChBMpO13BqLmksIaHRzL46TeBRpFyV6n5/A== | |
11135 | + version "2.5.5" | |
11136 | + resolved "https://registry.npmjs.org/windicss/-/windicss-2.5.5.tgz#691cc08e13dc9ee41293cd20cfdb6fed101e1d6a" | |
11137 | + integrity sha512-tKLYY9qQoFKoxitG2B8toa9QUPAjsBOKjmFrxhDi2i0eaVOFQh+YEPElBCa7N5ma03YVIW9HPVbgVU0Z4JxZ5g== | |
11549 | 11138 | |
11550 | 11139 | wmf@~1.0.1: |
11551 | 11140 | version "1.0.2" |
... | ... | @@ -11581,7 +11170,7 @@ workbox-broadcast-update@^6.1.2: |
11581 | 11170 | dependencies: |
11582 | 11171 | workbox-core "^6.1.2" |
11583 | 11172 | |
11584 | -workbox-build@^6.1.1: | |
11173 | +workbox-build@^6.1.2: | |
11585 | 11174 | version "6.1.2" |
11586 | 11175 | resolved "https://registry.npmjs.org/workbox-build/-/workbox-build-6.1.2.tgz#857445d4f795859203306f26d4e89dde143fdee2" |
11587 | 11176 | integrity sha512-Px9amQd46uJh37ZWoT2LIcXTgBEZAOB28otxqJRNS4jpUhtANHQG3yX6AhwPdcw6xTV5ufLXizBCkF8z/cox0A== |
... | ... | @@ -11715,7 +11304,7 @@ workbox-sw@^6.1.2: |
11715 | 11304 | resolved "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.1.2.tgz#0db44f0625ffb53c0e6e9a056a61dda57f066f45" |
11716 | 11305 | integrity sha512-daxYjELQlNmGLeQolz29vkiVKMcAzZrSv5MLPAghvid6sajpq9x+FfMGriWaZcpyGZVKStAf6XzUbvvm0sJ/HA== |
11717 | 11306 | |
11718 | -workbox-window@^6.1.1, workbox-window@^6.1.2: | |
11307 | +workbox-window@^6.1.2: | |
11719 | 11308 | version "6.1.2" |
11720 | 11309 | resolved "https://registry.npmjs.org/workbox-window/-/workbox-window-6.1.2.tgz#6db9a3b1eebf6470513d916852bfd1b1c918fe05" |
11721 | 11310 | integrity sha512-SXOAv56PWHzLhJcyQGPio1OXGzSza814lc2D42+go8CmeNIJDb03nzUi1FGMF4Tt1F7h5q8IYzq5bPQLTZ7IKQ== |
... | ... |