mirror of
https://github.com/element-plus/element-plus.git
synced 2025-04-12 16:40:36 +08:00
fix(theme-chalk): replace gulp-clean-css
with cssnano
(#16056)
* fix(theme-chalk): replace `gulp-clean-css` with `cssnano` closed #15686 * fix(theme-chalk): disable `colormin` to prevent color values changed * Update packages/theme-chalk/gulpfile.ts Co-authored-by: btea <2356281422@qq.com> * fix(theme-chalk): disable `minifyFontValues` to prevent font values changed --------- Co-authored-by: btea <2356281422@qq.com>
This commit is contained in:
parent
4165e12c17
commit
9f2434f94d
@ -1,17 +1,65 @@
|
||||
import path from 'path'
|
||||
import { Transform } from 'stream'
|
||||
import chalk from 'chalk'
|
||||
import { dest, parallel, series, src } from 'gulp'
|
||||
import { type TaskFunction, dest, parallel, series, src } from 'gulp'
|
||||
import gulpSass from 'gulp-sass'
|
||||
import dartSass from 'sass'
|
||||
import autoprefixer from 'gulp-autoprefixer'
|
||||
import cleanCSS from 'gulp-clean-css'
|
||||
import rename from 'gulp-rename'
|
||||
import consola from 'consola'
|
||||
import postcss from 'postcss'
|
||||
import cssnano from 'cssnano'
|
||||
import { epOutput } from '@element-plus/build-utils'
|
||||
import type Vinly from 'vinyl'
|
||||
|
||||
const distFolder = path.resolve(__dirname, 'dist')
|
||||
const distBundle = path.resolve(epOutput, 'theme-chalk')
|
||||
|
||||
/**
|
||||
* using `postcss` and `cssnano` to compress CSS
|
||||
* @returns
|
||||
*/
|
||||
function compressWithCssnano() {
|
||||
const processor = postcss([
|
||||
cssnano({
|
||||
preset: [
|
||||
'default',
|
||||
{
|
||||
// avoid color transform
|
||||
colormin: false,
|
||||
// avoid font transform
|
||||
minifyFontValues: false,
|
||||
},
|
||||
],
|
||||
}),
|
||||
])
|
||||
return new Transform({
|
||||
objectMode: true,
|
||||
transform(chunk, _encoding, callback) {
|
||||
const file = chunk as Vinly
|
||||
if (file.isNull()) {
|
||||
callback(null, file)
|
||||
return
|
||||
}
|
||||
if (file.isStream()) {
|
||||
callback(new Error('Streaming not supported'))
|
||||
return
|
||||
}
|
||||
const cssString = file.contents!.toString()
|
||||
processor.process(cssString, { from: file.path }).then((result) => {
|
||||
const name = path.basename(file.path)
|
||||
file.contents = Buffer.from(result.css)
|
||||
consola.success(
|
||||
`${chalk.cyan(name)}: ${chalk.yellow(
|
||||
cssString.length / 1000
|
||||
)} KB -> ${chalk.green(result.css.length / 1000)} KB`
|
||||
)
|
||||
callback(null, file)
|
||||
})
|
||||
},
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* compile theme-chalk scss & minify
|
||||
* not use sass.sync().on('error', sass.logError) to throw exception
|
||||
@ -23,15 +71,7 @@ function buildThemeChalk() {
|
||||
return src(path.resolve(__dirname, 'src/*.scss'))
|
||||
.pipe(sass.sync())
|
||||
.pipe(autoprefixer({ cascade: false }))
|
||||
.pipe(
|
||||
cleanCSS({}, (details) => {
|
||||
consola.success(
|
||||
`${chalk.cyan(details.name)}: ${chalk.yellow(
|
||||
details.stats.originalSize / 1000
|
||||
)} KB -> ${chalk.green(details.stats.minifiedSize / 1000)} KB`
|
||||
)
|
||||
})
|
||||
)
|
||||
.pipe(compressWithCssnano())
|
||||
.pipe(
|
||||
rename((path) => {
|
||||
if (!noElPrefixFile.test(path.basename)) {
|
||||
@ -51,15 +91,7 @@ function buildDarkCssVars() {
|
||||
return src(path.resolve(__dirname, 'src/dark/css-vars.scss'))
|
||||
.pipe(sass.sync())
|
||||
.pipe(autoprefixer({ cascade: false }))
|
||||
.pipe(
|
||||
cleanCSS({}, (details) => {
|
||||
consola.success(
|
||||
`${chalk.cyan(details.name)}: ${chalk.yellow(
|
||||
details.stats.originalSize / 1000
|
||||
)} KB -> ${chalk.green(details.stats.minifiedSize / 1000)} KB`
|
||||
)
|
||||
})
|
||||
)
|
||||
.pipe(compressWithCssnano())
|
||||
.pipe(dest(`${distFolder}/dark`))
|
||||
}
|
||||
|
||||
@ -80,7 +112,7 @@ export function copyThemeChalkSource() {
|
||||
)
|
||||
}
|
||||
|
||||
export const build = parallel(
|
||||
export const build: TaskFunction = parallel(
|
||||
copyThemeChalkSource,
|
||||
series(buildThemeChalk, buildDarkCssVars, copyThemeChalkBundle)
|
||||
)
|
||||
|
@ -30,13 +30,13 @@
|
||||
"@element-plus/build": "workspace:*",
|
||||
"@esbuild-kit/cjs-loader": "^2.2.1",
|
||||
"@types/gulp-autoprefixer": "^0.0.33",
|
||||
"@types/gulp-clean-css": "^4.3.0",
|
||||
"@types/gulp-rename": "^2.0.1",
|
||||
"@types/gulp-sass": "^5.0.0",
|
||||
"cssnano": "^6.0.5",
|
||||
"gulp-autoprefixer": "^8.0.0",
|
||||
"gulp-clean-css": "^4.3.0",
|
||||
"gulp-rename": "^2.0.0",
|
||||
"gulp-sass": "^5.1.0"
|
||||
"gulp-sass": "^5.1.0",
|
||||
"postcss": "^8.4.35"
|
||||
},
|
||||
"gitHead": "c69724230befa8fede0e6b9c37fb0b7e39fd7cdd"
|
||||
}
|
||||
|
623
pnpm-lock.yaml
generated
623
pnpm-lock.yaml
generated
@ -617,27 +617,27 @@ importers:
|
||||
'@types/gulp-autoprefixer':
|
||||
specifier: ^0.0.33
|
||||
version: 0.0.33
|
||||
'@types/gulp-clean-css':
|
||||
specifier: ^4.3.0
|
||||
version: 4.3.0
|
||||
'@types/gulp-rename':
|
||||
specifier: ^2.0.1
|
||||
version: 2.0.1
|
||||
'@types/gulp-sass':
|
||||
specifier: ^5.0.0
|
||||
version: 5.0.0
|
||||
cssnano:
|
||||
specifier: ^6.0.5
|
||||
version: 6.0.5(postcss@8.4.35)
|
||||
gulp-autoprefixer:
|
||||
specifier: ^8.0.0
|
||||
version: 8.0.0
|
||||
gulp-clean-css:
|
||||
specifier: ^4.3.0
|
||||
version: 4.3.0
|
||||
gulp-rename:
|
||||
specifier: ^2.0.0
|
||||
version: 2.0.0
|
||||
gulp-sass:
|
||||
specifier: ^5.1.0
|
||||
version: 5.1.0
|
||||
postcss:
|
||||
specifier: ^8.4.35
|
||||
version: 8.4.35
|
||||
|
||||
packages/utils:
|
||||
dependencies:
|
||||
@ -1105,7 +1105,6 @@ packages:
|
||||
/@babel/plugin-proposal-async-generator-functions@7.17.12(@babel/core@7.18.2):
|
||||
resolution: {integrity: sha512-RWVvqD1ooLKP6IqWTA5GyFVX2isGEgC5iFxKzfYOIy/QEFdxYyCybBDtIGjipHpb9bDWHzcqGqFakf+mVmBTdQ==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead.
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
@ -1120,7 +1119,6 @@ packages:
|
||||
/@babel/plugin-proposal-class-properties@7.17.12(@babel/core@7.18.2):
|
||||
resolution: {integrity: sha512-U0mI9q8pW5Q9EaTHFPwSVusPMV/DV9Mm8p7csqROFLtIE9rBF5piLqyrBGigftALrBcsBGu4m38JneAe7ZDLXw==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
@ -1134,7 +1132,6 @@ packages:
|
||||
/@babel/plugin-proposal-class-static-block@7.18.0(@babel/core@7.18.2):
|
||||
resolution: {integrity: sha512-t+8LsRMMDE74c6sV7KShIw13sqbqd58tlqNrsWoWBTIMw7SVQ0cZ905wLNS/FBCy/3PyooRHLFFlfrUNyyz5lA==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-static-block instead.
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.12.0
|
||||
dependencies:
|
||||
@ -1149,7 +1146,6 @@ packages:
|
||||
/@babel/plugin-proposal-dynamic-import@7.16.7(@babel/core@7.18.2):
|
||||
resolution: {integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead.
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
@ -1161,7 +1157,6 @@ packages:
|
||||
/@babel/plugin-proposal-export-namespace-from@7.17.12(@babel/core@7.18.2):
|
||||
resolution: {integrity: sha512-j7Ye5EWdwoXOpRmo5QmRyHPsDIe6+u70ZYZrd7uz+ebPYFKfRcLcNu3Ro0vOlJ5zuv8rU7xa+GttNiRzX56snQ==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-export-namespace-from instead.
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
@ -1173,7 +1168,6 @@ packages:
|
||||
/@babel/plugin-proposal-json-strings@7.17.12(@babel/core@7.18.2):
|
||||
resolution: {integrity: sha512-rKJ+rKBoXwLnIn7n6o6fulViHMrOThz99ybH+hKHcOZbnN14VuMnH9fo2eHE69C8pO4uX1Q7t2HYYIDmv8VYkg==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead.
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
@ -1185,7 +1179,6 @@ packages:
|
||||
/@babel/plugin-proposal-logical-assignment-operators@7.17.12(@babel/core@7.18.2):
|
||||
resolution: {integrity: sha512-EqFo2s1Z5yy+JeJu7SFfbIUtToJTVlC61/C7WLKDntSw4Sz6JNAIfL7zQ74VvirxpjB5kz/kIx0gCcb+5OEo2Q==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead.
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
@ -1197,7 +1190,6 @@ packages:
|
||||
/@babel/plugin-proposal-nullish-coalescing-operator@7.17.12(@babel/core@7.18.2):
|
||||
resolution: {integrity: sha512-ws/g3FSGVzv+VH86+QvgtuJL/kR67xaEIF2x0iPqdDfYW6ra6JF3lKVBkWynRLcNtIC1oCTfDRVxmm2mKzy+ag==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
@ -1209,7 +1201,6 @@ packages:
|
||||
/@babel/plugin-proposal-numeric-separator@7.16.7(@babel/core@7.18.2):
|
||||
resolution: {integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
@ -1221,7 +1212,6 @@ packages:
|
||||
/@babel/plugin-proposal-object-rest-spread@7.18.0(@babel/core@7.18.2):
|
||||
resolution: {integrity: sha512-nbTv371eTrFabDfHLElkn9oyf9VG+VKK6WMzhY2o4eHKaG19BToD9947zzGMO6I/Irstx9d8CwX6njPNIAR/yw==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
@ -1236,7 +1226,6 @@ packages:
|
||||
/@babel/plugin-proposal-optional-catch-binding@7.16.7(@babel/core@7.18.2):
|
||||
resolution: {integrity: sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead.
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
@ -1248,7 +1237,6 @@ packages:
|
||||
/@babel/plugin-proposal-optional-chaining@7.17.12(@babel/core@7.18.2):
|
||||
resolution: {integrity: sha512-7wigcOs/Z4YWlK7xxjkvaIw84vGhDv/P1dFGQap0nHkc8gFKY/r+hXc8Qzf5k1gY7CvGIcHqAnOagVKJJ1wVOQ==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
@ -1261,7 +1249,6 @@ packages:
|
||||
/@babel/plugin-proposal-private-methods@7.17.12(@babel/core@7.18.2):
|
||||
resolution: {integrity: sha512-SllXoxo19HmxhDWm3luPz+cPhtoTSKLJE9PXshsfrOzBqs60QP0r8OaJItrPhAj0d7mZMnNF0Y1UUggCDgMz1A==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead.
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
@ -1275,7 +1262,6 @@ packages:
|
||||
/@babel/plugin-proposal-private-property-in-object@7.17.12(@babel/core@7.18.2):
|
||||
resolution: {integrity: sha512-/6BtVi57CJfrtDNKfK5b66ydK2J5pXUKBKSPD2G1whamMuEnZWgoOIfO8Vf9F/DoD4izBLD/Au4NMQfruzzykg==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead.
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
@ -1291,7 +1277,6 @@ packages:
|
||||
/@babel/plugin-proposal-unicode-property-regex@7.17.12(@babel/core@7.18.2):
|
||||
resolution: {integrity: sha512-Wb9qLjXf3ZazqXA7IvI7ozqRIXIGPtSo+L5coFmEkhTQK18ao4UDDD0zdTGAarmbLj2urpRwrc6893cu5Bfh0A==}
|
||||
engines: {node: '>=4'}
|
||||
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead.
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
@ -3163,6 +3148,11 @@ packages:
|
||||
resolution: {integrity: sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==}
|
||||
dev: false
|
||||
|
||||
/@trysound/sax@0.2.0:
|
||||
resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
|
||||
engines: {node: '>=10.13.0'}
|
||||
dev: true
|
||||
|
||||
/@ts-morph/common@0.13.0:
|
||||
resolution: {integrity: sha512-fEJ6j7Cu8yiWjA4UmybOBH9Efgb/64ZTWuvCF4KysGu4xz8ettfyaqFt8WZ1btCxXsGZJjZ2/3svOF6rL+UFdQ==}
|
||||
dependencies:
|
||||
@ -3205,13 +3195,6 @@ packages:
|
||||
resolution: {integrity: sha512-/zPMqDkzSZ8t3VtxOa4KPq7uzzW978M9Tvh+j7GHKuo6k6GTLxPJ4J5gE5cjfJ26pnXst0N5Hax8Sr0T2Mi9zQ==}
|
||||
dev: true
|
||||
|
||||
/@types/clean-css@4.2.5:
|
||||
resolution: {integrity: sha512-NEzjkGGpbs9S9fgC4abuBvTpVwE3i+Acu9BBod3PUyjDVZcNsGx61b8r2PphR61QGPnn0JHVs5ey6/I4eTrkxw==}
|
||||
dependencies:
|
||||
'@types/node': 17.0.40
|
||||
source-map: 0.6.1
|
||||
dev: true
|
||||
|
||||
/@types/estree@0.0.39:
|
||||
resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==}
|
||||
|
||||
@ -3248,13 +3231,6 @@ packages:
|
||||
'@types/node': 17.0.40
|
||||
dev: true
|
||||
|
||||
/@types/gulp-clean-css@4.3.0:
|
||||
resolution: {integrity: sha512-aRV2BvZA+X/SdgONQW4OkIzInYhvSqeUCiLfwc3VCD0/pxQT9xAadwHmtYGF2kc66cD4uSPmE+s4JYFvhHLaUA==}
|
||||
dependencies:
|
||||
'@types/clean-css': 4.2.5
|
||||
'@types/node': 17.0.40
|
||||
dev: true
|
||||
|
||||
/@types/gulp-rename@2.0.1:
|
||||
resolution: {integrity: sha512-9ZjeS2RHEnmBmTcyi2+oeye3BgCsWhvi4uv3qCnAg8i6plOuRdaeNxjOves0ELysEXYLBl7bCl5fbVs7AZtgTA==}
|
||||
dependencies:
|
||||
@ -4572,7 +4548,7 @@ packages:
|
||||
hasBin: true
|
||||
dev: false
|
||||
|
||||
/autoprefixer@10.4.7(postcss@8.4.14):
|
||||
/autoprefixer@10.4.7(postcss@8.4.35):
|
||||
resolution: {integrity: sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA==}
|
||||
engines: {node: ^10 || ^12 || >=14}
|
||||
hasBin: true
|
||||
@ -4584,7 +4560,7 @@ packages:
|
||||
fraction.js: 4.2.0
|
||||
normalize-range: 0.1.2
|
||||
picocolors: 1.0.0
|
||||
postcss: 8.4.14
|
||||
postcss: 8.4.35
|
||||
postcss-value-parser: 4.2.0
|
||||
dev: true
|
||||
|
||||
@ -4768,7 +4744,6 @@ packages:
|
||||
|
||||
/boolbase@1.0.0:
|
||||
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
|
||||
dev: false
|
||||
|
||||
/bottleneck@2.19.5:
|
||||
resolution: {integrity: sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==}
|
||||
@ -4837,6 +4812,17 @@ packages:
|
||||
node-releases: 2.0.5
|
||||
picocolors: 1.0.0
|
||||
|
||||
/browserslist@4.23.0:
|
||||
resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==}
|
||||
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
caniuse-lite: 1.0.30001594
|
||||
electron-to-chromium: 1.4.693
|
||||
node-releases: 2.0.14
|
||||
update-browserslist-db: 1.0.13(browserslist@4.23.0)
|
||||
dev: true
|
||||
|
||||
/btoa-lite@1.0.0:
|
||||
resolution: {integrity: sha512-gvW7InbIyF8AicrqWoptdW08pUxuhq8BEgowNajy9RhiE86fmGAGl+bLKo6oB8QP0CkqHLowfN0oJdKC/J6LbA==}
|
||||
dev: true
|
||||
@ -4956,9 +4942,22 @@ packages:
|
||||
dependencies:
|
||||
path-temp: 2.0.0
|
||||
|
||||
/caniuse-api@3.0.0:
|
||||
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
|
||||
dependencies:
|
||||
browserslist: 4.23.0
|
||||
caniuse-lite: 1.0.30001349
|
||||
lodash.memoize: 4.1.2
|
||||
lodash.uniq: 4.5.0
|
||||
dev: true
|
||||
|
||||
/caniuse-lite@1.0.30001349:
|
||||
resolution: {integrity: sha512-VFaWW3jeo6DLU5rwdiasosxhYSduJgSGil4cSyX3/85fbctlE58pXAkWyuRmVA0r2RxsOSVYUTZcySJ8WpbTxw==}
|
||||
|
||||
/caniuse-lite@1.0.30001594:
|
||||
resolution: {integrity: sha512-VblSX6nYqyJVs8DKFMldE2IVCJjZ225LW00ydtUWwh5hk9IfkTOffO6r8gJNsH0qqqeAF8KrbMYA2VEwTlGW5g==}
|
||||
dev: true
|
||||
|
||||
/caseless@0.12.0:
|
||||
resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==}
|
||||
dev: true
|
||||
@ -5068,13 +5067,6 @@ packages:
|
||||
static-extend: 0.1.2
|
||||
dev: false
|
||||
|
||||
/clean-css@4.2.3:
|
||||
resolution: {integrity: sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==}
|
||||
engines: {node: '>= 4.0'}
|
||||
dependencies:
|
||||
source-map: 0.6.1
|
||||
dev: true
|
||||
|
||||
/clean-regexp@1.0.0:
|
||||
resolution: {integrity: sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==}
|
||||
engines: {node: '>=4'}
|
||||
@ -5211,6 +5203,10 @@ packages:
|
||||
resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==}
|
||||
hasBin: true
|
||||
|
||||
/colord@2.9.3:
|
||||
resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
|
||||
dev: true
|
||||
|
||||
/colorette@2.0.17:
|
||||
resolution: {integrity: sha512-hJo+3Bkn0NCHybn9Tu35fIeoOKGOk5OCC32y4Hz2It+qlCO2Q3DeQ1hRn/tDDMQKRYUEzqsl7jbF6dYKjlE60g==}
|
||||
dev: true
|
||||
@ -5236,6 +5232,11 @@ packages:
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/commander@7.2.0:
|
||||
resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
|
||||
engines: {node: '>= 10'}
|
||||
dev: true
|
||||
|
||||
/commander@9.3.0:
|
||||
resolution: {integrity: sha512-hv95iU5uXPbK83mjrJKuZyFM/LBAoCV/XhVGkS5Je6tl7sxr6A0ITMw5WoRV46/UaJ46Nllm3Xt7IaJhXTIkzw==}
|
||||
engines: {node: ^12.20.0 || >=14}
|
||||
@ -5355,7 +5356,7 @@ packages:
|
||||
/core-js-compat@3.22.8:
|
||||
resolution: {integrity: sha512-pQnwg4xtuvc2Bs/5zYQPaEYYSuTxsF7LBWF0SvnVhthZo/Qe+rJpcEekrdNK5DWwDJ0gv0oI9NNX5Mppdy0ctg==}
|
||||
dependencies:
|
||||
browserslist: 4.20.4
|
||||
browserslist: 4.23.0
|
||||
semver: 7.0.0
|
||||
dev: true
|
||||
|
||||
@ -5430,6 +5431,25 @@ packages:
|
||||
resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==}
|
||||
engines: {node: '>=8'}
|
||||
|
||||
/css-declaration-sorter@7.1.1(postcss@8.4.35):
|
||||
resolution: {integrity: sha512-dZ3bVTEEc1vxr3Bek9vGwfB5Z6ESPULhcRvO472mfjVnj8jRcTnKO8/JTczlvxM10Myb+wBM++1MtdO76eWcaQ==}
|
||||
engines: {node: ^14 || ^16 || >=18}
|
||||
peerDependencies:
|
||||
postcss: ^8.0.9
|
||||
dependencies:
|
||||
postcss: 8.4.35
|
||||
dev: true
|
||||
|
||||
/css-select@5.1.0:
|
||||
resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==}
|
||||
dependencies:
|
||||
boolbase: 1.0.0
|
||||
css-what: 6.1.0
|
||||
domhandler: 5.0.3
|
||||
domutils: 3.1.0
|
||||
nth-check: 2.1.1
|
||||
dev: true
|
||||
|
||||
/css-tree@2.1.0:
|
||||
resolution: {integrity: sha512-PcysZRzToBbrpoUrZ9qfblRIRf8zbEAkU0AIpQFtgkFK0vSbzOmBCvdSAx2Zg7Xx5wiYJKUKk0NMP7kxevie/A==}
|
||||
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
|
||||
@ -5438,11 +5458,96 @@ packages:
|
||||
source-map-js: 1.0.2
|
||||
dev: true
|
||||
|
||||
/css-tree@2.2.1:
|
||||
resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==}
|
||||
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
|
||||
dependencies:
|
||||
mdn-data: 2.0.28
|
||||
source-map-js: 1.0.2
|
||||
dev: true
|
||||
|
||||
/css-tree@2.3.1:
|
||||
resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==}
|
||||
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
|
||||
dependencies:
|
||||
mdn-data: 2.0.30
|
||||
source-map-js: 1.0.2
|
||||
dev: true
|
||||
|
||||
/css-what@6.1.0:
|
||||
resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
|
||||
engines: {node: '>= 6'}
|
||||
dev: true
|
||||
|
||||
/cssesc@3.0.0:
|
||||
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
|
||||
engines: {node: '>=4'}
|
||||
hasBin: true
|
||||
dev: false
|
||||
|
||||
/cssnano-preset-default@6.0.5(postcss@8.4.35):
|
||||
resolution: {integrity: sha512-M+qRDEr5QZrfNl0B2ySdbTLGyNb8kBcSjuwR7WBamYBOEREH9t2efnB/nblekqhdGLZdkf4oZNetykG2JWRdZQ==}
|
||||
engines: {node: ^14 || ^16 || >=18.0}
|
||||
peerDependencies:
|
||||
postcss: ^8.4.31
|
||||
dependencies:
|
||||
css-declaration-sorter: 7.1.1(postcss@8.4.35)
|
||||
cssnano-utils: 4.0.1(postcss@8.4.35)
|
||||
postcss: 8.4.35
|
||||
postcss-calc: 9.0.1(postcss@8.4.35)
|
||||
postcss-colormin: 6.0.3(postcss@8.4.35)
|
||||
postcss-convert-values: 6.0.4(postcss@8.4.35)
|
||||
postcss-discard-comments: 6.0.1(postcss@8.4.35)
|
||||
postcss-discard-duplicates: 6.0.2(postcss@8.4.35)
|
||||
postcss-discard-empty: 6.0.2(postcss@8.4.35)
|
||||
postcss-discard-overridden: 6.0.1(postcss@8.4.35)
|
||||
postcss-merge-longhand: 6.0.3(postcss@8.4.35)
|
||||
postcss-merge-rules: 6.0.4(postcss@8.4.35)
|
||||
postcss-minify-font-values: 6.0.2(postcss@8.4.35)
|
||||
postcss-minify-gradients: 6.0.2(postcss@8.4.35)
|
||||
postcss-minify-params: 6.0.3(postcss@8.4.35)
|
||||
postcss-minify-selectors: 6.0.2(postcss@8.4.35)
|
||||
postcss-normalize-charset: 6.0.1(postcss@8.4.35)
|
||||
postcss-normalize-display-values: 6.0.1(postcss@8.4.35)
|
||||
postcss-normalize-positions: 6.0.1(postcss@8.4.35)
|
||||
postcss-normalize-repeat-style: 6.0.1(postcss@8.4.35)
|
||||
postcss-normalize-string: 6.0.1(postcss@8.4.35)
|
||||
postcss-normalize-timing-functions: 6.0.1(postcss@8.4.35)
|
||||
postcss-normalize-unicode: 6.0.3(postcss@8.4.35)
|
||||
postcss-normalize-url: 6.0.1(postcss@8.4.35)
|
||||
postcss-normalize-whitespace: 6.0.1(postcss@8.4.35)
|
||||
postcss-ordered-values: 6.0.1(postcss@8.4.35)
|
||||
postcss-reduce-initial: 6.0.3(postcss@8.4.35)
|
||||
postcss-reduce-transforms: 6.0.1(postcss@8.4.35)
|
||||
postcss-svgo: 6.0.2(postcss@8.4.35)
|
||||
postcss-unique-selectors: 6.0.2(postcss@8.4.35)
|
||||
dev: true
|
||||
|
||||
/cssnano-utils@4.0.1(postcss@8.4.35):
|
||||
resolution: {integrity: sha512-6qQuYDqsGoiXssZ3zct6dcMxiqfT6epy7x4R0TQJadd4LWO3sPR6JH6ZByOvVLoZ6EdwPGgd7+DR1EmX3tiXQQ==}
|
||||
engines: {node: ^14 || ^16 || >=18.0}
|
||||
peerDependencies:
|
||||
postcss: ^8.4.31
|
||||
dependencies:
|
||||
postcss: 8.4.35
|
||||
dev: true
|
||||
|
||||
/cssnano@6.0.5(postcss@8.4.35):
|
||||
resolution: {integrity: sha512-tpTp/ukgrElwu3ESFY4IvWnGn8eTt8cJhC2aAbtA3lvUlxp6t6UPv8YCLjNnEGiFreT1O0LiOM1U3QyTBVFl2A==}
|
||||
engines: {node: ^14 || ^16 || >=18.0}
|
||||
peerDependencies:
|
||||
postcss: ^8.4.31
|
||||
dependencies:
|
||||
cssnano-preset-default: 6.0.5(postcss@8.4.35)
|
||||
lilconfig: 3.1.1
|
||||
postcss: 8.4.35
|
||||
dev: true
|
||||
|
||||
/csso@5.0.5:
|
||||
resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==}
|
||||
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
|
||||
dependencies:
|
||||
css-tree: 2.2.1
|
||||
dev: true
|
||||
|
||||
/cssom@0.3.8:
|
||||
resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==}
|
||||
@ -5688,6 +5793,18 @@ packages:
|
||||
dependencies:
|
||||
esutils: 2.0.3
|
||||
|
||||
/dom-serializer@2.0.0:
|
||||
resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==}
|
||||
dependencies:
|
||||
domelementtype: 2.3.0
|
||||
domhandler: 5.0.3
|
||||
entities: 4.5.0
|
||||
dev: true
|
||||
|
||||
/domelementtype@2.3.0:
|
||||
resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
|
||||
dev: true
|
||||
|
||||
/domexception@2.0.1:
|
||||
resolution: {integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==}
|
||||
engines: {node: '>=8'}
|
||||
@ -5695,6 +5812,21 @@ packages:
|
||||
webidl-conversions: 5.0.0
|
||||
dev: true
|
||||
|
||||
/domhandler@5.0.3:
|
||||
resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
|
||||
engines: {node: '>= 4'}
|
||||
dependencies:
|
||||
domelementtype: 2.3.0
|
||||
dev: true
|
||||
|
||||
/domutils@3.1.0:
|
||||
resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==}
|
||||
dependencies:
|
||||
dom-serializer: 2.0.0
|
||||
domelementtype: 2.3.0
|
||||
domhandler: 5.0.3
|
||||
dev: true
|
||||
|
||||
/dot-prop@5.3.0:
|
||||
resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==}
|
||||
engines: {node: '>=8'}
|
||||
@ -5750,6 +5882,10 @@ packages:
|
||||
/electron-to-chromium@1.4.147:
|
||||
resolution: {integrity: sha512-czclPqxLMPqPMkahKcske4TaS5lcznsc26ByBlEFDU8grTBVK9C5W6K9I6oEEhm4Ai4jTihGnys90xY1yjXcRg==}
|
||||
|
||||
/electron-to-chromium@1.4.693:
|
||||
resolution: {integrity: sha512-/if4Ueg0GUQlhCrW2ZlXwDAm40ipuKo+OgeHInlL8sbjt+hzISxZK949fZeJaVsheamrzANXvw1zQTvbxTvSHw==}
|
||||
dev: true
|
||||
|
||||
/element-plus@2.4.2(vue@3.2.37):
|
||||
resolution: {integrity: sha512-E/HwXX7JF1LPvQSjs0fZ8WblIoc0quoXsRXQZiL7QDq7xJdNGSUaXtdk7xiEv7axPmLfEFtxE5du9fFspDrmJw==}
|
||||
peerDependencies:
|
||||
@ -5792,6 +5928,11 @@ packages:
|
||||
engines: {node: '>=0.12'}
|
||||
dev: false
|
||||
|
||||
/entities@4.5.0:
|
||||
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
|
||||
engines: {node: '>=0.12'}
|
||||
dev: true
|
||||
|
||||
/error-ex@1.3.2:
|
||||
resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
|
||||
dependencies:
|
||||
@ -7410,23 +7551,14 @@ packages:
|
||||
gulp:
|
||||
optional: true
|
||||
dependencies:
|
||||
autoprefixer: 10.4.7(postcss@8.4.14)
|
||||
autoprefixer: 10.4.7(postcss@8.4.35)
|
||||
fancy-log: 1.3.3
|
||||
plugin-error: 1.0.1
|
||||
postcss: 8.4.14
|
||||
postcss: 8.4.35
|
||||
through2: 4.0.2
|
||||
vinyl-sourcemaps-apply: 0.2.1
|
||||
dev: true
|
||||
|
||||
/gulp-clean-css@4.3.0:
|
||||
resolution: {integrity: sha512-mGyeT3qqFXTy61j0zOIciS4MkYziF2U594t2Vs9rUnpkEHqfu6aDITMp8xOvZcvdX61Uz3y1mVERRYmjzQF5fg==}
|
||||
dependencies:
|
||||
clean-css: 4.2.3
|
||||
plugin-error: 1.0.1
|
||||
through2: 3.0.1
|
||||
vinyl-sourcemaps-apply: 0.2.1
|
||||
dev: true
|
||||
|
||||
/gulp-cli@2.3.0:
|
||||
resolution: {integrity: sha512-zzGBl5fHo0EKSXsHzjspp3y5CONegCm8ErO5Qh0UzFzk2y4tMvzLWhoDokADbarfZRL2pGpRp7yt6gfJX4ph7A==}
|
||||
engines: {node: '>= 0.10'}
|
||||
@ -8421,6 +8553,11 @@ packages:
|
||||
engines: {node: '>=10'}
|
||||
dev: true
|
||||
|
||||
/lilconfig@3.1.1:
|
||||
resolution: {integrity: sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==}
|
||||
engines: {node: '>=14'}
|
||||
dev: true
|
||||
|
||||
/lines-and-columns@1.2.4:
|
||||
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
|
||||
|
||||
@ -8579,6 +8716,10 @@ packages:
|
||||
resolution: {integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==}
|
||||
dev: true
|
||||
|
||||
/lodash.memoize@4.1.2:
|
||||
resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
|
||||
dev: true
|
||||
|
||||
/lodash.merge@4.6.2:
|
||||
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
|
||||
|
||||
@ -8590,6 +8731,10 @@ packages:
|
||||
resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==}
|
||||
dev: true
|
||||
|
||||
/lodash.uniq@4.5.0:
|
||||
resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
|
||||
dev: true
|
||||
|
||||
/lodash@4.17.21:
|
||||
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
|
||||
|
||||
@ -8726,6 +8871,14 @@ packages:
|
||||
resolution: {integrity: sha512-kwqO0I0jtWr25KcfLm9pia8vLZ8qoAKhWZuZMbneJq3jjBD3gl5nZs8l8Tu3ZBlBAHVQtDur9rdDGyvtfVraHQ==}
|
||||
dev: true
|
||||
|
||||
/mdn-data@2.0.28:
|
||||
resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==}
|
||||
dev: true
|
||||
|
||||
/mdn-data@2.0.30:
|
||||
resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==}
|
||||
dev: true
|
||||
|
||||
/mdurl@1.0.1:
|
||||
resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==}
|
||||
dev: false
|
||||
@ -8960,6 +9113,12 @@ packages:
|
||||
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
||||
hasBin: true
|
||||
|
||||
/nanoid@3.3.7:
|
||||
resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
|
||||
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
||||
hasBin: true
|
||||
dev: true
|
||||
|
||||
/nanomatch@1.2.13:
|
||||
resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
@ -9017,6 +9176,10 @@ packages:
|
||||
whatwg-url: 5.0.0
|
||||
dev: true
|
||||
|
||||
/node-releases@2.0.14:
|
||||
resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
|
||||
dev: true
|
||||
|
||||
/node-releases@2.0.5:
|
||||
resolution: {integrity: sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==}
|
||||
|
||||
@ -9109,7 +9272,6 @@ packages:
|
||||
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
|
||||
dependencies:
|
||||
boolbase: 1.0.0
|
||||
dev: false
|
||||
|
||||
/number-is-nan@1.0.1:
|
||||
resolution: {integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==}
|
||||
@ -9601,6 +9763,267 @@ packages:
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: false
|
||||
|
||||
/postcss-calc@9.0.1(postcss@8.4.35):
|
||||
resolution: {integrity: sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==}
|
||||
engines: {node: ^14 || ^16 || >=18.0}
|
||||
peerDependencies:
|
||||
postcss: ^8.2.2
|
||||
dependencies:
|
||||
postcss: 8.4.35
|
||||
postcss-selector-parser: 6.0.15
|
||||
postcss-value-parser: 4.2.0
|
||||
dev: true
|
||||
|
||||
/postcss-colormin@6.0.3(postcss@8.4.35):
|
||||
resolution: {integrity: sha512-ECpkS+UZRyAtu/kjive2/1mihP+GNtgC8kcdU8ueWZi1ZVxMNnRziCLdhrWECJhEtSWijfX2Cl9XTTCK/hjGaA==}
|
||||
engines: {node: ^14 || ^16 || >=18.0}
|
||||
peerDependencies:
|
||||
postcss: ^8.4.31
|
||||
dependencies:
|
||||
browserslist: 4.23.0
|
||||
caniuse-api: 3.0.0
|
||||
colord: 2.9.3
|
||||
postcss: 8.4.35
|
||||
postcss-value-parser: 4.2.0
|
||||
dev: true
|
||||
|
||||
/postcss-convert-values@6.0.4(postcss@8.4.35):
|
||||
resolution: {integrity: sha512-YT2yrGzPXoQD3YeA2kBo/696qNwn7vI+15AOS2puXWEvSWqdCqlOyDWRy5GNnOc9ACRGOkuQ4ESQEqPJBWt/GA==}
|
||||
engines: {node: ^14 || ^16 || >=18.0}
|
||||
peerDependencies:
|
||||
postcss: ^8.4.31
|
||||
dependencies:
|
||||
browserslist: 4.23.0
|
||||
postcss: 8.4.35
|
||||
postcss-value-parser: 4.2.0
|
||||
dev: true
|
||||
|
||||
/postcss-discard-comments@6.0.1(postcss@8.4.35):
|
||||
resolution: {integrity: sha512-f1KYNPtqYLUeZGCHQPKzzFtsHaRuECe6jLakf/RjSRqvF5XHLZnM2+fXLhb8Qh/HBFHs3M4cSLb1k3B899RYIg==}
|
||||
engines: {node: ^14 || ^16 || >=18.0}
|
||||
peerDependencies:
|
||||
postcss: ^8.4.31
|
||||
dependencies:
|
||||
postcss: 8.4.35
|
||||
dev: true
|
||||
|
||||
/postcss-discard-duplicates@6.0.2(postcss@8.4.35):
|
||||
resolution: {integrity: sha512-U2rsj4w6pAGROCCcD13LP2eBIi1whUsXs4kgE6xkIuGfkbxCBSKhkCTWyowFd66WdVlLv0uM1euJKIgmdmZObg==}
|
||||
engines: {node: ^14 || ^16 || >=18.0}
|
||||
peerDependencies:
|
||||
postcss: ^8.4.31
|
||||
dependencies:
|
||||
postcss: 8.4.35
|
||||
dev: true
|
||||
|
||||
/postcss-discard-empty@6.0.2(postcss@8.4.35):
|
||||
resolution: {integrity: sha512-rj6pVC2dVCJrP0Y2RkYTQEbYaCf4HEm+R/2StQgJqGHxAa3+KcYslNQhcRqjLHtl/4wpzipJluaJLqBj6d5eDQ==}
|
||||
engines: {node: ^14 || ^16 || >=18.0}
|
||||
peerDependencies:
|
||||
postcss: ^8.4.31
|
||||
dependencies:
|
||||
postcss: 8.4.35
|
||||
dev: true
|
||||
|
||||
/postcss-discard-overridden@6.0.1(postcss@8.4.35):
|
||||
resolution: {integrity: sha512-qs0ehZMMZpSESbRkw1+inkf51kak6OOzNRaoLd/U7Fatp0aN2HQ1rxGOrJvYcRAN9VpX8kUF13R2ofn8OlvFVA==}
|
||||
engines: {node: ^14 || ^16 || >=18.0}
|
||||
peerDependencies:
|
||||
postcss: ^8.4.31
|
||||
dependencies:
|
||||
postcss: 8.4.35
|
||||
dev: true
|
||||
|
||||
/postcss-merge-longhand@6.0.3(postcss@8.4.35):
|
||||
resolution: {integrity: sha512-kF/y3DU8CRt+SX3tP/aG+2gkZI2Z7OXDsPU7FgxIJmuyhQQ1EHceIYcsp/alvzCm2P4c37Sfdu8nNrHc+YeyLg==}
|
||||
engines: {node: ^14 || ^16 || >=18.0}
|
||||
peerDependencies:
|
||||
postcss: ^8.4.31
|
||||
dependencies:
|
||||
postcss: 8.4.35
|
||||
postcss-value-parser: 4.2.0
|
||||
stylehacks: 6.0.3(postcss@8.4.35)
|
||||
dev: true
|
||||
|
||||
/postcss-merge-rules@6.0.4(postcss@8.4.35):
|
||||
resolution: {integrity: sha512-97iF3UJ5v8N1BWy38y+0l+Z8o5/9uGlEgtWic2PJPzoRrLB6Gxg8TVG93O0EK52jcLeMsywre26AUlX1YAYeHA==}
|
||||
engines: {node: ^14 || ^16 || >=18.0}
|
||||
peerDependencies:
|
||||
postcss: ^8.4.31
|
||||
dependencies:
|
||||
browserslist: 4.23.0
|
||||
caniuse-api: 3.0.0
|
||||
cssnano-utils: 4.0.1(postcss@8.4.35)
|
||||
postcss: 8.4.35
|
||||
postcss-selector-parser: 6.0.15
|
||||
dev: true
|
||||
|
||||
/postcss-minify-font-values@6.0.2(postcss@8.4.35):
|
||||
resolution: {integrity: sha512-IedzbVMoX0a7VZWjSYr5qJ6C37rws8kl8diPBeMZLJfWKkgXuMFY5R/OxPegn/q9tK9ztd0XRH3aR0u2t+A7uQ==}
|
||||
engines: {node: ^14 || ^16 || >=18.0}
|
||||
peerDependencies:
|
||||
postcss: ^8.4.31
|
||||
dependencies:
|
||||
postcss: 8.4.35
|
||||
postcss-value-parser: 4.2.0
|
||||
dev: true
|
||||
|
||||
/postcss-minify-gradients@6.0.2(postcss@8.4.35):
|
||||
resolution: {integrity: sha512-vP5mF7iI6/5fcpv+rSfwWQekOE+8I1i7/7RjZPGuIjj6eUaZVeG4XZYZrroFuw1WQd51u2V32wyQFZ+oYdE7CA==}
|
||||
engines: {node: ^14 || ^16 || >=18.0}
|
||||
peerDependencies:
|
||||
postcss: ^8.4.31
|
||||
dependencies:
|
||||
colord: 2.9.3
|
||||
cssnano-utils: 4.0.1(postcss@8.4.35)
|
||||
postcss: 8.4.35
|
||||
postcss-value-parser: 4.2.0
|
||||
dev: true
|
||||
|
||||
/postcss-minify-params@6.0.3(postcss@8.4.35):
|
||||
resolution: {integrity: sha512-j4S74d3AAeCK5eGdQndXSrkxusV2ekOxbXGnlnZthMyZBBvSDiU34CihTASbJxuVB3bugudmwolS7+Dgs5OyOQ==}
|
||||
engines: {node: ^14 || ^16 || >=18.0}
|
||||
peerDependencies:
|
||||
postcss: ^8.4.31
|
||||
dependencies:
|
||||
browserslist: 4.23.0
|
||||
cssnano-utils: 4.0.1(postcss@8.4.35)
|
||||
postcss: 8.4.35
|
||||
postcss-value-parser: 4.2.0
|
||||
dev: true
|
||||
|
||||
/postcss-minify-selectors@6.0.2(postcss@8.4.35):
|
||||
resolution: {integrity: sha512-0b+m+w7OAvZejPQdN2GjsXLv5o0jqYHX3aoV0e7RBKPCsB7TYG5KKWBFhGnB/iP3213Ts8c5H4wLPLMm7z28Sg==}
|
||||
engines: {node: ^14 || ^16 || >=18.0}
|
||||
peerDependencies:
|
||||
postcss: ^8.4.31
|
||||
dependencies:
|
||||
postcss: 8.4.35
|
||||
postcss-selector-parser: 6.0.15
|
||||
dev: true
|
||||
|
||||
/postcss-normalize-charset@6.0.1(postcss@8.4.35):
|
||||
resolution: {integrity: sha512-aW5LbMNRZ+oDV57PF9K+WI1Z8MPnF+A8qbajg/T8PP126YrGX1f9IQx21GI2OlGz7XFJi/fNi0GTbY948XJtXg==}
|
||||
engines: {node: ^14 || ^16 || >=18.0}
|
||||
peerDependencies:
|
||||
postcss: ^8.4.31
|
||||
dependencies:
|
||||
postcss: 8.4.35
|
||||
dev: true
|
||||
|
||||
/postcss-normalize-display-values@6.0.1(postcss@8.4.35):
|
||||
resolution: {integrity: sha512-mc3vxp2bEuCb4LgCcmG1y6lKJu1Co8T+rKHrcbShJwUmKJiEl761qb/QQCfFwlrvSeET3jksolCR/RZuMURudw==}
|
||||
engines: {node: ^14 || ^16 || >=18.0}
|
||||
peerDependencies:
|
||||
postcss: ^8.4.31
|
||||
dependencies:
|
||||
postcss: 8.4.35
|
||||
postcss-value-parser: 4.2.0
|
||||
dev: true
|
||||
|
||||
/postcss-normalize-positions@6.0.1(postcss@8.4.35):
|
||||
resolution: {integrity: sha512-HRsq8u/0unKNvm0cvwxcOUEcakFXqZ41fv3FOdPn916XFUrympjr+03oaLkuZENz3HE9RrQE9yU0Xv43ThWjQg==}
|
||||
engines: {node: ^14 || ^16 || >=18.0}
|
||||
peerDependencies:
|
||||
postcss: ^8.4.31
|
||||
dependencies:
|
||||
postcss: 8.4.35
|
||||
postcss-value-parser: 4.2.0
|
||||
dev: true
|
||||
|
||||
/postcss-normalize-repeat-style@6.0.1(postcss@8.4.35):
|
||||
resolution: {integrity: sha512-Gbb2nmCy6tTiA7Sh2MBs3fj9W8swonk6lw+dFFeQT68B0Pzwp1kvisJQkdV6rbbMSd9brMlS8I8ts52tAGWmGQ==}
|
||||
engines: {node: ^14 || ^16 || >=18.0}
|
||||
peerDependencies:
|
||||
postcss: ^8.4.31
|
||||
dependencies:
|
||||
postcss: 8.4.35
|
||||
postcss-value-parser: 4.2.0
|
||||
dev: true
|
||||
|
||||
/postcss-normalize-string@6.0.1(postcss@8.4.35):
|
||||
resolution: {integrity: sha512-5Fhx/+xzALJD9EI26Aq23hXwmv97Zfy2VFrt5PLT8lAhnBIZvmaT5pQk+NuJ/GWj/QWaKSKbnoKDGLbV6qnhXg==}
|
||||
engines: {node: ^14 || ^16 || >=18.0}
|
||||
peerDependencies:
|
||||
postcss: ^8.4.31
|
||||
dependencies:
|
||||
postcss: 8.4.35
|
||||
postcss-value-parser: 4.2.0
|
||||
dev: true
|
||||
|
||||
/postcss-normalize-timing-functions@6.0.1(postcss@8.4.35):
|
||||
resolution: {integrity: sha512-4zcczzHqmCU7L5dqTB9rzeqPWRMc0K2HoR+Bfl+FSMbqGBUcP5LRfgcH4BdRtLuzVQK1/FHdFoGT3F7rkEnY+g==}
|
||||
engines: {node: ^14 || ^16 || >=18.0}
|
||||
peerDependencies:
|
||||
postcss: ^8.4.31
|
||||
dependencies:
|
||||
postcss: 8.4.35
|
||||
postcss-value-parser: 4.2.0
|
||||
dev: true
|
||||
|
||||
/postcss-normalize-unicode@6.0.3(postcss@8.4.35):
|
||||
resolution: {integrity: sha512-T2Bb3gXz0ASgc3ori2dzjv6j/P2IantreaC6fT8tWjqYUiqMAh5jGIkdPwEV2FaucjQlCLeFJDJh2BeSugE1ig==}
|
||||
engines: {node: ^14 || ^16 || >=18.0}
|
||||
peerDependencies:
|
||||
postcss: ^8.4.31
|
||||
dependencies:
|
||||
browserslist: 4.23.0
|
||||
postcss: 8.4.35
|
||||
postcss-value-parser: 4.2.0
|
||||
dev: true
|
||||
|
||||
/postcss-normalize-url@6.0.1(postcss@8.4.35):
|
||||
resolution: {integrity: sha512-jEXL15tXSvbjm0yzUV7FBiEXwhIa9H88JOXDGQzmcWoB4mSjZIsmtto066s2iW9FYuIrIF4k04HA2BKAOpbsaQ==}
|
||||
engines: {node: ^14 || ^16 || >=18.0}
|
||||
peerDependencies:
|
||||
postcss: ^8.4.31
|
||||
dependencies:
|
||||
postcss: 8.4.35
|
||||
postcss-value-parser: 4.2.0
|
||||
dev: true
|
||||
|
||||
/postcss-normalize-whitespace@6.0.1(postcss@8.4.35):
|
||||
resolution: {integrity: sha512-76i3NpWf6bB8UHlVuLRxG4zW2YykF9CTEcq/9LGAiz2qBuX5cBStadkk0jSkg9a9TCIXbMQz7yzrygKoCW9JuA==}
|
||||
engines: {node: ^14 || ^16 || >=18.0}
|
||||
peerDependencies:
|
||||
postcss: ^8.4.31
|
||||
dependencies:
|
||||
postcss: 8.4.35
|
||||
postcss-value-parser: 4.2.0
|
||||
dev: true
|
||||
|
||||
/postcss-ordered-values@6.0.1(postcss@8.4.35):
|
||||
resolution: {integrity: sha512-XXbb1O/MW9HdEhnBxitZpPFbIvDgbo9NK4c/5bOfiKpnIGZDoL2xd7/e6jW5DYLsWxBbs+1nZEnVgnjnlFViaA==}
|
||||
engines: {node: ^14 || ^16 || >=18.0}
|
||||
peerDependencies:
|
||||
postcss: ^8.4.31
|
||||
dependencies:
|
||||
cssnano-utils: 4.0.1(postcss@8.4.35)
|
||||
postcss: 8.4.35
|
||||
postcss-value-parser: 4.2.0
|
||||
dev: true
|
||||
|
||||
/postcss-reduce-initial@6.0.3(postcss@8.4.35):
|
||||
resolution: {integrity: sha512-w4QIR9pEa1N4xMx3k30T1vLZl6udVK2RmNqrDXhBXX9L0mBj2a8ADs8zkbaEH7eUy1m30Wyr5EBgHN31Yq1JvA==}
|
||||
engines: {node: ^14 || ^16 || >=18.0}
|
||||
peerDependencies:
|
||||
postcss: ^8.4.31
|
||||
dependencies:
|
||||
browserslist: 4.23.0
|
||||
caniuse-api: 3.0.0
|
||||
postcss: 8.4.35
|
||||
dev: true
|
||||
|
||||
/postcss-reduce-transforms@6.0.1(postcss@8.4.35):
|
||||
resolution: {integrity: sha512-fUbV81OkUe75JM+VYO1gr/IoA2b/dRiH6HvMwhrIBSUrxq3jNZQZitSnugcTLDi1KkQh1eR/zi+iyxviUNBkcQ==}
|
||||
engines: {node: ^14 || ^16 || >=18.0}
|
||||
peerDependencies:
|
||||
postcss: ^8.4.31
|
||||
dependencies:
|
||||
postcss: 8.4.35
|
||||
postcss-value-parser: 4.2.0
|
||||
dev: true
|
||||
|
||||
/postcss-selector-parser@6.0.10:
|
||||
resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==}
|
||||
engines: {node: '>=4'}
|
||||
@ -9609,6 +10032,35 @@ packages:
|
||||
util-deprecate: 1.0.2
|
||||
dev: false
|
||||
|
||||
/postcss-selector-parser@6.0.15:
|
||||
resolution: {integrity: sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==}
|
||||
engines: {node: '>=4'}
|
||||
dependencies:
|
||||
cssesc: 3.0.0
|
||||
util-deprecate: 1.0.2
|
||||
dev: true
|
||||
|
||||
/postcss-svgo@6.0.2(postcss@8.4.35):
|
||||
resolution: {integrity: sha512-IH5R9SjkTkh0kfFOQDImyy1+mTCb+E830+9SV1O+AaDcoHTvfsvt6WwJeo7KwcHbFnevZVCsXhDmjFiGVuwqFQ==}
|
||||
engines: {node: ^14 || ^16 || >= 18}
|
||||
peerDependencies:
|
||||
postcss: ^8.4.31
|
||||
dependencies:
|
||||
postcss: 8.4.35
|
||||
postcss-value-parser: 4.2.0
|
||||
svgo: 3.2.0
|
||||
dev: true
|
||||
|
||||
/postcss-unique-selectors@6.0.2(postcss@8.4.35):
|
||||
resolution: {integrity: sha512-8IZGQ94nechdG7Y9Sh9FlIY2b4uS8/k8kdKRX040XHsS3B6d1HrJAkXrBSsSu4SuARruSsUjW3nlSw8BHkaAYQ==}
|
||||
engines: {node: ^14 || ^16 || >=18.0}
|
||||
peerDependencies:
|
||||
postcss: ^8.4.31
|
||||
dependencies:
|
||||
postcss: 8.4.35
|
||||
postcss-selector-parser: 6.0.15
|
||||
dev: true
|
||||
|
||||
/postcss-value-parser@4.2.0:
|
||||
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
|
||||
dev: true
|
||||
@ -9621,6 +10073,15 @@ packages:
|
||||
picocolors: 1.0.0
|
||||
source-map-js: 1.0.2
|
||||
|
||||
/postcss@8.4.35:
|
||||
resolution: {integrity: sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA==}
|
||||
engines: {node: ^10 || ^12 || >=14}
|
||||
dependencies:
|
||||
nanoid: 3.3.7
|
||||
picocolors: 1.0.0
|
||||
source-map-js: 1.0.2
|
||||
dev: true
|
||||
|
||||
/preact@10.7.3:
|
||||
resolution: {integrity: sha512-giqJXP8VbtA1tyGa3f1n9wiN7PrHtONrDyE3T+ifjr/tTkg+2N4d/6sjC9WyJKv8wM7rOYDveqy5ZoFmYlwo4w==}
|
||||
|
||||
@ -10763,6 +11224,17 @@ packages:
|
||||
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
|
||||
engines: {node: '>=8'}
|
||||
|
||||
/stylehacks@6.0.3(postcss@8.4.35):
|
||||
resolution: {integrity: sha512-KzBqjnqktc8/I0ERCb+lGq06giF/JxDbw2r9kEVhen9noHeIDRtMWUp9r62sOk+/2bbX6sFG1GhsS7ToXG0PEg==}
|
||||
engines: {node: ^14 || ^16 || >=18.0}
|
||||
peerDependencies:
|
||||
postcss: ^8.4.31
|
||||
dependencies:
|
||||
browserslist: 4.23.0
|
||||
postcss: 8.4.35
|
||||
postcss-selector-parser: 6.0.15
|
||||
dev: true
|
||||
|
||||
/supports-color@5.5.0:
|
||||
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
|
||||
engines: {node: '>=4'}
|
||||
@ -10796,6 +11268,20 @@ packages:
|
||||
/svg-tags@1.0.0:
|
||||
resolution: {integrity: sha1-WPcc7jvVGbWdSyqEO2x95krAR2Q=}
|
||||
|
||||
/svgo@3.2.0:
|
||||
resolution: {integrity: sha512-4PP6CMW/V7l/GmKRKzsLR8xxjdHTV4IMvhTnpuHwwBazSIlw5W/5SmPjN8Dwyt7lKbSJrRDgp4t9ph0HgChFBQ==}
|
||||
engines: {node: '>=14.0.0'}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
'@trysound/sax': 0.2.0
|
||||
commander: 7.2.0
|
||||
css-select: 5.1.0
|
||||
css-tree: 2.3.1
|
||||
css-what: 6.1.0
|
||||
csso: 5.0.5
|
||||
picocolors: 1.0.0
|
||||
dev: true
|
||||
|
||||
/symbol-tree@3.2.4:
|
||||
resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
|
||||
dev: true
|
||||
@ -10890,12 +11376,6 @@ packages:
|
||||
xtend: 4.0.2
|
||||
dev: false
|
||||
|
||||
/through2@3.0.1:
|
||||
resolution: {integrity: sha512-M96dvTalPT3YbYLaKaCuwu+j06D/8Jfib0o/PxbVt6Amhv3dUAtW6rTV1jPgJSBG83I/e04Y6xkVdVhSRhi0ww==}
|
||||
dependencies:
|
||||
readable-stream: 3.6.0
|
||||
dev: true
|
||||
|
||||
/through2@4.0.2:
|
||||
resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==}
|
||||
dependencies:
|
||||
@ -11802,6 +12282,17 @@ packages:
|
||||
resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==}
|
||||
engines: {node: '>=4'}
|
||||
|
||||
/update-browserslist-db@1.0.13(browserslist@4.23.0):
|
||||
resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
|
||||
hasBin: true
|
||||
peerDependencies:
|
||||
browserslist: '>= 4.21.0'
|
||||
dependencies:
|
||||
browserslist: 4.23.0
|
||||
escalade: 3.1.1
|
||||
picocolors: 1.0.0
|
||||
dev: true
|
||||
|
||||
/uri-js@4.4.1:
|
||||
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
|
||||
dependencies:
|
||||
@ -11827,7 +12318,7 @@ packages:
|
||||
dev: false
|
||||
|
||||
/util-deprecate@1.0.2:
|
||||
resolution: {integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=}
|
||||
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
|
||||
|
||||
/uuid@3.4.0:
|
||||
resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==}
|
||||
|
Loading…
x
Reference in New Issue
Block a user