refactor(projects): refactor service env config
This commit is contained in:
parent
bccd6cb3c3
commit
43193e2808
6
.env
6
.env
@ -19,3 +19,9 @@ VITE_ROUTE_HOME=home
|
|||||||
|
|
||||||
# default menu icon
|
# default menu icon
|
||||||
VITE_MENU_ICON=mdi:menu
|
VITE_MENU_ICON=mdi:menu
|
||||||
|
|
||||||
|
# whether to enable http proxy when is dev mode
|
||||||
|
VITE_HTTP_PROXY=Y
|
||||||
|
|
||||||
|
# vue-router mode: hash | history | memory
|
||||||
|
VITE_ROUTER_HISTORY_MODE=history
|
||||||
|
@ -1,2 +0,0 @@
|
|||||||
VITE_HTTP_PROXY=Y
|
|
||||||
|
|
7
.env.prod
Normal file
7
.env.prod
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# http url, prod environment
|
||||||
|
VITE_SERVICE_BASE_URL=https://mock.apifox.com/m1/3109515-0-default
|
||||||
|
|
||||||
|
# http other url, prod environment
|
||||||
|
VITE_OTHER_SERVICE_BASE_URL= `{
|
||||||
|
"demo": "http://localhost:9529"
|
||||||
|
}`
|
@ -1,2 +0,0 @@
|
|||||||
VITE_ROUTER_HISTORY_MODE=history
|
|
||||||
VITE_SOURCE_MAP=N
|
|
7
.env.test
Normal file
7
.env.test
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# http url, test environment
|
||||||
|
VITE_SERVICE_BASE_URL=https://mock.apifox.com/m1/3109515-0-default
|
||||||
|
|
||||||
|
# http other url, test environment
|
||||||
|
VITE_OTHER_SERVICE_BASE_URL= `{
|
||||||
|
"demo": "http://localhost:9528"
|
||||||
|
}`
|
@ -1,5 +1,5 @@
|
|||||||
import type { ProxyOptions } from 'vite';
|
import type { ProxyOptions } from 'vite';
|
||||||
import { createProxyPattern, createServiceConfig } from '../../env.config';
|
import { createServiceConfig } from '../../src/utils/service';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set http proxy
|
* Set http proxy
|
||||||
@ -11,29 +11,25 @@ export function createViteProxy(env: Env.ImportMeta) {
|
|||||||
|
|
||||||
if (!isEnableHttpProxy) return undefined;
|
if (!isEnableHttpProxy) return undefined;
|
||||||
|
|
||||||
const { baseURL, otherBaseURL } = createServiceConfig(env);
|
const { baseURL, proxyPattern, other } = createServiceConfig(env);
|
||||||
|
|
||||||
const defaultProxyPattern = createProxyPattern();
|
const proxy: Record<string, ProxyOptions> = createProxyItem({ baseURL, proxyPattern });
|
||||||
|
|
||||||
const proxy: Record<string, ProxyOptions> = {
|
other.forEach(item => {
|
||||||
[defaultProxyPattern]: {
|
Object.assign(proxy, createProxyItem(item));
|
||||||
target: baseURL,
|
});
|
||||||
changeOrigin: true,
|
|
||||||
rewrite: path => path.replace(new RegExp(`^${defaultProxyPattern}`), '')
|
return proxy;
|
||||||
}
|
}
|
||||||
};
|
|
||||||
|
function createProxyItem(item: App.Service.ServiceConfigItem) {
|
||||||
const otherURLEntries = Object.entries(otherBaseURL);
|
const proxy: Record<string, ProxyOptions> = {};
|
||||||
|
|
||||||
for (const [key, url] of otherURLEntries) {
|
proxy[item.proxyPattern] = {
|
||||||
const proxyPattern = createProxyPattern(key as App.Service.OtherBaseURLKey);
|
target: item.baseURL,
|
||||||
|
changeOrigin: true,
|
||||||
proxy[proxyPattern] = {
|
rewrite: path => path.replace(new RegExp(`^${item.proxyPattern}`), '')
|
||||||
target: url,
|
};
|
||||||
changeOrigin: true,
|
|
||||||
rewrite: path => path.replace(new RegExp(`^${proxyPattern}`), '')
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
return proxy;
|
return proxy;
|
||||||
}
|
}
|
||||||
|
@ -1,46 +0,0 @@
|
|||||||
/**
|
|
||||||
* Create service config by current env
|
|
||||||
*
|
|
||||||
* @param env The current env
|
|
||||||
*/
|
|
||||||
export function createServiceConfig(env: Env.ImportMeta) {
|
|
||||||
const mockURL = 'https://mock.apifox.com/m1/3109515-0-default';
|
|
||||||
|
|
||||||
const serviceConfigMap: App.Service.ServiceConfigMap = {
|
|
||||||
dev: {
|
|
||||||
baseURL: mockURL,
|
|
||||||
otherBaseURL: {
|
|
||||||
demo: 'http://localhost:9528'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
test: {
|
|
||||||
baseURL: mockURL,
|
|
||||||
otherBaseURL: {
|
|
||||||
demo: 'http://localhost:9529'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
prod: {
|
|
||||||
baseURL: mockURL,
|
|
||||||
otherBaseURL: {
|
|
||||||
demo: 'http://localhost:9530'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const { VITE_SERVICE_ENV = 'dev' } = env;
|
|
||||||
|
|
||||||
return serviceConfigMap[VITE_SERVICE_ENV];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get proxy pattern of service url
|
|
||||||
*
|
|
||||||
* @param key If not set, will use the default key
|
|
||||||
*/
|
|
||||||
export function createProxyPattern(key?: App.Service.OtherBaseURLKey) {
|
|
||||||
if (!key) {
|
|
||||||
return '/proxy-default';
|
|
||||||
}
|
|
||||||
|
|
||||||
return `/proxy-${key}`;
|
|
||||||
}
|
|
12
package.json
12
package.json
@ -28,14 +28,12 @@
|
|||||||
"UnoCSS"
|
"UnoCSS"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "cross-env VITE_SERVICE_ENV=prod vite build",
|
"build": "vite build --mode prod",
|
||||||
"build:dev": "vite build",
|
"build:test": "vite build --mode test",
|
||||||
"build:test": "cross-env VITE_SERVICE_ENV=test vite build",
|
|
||||||
"cleanup": "sa cleanup",
|
"cleanup": "sa cleanup",
|
||||||
"commit": "sa git-commit",
|
"commit": "sa git-commit",
|
||||||
"dev": "vite",
|
"dev": "vite --mode test",
|
||||||
"dev:prod": "cross-env VITE_SERVICE_ENV=prod vite",
|
"dev:prod": "vite --mode prod",
|
||||||
"dev:test": "cross-env VITE_SERVICE_ENV=test vite",
|
|
||||||
"gen-route": "sa gen-route",
|
"gen-route": "sa gen-route",
|
||||||
"lint": "eslint . --fix",
|
"lint": "eslint . --fix",
|
||||||
"prepare": "simple-git-hooks",
|
"prepare": "simple-git-hooks",
|
||||||
@ -81,11 +79,9 @@
|
|||||||
"@unocss/vite": "0.58.5",
|
"@unocss/vite": "0.58.5",
|
||||||
"@vitejs/plugin-vue": "5.0.4",
|
"@vitejs/plugin-vue": "5.0.4",
|
||||||
"@vitejs/plugin-vue-jsx": "3.1.0",
|
"@vitejs/plugin-vue-jsx": "3.1.0",
|
||||||
"cross-env": "7.0.3",
|
|
||||||
"eslint": "8.57.0",
|
"eslint": "8.57.0",
|
||||||
"eslint-plugin-vue": "9.22.0",
|
"eslint-plugin-vue": "9.22.0",
|
||||||
"lint-staged": "15.2.2",
|
"lint-staged": "15.2.2",
|
||||||
"npm-run-all": "4.1.5",
|
|
||||||
"sass": "1.71.1",
|
"sass": "1.71.1",
|
||||||
"simple-git-hooks": "2.9.0",
|
"simple-git-hooks": "2.9.0",
|
||||||
"tsx": "4.7.1",
|
"tsx": "4.7.1",
|
||||||
|
480
pnpm-lock.yaml
480
pnpm-lock.yaml
@ -111,9 +111,6 @@ importers:
|
|||||||
'@vitejs/plugin-vue-jsx':
|
'@vitejs/plugin-vue-jsx':
|
||||||
specifier: 3.1.0
|
specifier: 3.1.0
|
||||||
version: 3.1.0(vite@5.1.4)(vue@3.4.19)
|
version: 3.1.0(vite@5.1.4)(vue@3.4.19)
|
||||||
cross-env:
|
|
||||||
specifier: 7.0.3
|
|
||||||
version: 7.0.3
|
|
||||||
eslint:
|
eslint:
|
||||||
specifier: 8.57.0
|
specifier: 8.57.0
|
||||||
version: 8.57.0
|
version: 8.57.0
|
||||||
@ -123,9 +120,6 @@ importers:
|
|||||||
lint-staged:
|
lint-staged:
|
||||||
specifier: 15.2.2
|
specifier: 15.2.2
|
||||||
version: 15.2.2
|
version: 15.2.2
|
||||||
npm-run-all:
|
|
||||||
specifier: 4.1.5
|
|
||||||
version: 4.1.5
|
|
||||||
sass:
|
sass:
|
||||||
specifier: 1.71.1
|
specifier: 1.71.1
|
||||||
version: 1.71.1
|
version: 1.71.1
|
||||||
@ -2250,14 +2244,6 @@ packages:
|
|||||||
engines: {node: '>=0.10.0'}
|
engines: {node: '>=0.10.0'}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/array-buffer-byte-length@1.0.1:
|
|
||||||
resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==}
|
|
||||||
engines: {node: '>= 0.4'}
|
|
||||||
dependencies:
|
|
||||||
call-bind: 1.0.7
|
|
||||||
is-array-buffer: 3.0.4
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/array-union@2.1.0:
|
/array-union@2.1.0:
|
||||||
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
|
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
|
||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
@ -2268,20 +2254,6 @@ packages:
|
|||||||
engines: {node: '>=0.10.0'}
|
engines: {node: '>=0.10.0'}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/arraybuffer.prototype.slice@1.0.3:
|
|
||||||
resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==}
|
|
||||||
engines: {node: '>= 0.4'}
|
|
||||||
dependencies:
|
|
||||||
array-buffer-byte-length: 1.0.1
|
|
||||||
call-bind: 1.0.7
|
|
||||||
define-properties: 1.2.1
|
|
||||||
es-abstract: 1.22.4
|
|
||||||
es-errors: 1.3.0
|
|
||||||
get-intrinsic: 1.2.4
|
|
||||||
is-array-buffer: 3.0.4
|
|
||||||
is-shared-array-buffer: 1.0.3
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/assert@2.1.0:
|
/assert@2.1.0:
|
||||||
resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==}
|
resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -2928,25 +2900,6 @@ packages:
|
|||||||
vary: 1.1.2
|
vary: 1.1.2
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/cross-env@7.0.3:
|
|
||||||
resolution: {integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==}
|
|
||||||
engines: {node: '>=10.14', npm: '>=6', yarn: '>=1'}
|
|
||||||
hasBin: true
|
|
||||||
dependencies:
|
|
||||||
cross-spawn: 7.0.3
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/cross-spawn@6.0.5:
|
|
||||||
resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==}
|
|
||||||
engines: {node: '>=4.8'}
|
|
||||||
dependencies:
|
|
||||||
nice-try: 1.0.5
|
|
||||||
path-key: 2.0.1
|
|
||||||
semver: 5.7.2
|
|
||||||
shebang-command: 1.2.0
|
|
||||||
which: 1.3.1
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/cross-spawn@7.0.3:
|
/cross-spawn@7.0.3:
|
||||||
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
|
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
|
||||||
engines: {node: '>= 8'}
|
engines: {node: '>= 8'}
|
||||||
@ -3353,53 +3306,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-g/9rfnvnagiNf+DRMHEVGuGuIBlCIMDFoTA616HaP2l9PlCjGjVhD98PNbVSJvmK4TttqT5mV5tInMhoFgi+aA==}
|
resolution: {integrity: sha512-g/9rfnvnagiNf+DRMHEVGuGuIBlCIMDFoTA616HaP2l9PlCjGjVhD98PNbVSJvmK4TttqT5mV5tInMhoFgi+aA==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/es-abstract@1.22.4:
|
|
||||||
resolution: {integrity: sha512-vZYJlk2u6qHYxBOTjAeg7qUxHdNfih64Uu2J8QqWgXZ2cri0ZpJAkzDUK/q593+mvKwlxyaxr6F1Q+3LKoQRgg==}
|
|
||||||
engines: {node: '>= 0.4'}
|
|
||||||
dependencies:
|
|
||||||
array-buffer-byte-length: 1.0.1
|
|
||||||
arraybuffer.prototype.slice: 1.0.3
|
|
||||||
available-typed-arrays: 1.0.7
|
|
||||||
call-bind: 1.0.7
|
|
||||||
es-define-property: 1.0.0
|
|
||||||
es-errors: 1.3.0
|
|
||||||
es-set-tostringtag: 2.0.3
|
|
||||||
es-to-primitive: 1.2.1
|
|
||||||
function.prototype.name: 1.1.6
|
|
||||||
get-intrinsic: 1.2.4
|
|
||||||
get-symbol-description: 1.0.2
|
|
||||||
globalthis: 1.0.3
|
|
||||||
gopd: 1.0.1
|
|
||||||
has-property-descriptors: 1.0.2
|
|
||||||
has-proto: 1.0.3
|
|
||||||
has-symbols: 1.0.3
|
|
||||||
hasown: 2.0.1
|
|
||||||
internal-slot: 1.0.7
|
|
||||||
is-array-buffer: 3.0.4
|
|
||||||
is-callable: 1.2.7
|
|
||||||
is-negative-zero: 2.0.3
|
|
||||||
is-regex: 1.1.4
|
|
||||||
is-shared-array-buffer: 1.0.3
|
|
||||||
is-string: 1.0.7
|
|
||||||
is-typed-array: 1.1.13
|
|
||||||
is-weakref: 1.0.2
|
|
||||||
object-inspect: 1.13.1
|
|
||||||
object-keys: 1.1.1
|
|
||||||
object.assign: 4.1.5
|
|
||||||
regexp.prototype.flags: 1.5.2
|
|
||||||
safe-array-concat: 1.1.0
|
|
||||||
safe-regex-test: 1.0.3
|
|
||||||
string.prototype.trim: 1.2.8
|
|
||||||
string.prototype.trimend: 1.0.7
|
|
||||||
string.prototype.trimstart: 1.0.7
|
|
||||||
typed-array-buffer: 1.0.2
|
|
||||||
typed-array-byte-length: 1.0.1
|
|
||||||
typed-array-byte-offset: 1.0.2
|
|
||||||
typed-array-length: 1.0.5
|
|
||||||
unbox-primitive: 1.0.2
|
|
||||||
which-typed-array: 1.1.14
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/es-define-property@1.0.0:
|
/es-define-property@1.0.0:
|
||||||
resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
|
resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
|
||||||
engines: {node: '>= 0.4'}
|
engines: {node: '>= 0.4'}
|
||||||
@ -3410,24 +3316,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
|
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
|
||||||
engines: {node: '>= 0.4'}
|
engines: {node: '>= 0.4'}
|
||||||
|
|
||||||
/es-set-tostringtag@2.0.3:
|
|
||||||
resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==}
|
|
||||||
engines: {node: '>= 0.4'}
|
|
||||||
dependencies:
|
|
||||||
get-intrinsic: 1.2.4
|
|
||||||
has-tostringtag: 1.0.2
|
|
||||||
hasown: 2.0.1
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/es-to-primitive@1.2.1:
|
|
||||||
resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
|
|
||||||
engines: {node: '>= 0.4'}
|
|
||||||
dependencies:
|
|
||||||
is-callable: 1.2.7
|
|
||||||
is-date-object: 1.0.5
|
|
||||||
is-symbol: 1.0.4
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/esbuild@0.19.12:
|
/esbuild@0.19.12:
|
||||||
resolution: {integrity: sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==}
|
resolution: {integrity: sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==}
|
||||||
engines: {node: '>=12'}
|
engines: {node: '>=12'}
|
||||||
@ -4052,20 +3940,6 @@ packages:
|
|||||||
/function-bind@1.1.2:
|
/function-bind@1.1.2:
|
||||||
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
|
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
|
||||||
|
|
||||||
/function.prototype.name@1.1.6:
|
|
||||||
resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
|
|
||||||
engines: {node: '>= 0.4'}
|
|
||||||
dependencies:
|
|
||||||
call-bind: 1.0.7
|
|
||||||
define-properties: 1.2.1
|
|
||||||
es-abstract: 1.22.4
|
|
||||||
functions-have-names: 1.2.3
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/functions-have-names@1.2.3:
|
|
||||||
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/gauge@4.0.4:
|
/gauge@4.0.4:
|
||||||
resolution: {integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==}
|
resolution: {integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==}
|
||||||
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
|
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
|
||||||
@ -4120,15 +3994,6 @@ packages:
|
|||||||
engines: {node: '>=16'}
|
engines: {node: '>=16'}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/get-symbol-description@1.0.2:
|
|
||||||
resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==}
|
|
||||||
engines: {node: '>= 0.4'}
|
|
||||||
dependencies:
|
|
||||||
call-bind: 1.0.7
|
|
||||||
es-errors: 1.3.0
|
|
||||||
get-intrinsic: 1.2.4
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/get-tsconfig@4.7.2:
|
/get-tsconfig@4.7.2:
|
||||||
resolution: {integrity: sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==}
|
resolution: {integrity: sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -4221,13 +4086,6 @@ packages:
|
|||||||
type-fest: 0.20.2
|
type-fest: 0.20.2
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/globalthis@1.0.3:
|
|
||||||
resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
|
|
||||||
engines: {node: '>= 0.4'}
|
|
||||||
dependencies:
|
|
||||||
define-properties: 1.2.1
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/globby@11.1.0:
|
/globby@11.1.0:
|
||||||
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
|
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
|
||||||
engines: {node: '>=10'}
|
engines: {node: '>=10'}
|
||||||
@ -4294,10 +4152,6 @@ packages:
|
|||||||
ansi-regex: 2.1.1
|
ansi-regex: 2.1.1
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/has-bigints@1.0.2:
|
|
||||||
resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/has-flag@1.0.0:
|
/has-flag@1.0.0:
|
||||||
resolution: {integrity: sha512-DyYHfIYwAJmjAjSSPKANxI8bFY9YtFrgkAfinBojQ8YJTOuOuav64tMUJv584SES4xl74PmuaevIyaLESHdTAA==}
|
resolution: {integrity: sha512-DyYHfIYwAJmjAjSSPKANxI8bFY9YtFrgkAfinBojQ8YJTOuOuav64tMUJv584SES4xl74PmuaevIyaLESHdTAA==}
|
||||||
engines: {node: '>=0.10.0'}
|
engines: {node: '>=0.10.0'}
|
||||||
@ -4580,15 +4434,6 @@ packages:
|
|||||||
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/internal-slot@1.0.7:
|
|
||||||
resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
|
|
||||||
engines: {node: '>= 0.4'}
|
|
||||||
dependencies:
|
|
||||||
es-errors: 1.3.0
|
|
||||||
hasown: 2.0.1
|
|
||||||
side-channel: 1.0.5
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/ip-address@9.0.5:
|
/ip-address@9.0.5:
|
||||||
resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==}
|
resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==}
|
||||||
engines: {node: '>= 12'}
|
engines: {node: '>= 12'}
|
||||||
@ -4612,24 +4457,10 @@ packages:
|
|||||||
has-tostringtag: 1.0.2
|
has-tostringtag: 1.0.2
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/is-array-buffer@3.0.4:
|
|
||||||
resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==}
|
|
||||||
engines: {node: '>= 0.4'}
|
|
||||||
dependencies:
|
|
||||||
call-bind: 1.0.7
|
|
||||||
get-intrinsic: 1.2.4
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/is-arrayish@0.2.1:
|
/is-arrayish@0.2.1:
|
||||||
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
|
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/is-bigint@1.0.4:
|
|
||||||
resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
|
|
||||||
dependencies:
|
|
||||||
has-bigints: 1.0.2
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/is-binary-path@2.1.0:
|
/is-binary-path@2.1.0:
|
||||||
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
|
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
|
||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
@ -4637,14 +4468,6 @@ packages:
|
|||||||
binary-extensions: 2.2.0
|
binary-extensions: 2.2.0
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/is-boolean-object@1.1.2:
|
|
||||||
resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
|
|
||||||
engines: {node: '>= 0.4'}
|
|
||||||
dependencies:
|
|
||||||
call-bind: 1.0.7
|
|
||||||
has-tostringtag: 1.0.2
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/is-buffer@1.1.6:
|
/is-buffer@1.1.6:
|
||||||
resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==}
|
resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==}
|
||||||
dev: true
|
dev: true
|
||||||
@ -4681,13 +4504,6 @@ packages:
|
|||||||
hasown: 2.0.1
|
hasown: 2.0.1
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/is-date-object@1.0.5:
|
|
||||||
resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
|
|
||||||
engines: {node: '>= 0.4'}
|
|
||||||
dependencies:
|
|
||||||
has-tostringtag: 1.0.2
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/is-descriptor@0.1.7:
|
/is-descriptor@0.1.7:
|
||||||
resolution: {integrity: sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==}
|
resolution: {integrity: sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==}
|
||||||
engines: {node: '>= 0.4'}
|
engines: {node: '>= 0.4'}
|
||||||
@ -4786,23 +4602,11 @@ packages:
|
|||||||
define-properties: 1.2.1
|
define-properties: 1.2.1
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/is-negative-zero@2.0.3:
|
|
||||||
resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
|
|
||||||
engines: {node: '>= 0.4'}
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/is-npm@6.0.0:
|
/is-npm@6.0.0:
|
||||||
resolution: {integrity: sha512-JEjxbSmtPSt1c8XTkVrlujcXdKV1/tvuQ7GwKcAlyiVLeYFQ2VHat8xfrDJsIkhCdF/tZ7CiIR3sy141c6+gPQ==}
|
resolution: {integrity: sha512-JEjxbSmtPSt1c8XTkVrlujcXdKV1/tvuQ7GwKcAlyiVLeYFQ2VHat8xfrDJsIkhCdF/tZ7CiIR3sy141c6+gPQ==}
|
||||||
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
|
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/is-number-object@1.0.7:
|
|
||||||
resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
|
|
||||||
engines: {node: '>= 0.4'}
|
|
||||||
dependencies:
|
|
||||||
has-tostringtag: 1.0.2
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/is-number@3.0.0:
|
/is-number@3.0.0:
|
||||||
resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==}
|
resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==}
|
||||||
engines: {node: '>=0.10.0'}
|
engines: {node: '>=0.10.0'}
|
||||||
@ -4837,26 +4641,11 @@ packages:
|
|||||||
isobject: 3.0.1
|
isobject: 3.0.1
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/is-regex@1.1.4:
|
|
||||||
resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
|
|
||||||
engines: {node: '>= 0.4'}
|
|
||||||
dependencies:
|
|
||||||
call-bind: 1.0.7
|
|
||||||
has-tostringtag: 1.0.2
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/is-retry-allowed@2.2.0:
|
/is-retry-allowed@2.2.0:
|
||||||
resolution: {integrity: sha512-XVm7LOeLpTW4jV19QSH38vkswxoLud8sQ57YwJVTPWdiaI9I8keEhGFpBlslyVsgdQy4Opg8QOLb8YRgsyZiQg==}
|
resolution: {integrity: sha512-XVm7LOeLpTW4jV19QSH38vkswxoLud8sQ57YwJVTPWdiaI9I8keEhGFpBlslyVsgdQy4Opg8QOLb8YRgsyZiQg==}
|
||||||
engines: {node: '>=10'}
|
engines: {node: '>=10'}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/is-shared-array-buffer@1.0.3:
|
|
||||||
resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==}
|
|
||||||
engines: {node: '>= 0.4'}
|
|
||||||
dependencies:
|
|
||||||
call-bind: 1.0.7
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/is-stream@2.0.1:
|
/is-stream@2.0.1:
|
||||||
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
|
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
|
||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
@ -4867,20 +4656,6 @@ packages:
|
|||||||
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
|
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/is-string@1.0.7:
|
|
||||||
resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
|
|
||||||
engines: {node: '>= 0.4'}
|
|
||||||
dependencies:
|
|
||||||
has-tostringtag: 1.0.2
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/is-symbol@1.0.4:
|
|
||||||
resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
|
|
||||||
engines: {node: '>= 0.4'}
|
|
||||||
dependencies:
|
|
||||||
has-symbols: 1.0.3
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/is-there@4.5.1:
|
/is-there@4.5.1:
|
||||||
resolution: {integrity: sha512-vIZ7HTXAoRoIwYSsTnxb0sg9L6rth+JOulNcavsbskQkCIWoSM2cjFOWZs4wGziGZER+Xgs/HXiCQZgiL8ppxQ==}
|
resolution: {integrity: sha512-vIZ7HTXAoRoIwYSsTnxb0sg9L6rth+JOulNcavsbskQkCIWoSM2cjFOWZs4wGziGZER+Xgs/HXiCQZgiL8ppxQ==}
|
||||||
dev: true
|
dev: true
|
||||||
@ -4896,12 +4671,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
|
resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/is-weakref@1.0.2:
|
|
||||||
resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
|
|
||||||
dependencies:
|
|
||||||
call-bind: 1.0.7
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/is-windows@1.0.2:
|
/is-windows@1.0.2:
|
||||||
resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
|
resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
|
||||||
engines: {node: '>=0.10.0'}
|
engines: {node: '>=0.10.0'}
|
||||||
@ -4923,10 +4692,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
|
resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/isarray@2.0.5:
|
|
||||||
resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/isexe@2.0.0:
|
/isexe@2.0.0:
|
||||||
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
|
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
|
||||||
dev: true
|
dev: true
|
||||||
@ -5001,10 +4766,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
|
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/json-parse-better-errors@1.0.2:
|
|
||||||
resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==}
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/json-parse-even-better-errors@2.3.1:
|
/json-parse-even-better-errors@2.3.1:
|
||||||
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
|
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
|
||||||
dev: true
|
dev: true
|
||||||
@ -5167,16 +4928,6 @@ packages:
|
|||||||
wrap-ansi: 9.0.0
|
wrap-ansi: 9.0.0
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/load-json-file@4.0.0:
|
|
||||||
resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==}
|
|
||||||
engines: {node: '>=4'}
|
|
||||||
dependencies:
|
|
||||||
graceful-fs: 4.2.11
|
|
||||||
parse-json: 4.0.0
|
|
||||||
pify: 3.0.0
|
|
||||||
strip-bom: 3.0.0
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/loader-utils@1.4.2:
|
/loader-utils@1.4.2:
|
||||||
resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==}
|
resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==}
|
||||||
engines: {node: '>=4.0.0'}
|
engines: {node: '>=4.0.0'}
|
||||||
@ -5383,11 +5134,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==}
|
resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/memorystream@0.3.1:
|
|
||||||
resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==}
|
|
||||||
engines: {node: '>= 0.10.0'}
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/merge-options@1.0.1:
|
/merge-options@1.0.1:
|
||||||
resolution: {integrity: sha512-iuPV41VWKWBIOpBsjoxjDZw8/GbSfZ2mk7N1453bwMrfzdrIk7EzBd+8UVR6rkw67th7xnk9Dytl3J+lHPdxvg==}
|
resolution: {integrity: sha512-iuPV41VWKWBIOpBsjoxjDZw8/GbSfZ2mk7N1453bwMrfzdrIk7EzBd+8UVR6rkw67th7xnk9Dytl3J+lHPdxvg==}
|
||||||
engines: {node: '>=4'}
|
engines: {node: '>=4'}
|
||||||
@ -5871,10 +5617,6 @@ packages:
|
|||||||
engines: {node: '>= 0.6'}
|
engines: {node: '>= 0.6'}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/nice-try@1.0.5:
|
|
||||||
resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/node-fetch-native@1.6.2:
|
/node-fetch-native@1.6.2:
|
||||||
resolution: {integrity: sha512-69mtXOFZ6hSkYiXAVB5SqaRvrbITC/NPyqv7yuu/qw0nmgPyYbIMYYNIDhNtwPrzk0ptrimrLz/hhjvm4w5Z+w==}
|
resolution: {integrity: sha512-69mtXOFZ6hSkYiXAVB5SqaRvrbITC/NPyqv7yuu/qw0nmgPyYbIMYYNIDhNtwPrzk0ptrimrLz/hhjvm4w5Z+w==}
|
||||||
|
|
||||||
@ -6043,22 +5785,6 @@ packages:
|
|||||||
- supports-color
|
- supports-color
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/npm-run-all@4.1.5:
|
|
||||||
resolution: {integrity: sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==}
|
|
||||||
engines: {node: '>= 4'}
|
|
||||||
hasBin: true
|
|
||||||
dependencies:
|
|
||||||
ansi-styles: 3.2.1
|
|
||||||
chalk: 2.4.2
|
|
||||||
cross-spawn: 6.0.5
|
|
||||||
memorystream: 0.3.1
|
|
||||||
minimatch: 3.1.2
|
|
||||||
pidtree: 0.3.1
|
|
||||||
read-pkg: 3.0.0
|
|
||||||
shell-quote: 1.8.1
|
|
||||||
string.prototype.padend: 3.1.5
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/npm-run-path@4.0.1:
|
/npm-run-path@4.0.1:
|
||||||
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
|
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
|
||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
@ -6120,6 +5846,7 @@ packages:
|
|||||||
|
|
||||||
/object-inspect@1.13.1:
|
/object-inspect@1.13.1:
|
||||||
resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==}
|
resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
/object-is@1.1.5:
|
/object-is@1.1.5:
|
||||||
resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==}
|
resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==}
|
||||||
@ -6307,14 +6034,6 @@ packages:
|
|||||||
hasBin: true
|
hasBin: true
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/parse-json@4.0.0:
|
|
||||||
resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==}
|
|
||||||
engines: {node: '>=4'}
|
|
||||||
dependencies:
|
|
||||||
error-ex: 1.3.2
|
|
||||||
json-parse-better-errors: 1.0.2
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/parse-json@5.2.0:
|
/parse-json@5.2.0:
|
||||||
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
|
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
|
||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
@ -6344,11 +6063,6 @@ packages:
|
|||||||
engines: {node: '>=0.10.0'}
|
engines: {node: '>=0.10.0'}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/path-key@2.0.1:
|
|
||||||
resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==}
|
|
||||||
engines: {node: '>=4'}
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/path-key@3.1.1:
|
/path-key@3.1.1:
|
||||||
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
|
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
|
||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
@ -6371,13 +6085,6 @@ packages:
|
|||||||
minipass: 7.0.4
|
minipass: 7.0.4
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/path-type@3.0.0:
|
|
||||||
resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==}
|
|
||||||
engines: {node: '>=4'}
|
|
||||||
dependencies:
|
|
||||||
pify: 3.0.0
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/path-type@4.0.0:
|
/path-type@4.0.0:
|
||||||
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
|
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
|
||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
@ -6403,23 +6110,12 @@ packages:
|
|||||||
engines: {node: '>=8.6'}
|
engines: {node: '>=8.6'}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/pidtree@0.3.1:
|
|
||||||
resolution: {integrity: sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==}
|
|
||||||
engines: {node: '>=0.10'}
|
|
||||||
hasBin: true
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/pidtree@0.6.0:
|
/pidtree@0.6.0:
|
||||||
resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==}
|
resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==}
|
||||||
engines: {node: '>=0.10'}
|
engines: {node: '>=0.10'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/pify@3.0.0:
|
|
||||||
resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==}
|
|
||||||
engines: {node: '>=4'}
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/pinia@2.1.7(typescript@5.3.3)(vue@3.4.19):
|
/pinia@2.1.7(typescript@5.3.3)(vue@3.4.19):
|
||||||
resolution: {integrity: sha512-+C2AHFtcFqjPih0zpYuvof37SFxMQ7OEG2zV9jRI12i9BOy3YQVAHwdKtyyc8pDcDyIc33WCIsZaCFWU7WWxGQ==}
|
resolution: {integrity: sha512-+C2AHFtcFqjPih0zpYuvof37SFxMQ7OEG2zV9jRI12i9BOy3YQVAHwdKtyyc8pDcDyIc33WCIsZaCFWU7WWxGQ==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@ -6764,15 +6460,6 @@ packages:
|
|||||||
type-fest: 0.8.1
|
type-fest: 0.8.1
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/read-pkg@3.0.0:
|
|
||||||
resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==}
|
|
||||||
engines: {node: '>=4'}
|
|
||||||
dependencies:
|
|
||||||
load-json-file: 4.0.0
|
|
||||||
normalize-package-data: 2.5.0
|
|
||||||
path-type: 3.0.0
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/read-pkg@5.2.0:
|
/read-pkg@5.2.0:
|
||||||
resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==}
|
resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==}
|
||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
@ -6827,16 +6514,6 @@ packages:
|
|||||||
hasBin: true
|
hasBin: true
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/regexp.prototype.flags@1.5.2:
|
|
||||||
resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==}
|
|
||||||
engines: {node: '>= 0.4'}
|
|
||||||
dependencies:
|
|
||||||
call-bind: 1.0.7
|
|
||||||
define-properties: 1.2.1
|
|
||||||
es-errors: 1.3.0
|
|
||||||
set-function-name: 2.0.2
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/registry-auth-token@5.0.2:
|
/registry-auth-token@5.0.2:
|
||||||
resolution: {integrity: sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==}
|
resolution: {integrity: sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==}
|
||||||
engines: {node: '>=14'}
|
engines: {node: '>=14'}
|
||||||
@ -6993,29 +6670,10 @@ packages:
|
|||||||
queue-microtask: 1.2.3
|
queue-microtask: 1.2.3
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/safe-array-concat@1.1.0:
|
|
||||||
resolution: {integrity: sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==}
|
|
||||||
engines: {node: '>=0.4'}
|
|
||||||
dependencies:
|
|
||||||
call-bind: 1.0.7
|
|
||||||
get-intrinsic: 1.2.4
|
|
||||||
has-symbols: 1.0.3
|
|
||||||
isarray: 2.0.5
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/safe-buffer@5.2.1:
|
/safe-buffer@5.2.1:
|
||||||
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
|
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/safe-regex-test@1.0.3:
|
|
||||||
resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==}
|
|
||||||
engines: {node: '>= 0.4'}
|
|
||||||
dependencies:
|
|
||||||
call-bind: 1.0.7
|
|
||||||
es-errors: 1.3.0
|
|
||||||
is-regex: 1.1.4
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/safe-regex@1.1.0:
|
/safe-regex@1.1.0:
|
||||||
resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==}
|
resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -7090,16 +6748,6 @@ packages:
|
|||||||
gopd: 1.0.1
|
gopd: 1.0.1
|
||||||
has-property-descriptors: 1.0.2
|
has-property-descriptors: 1.0.2
|
||||||
|
|
||||||
/set-function-name@2.0.2:
|
|
||||||
resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
|
|
||||||
engines: {node: '>= 0.4'}
|
|
||||||
dependencies:
|
|
||||||
define-data-property: 1.1.4
|
|
||||||
es-errors: 1.3.0
|
|
||||||
functions-have-names: 1.2.3
|
|
||||||
has-property-descriptors: 1.0.2
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/set-value@2.0.1:
|
/set-value@2.0.1:
|
||||||
resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==}
|
resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==}
|
||||||
engines: {node: '>=0.10.0'}
|
engines: {node: '>=0.10.0'}
|
||||||
@ -7110,13 +6758,6 @@ packages:
|
|||||||
split-string: 3.1.0
|
split-string: 3.1.0
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/shebang-command@1.2.0:
|
|
||||||
resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
|
|
||||||
engines: {node: '>=0.10.0'}
|
|
||||||
dependencies:
|
|
||||||
shebang-regex: 1.0.0
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/shebang-command@2.0.0:
|
/shebang-command@2.0.0:
|
||||||
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
|
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
|
||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
@ -7124,20 +6765,11 @@ packages:
|
|||||||
shebang-regex: 3.0.0
|
shebang-regex: 3.0.0
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/shebang-regex@1.0.0:
|
|
||||||
resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==}
|
|
||||||
engines: {node: '>=0.10.0'}
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/shebang-regex@3.0.0:
|
/shebang-regex@3.0.0:
|
||||||
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
|
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
|
||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/shell-quote@1.8.1:
|
|
||||||
resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==}
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/side-channel@1.0.5:
|
/side-channel@1.0.5:
|
||||||
resolution: {integrity: sha512-QcgiIWV4WV7qWExbN5llt6frQB/lBven9pqliLXfGPB+K9ZYXxDozp0wLkHS24kWCm+6YXH/f0HhnObZnZOBnQ==}
|
resolution: {integrity: sha512-QcgiIWV4WV7qWExbN5llt6frQB/lBven9pqliLXfGPB+K9ZYXxDozp0wLkHS24kWCm+6YXH/f0HhnObZnZOBnQ==}
|
||||||
engines: {node: '>= 0.4'}
|
engines: {node: '>= 0.4'}
|
||||||
@ -7146,6 +6778,7 @@ packages:
|
|||||||
es-errors: 1.3.0
|
es-errors: 1.3.0
|
||||||
get-intrinsic: 1.2.4
|
get-intrinsic: 1.2.4
|
||||||
object-inspect: 1.13.1
|
object-inspect: 1.13.1
|
||||||
|
dev: false
|
||||||
|
|
||||||
/signal-exit@3.0.7:
|
/signal-exit@3.0.7:
|
||||||
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
|
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
|
||||||
@ -7433,40 +7066,6 @@ packages:
|
|||||||
strip-ansi: 7.1.0
|
strip-ansi: 7.1.0
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/string.prototype.padend@3.1.5:
|
|
||||||
resolution: {integrity: sha512-DOB27b/2UTTD+4myKUFh+/fXWcu/UDyASIXfg+7VzoCNNGOfWvoyU/x5pvVHr++ztyt/oSYI1BcWBBG/hmlNjA==}
|
|
||||||
engines: {node: '>= 0.4'}
|
|
||||||
dependencies:
|
|
||||||
call-bind: 1.0.7
|
|
||||||
define-properties: 1.2.1
|
|
||||||
es-abstract: 1.22.4
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/string.prototype.trim@1.2.8:
|
|
||||||
resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==}
|
|
||||||
engines: {node: '>= 0.4'}
|
|
||||||
dependencies:
|
|
||||||
call-bind: 1.0.7
|
|
||||||
define-properties: 1.2.1
|
|
||||||
es-abstract: 1.22.4
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/string.prototype.trimend@1.0.7:
|
|
||||||
resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==}
|
|
||||||
dependencies:
|
|
||||||
call-bind: 1.0.7
|
|
||||||
define-properties: 1.2.1
|
|
||||||
es-abstract: 1.22.4
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/string.prototype.trimstart@1.0.7:
|
|
||||||
resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==}
|
|
||||||
dependencies:
|
|
||||||
call-bind: 1.0.7
|
|
||||||
define-properties: 1.2.1
|
|
||||||
es-abstract: 1.22.4
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/string_decoder@1.3.0:
|
/string_decoder@1.3.0:
|
||||||
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
|
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -7494,11 +7093,6 @@ packages:
|
|||||||
ansi-regex: 6.0.1
|
ansi-regex: 6.0.1
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/strip-bom@3.0.0:
|
|
||||||
resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
|
|
||||||
engines: {node: '>=4'}
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/strip-final-newline@2.0.0:
|
/strip-final-newline@2.0.0:
|
||||||
resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
|
resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
|
||||||
engines: {node: '>=6'}
|
engines: {node: '>=6'}
|
||||||
@ -7759,50 +7353,6 @@ packages:
|
|||||||
engines: {node: '>=14.16'}
|
engines: {node: '>=14.16'}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/typed-array-buffer@1.0.2:
|
|
||||||
resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==}
|
|
||||||
engines: {node: '>= 0.4'}
|
|
||||||
dependencies:
|
|
||||||
call-bind: 1.0.7
|
|
||||||
es-errors: 1.3.0
|
|
||||||
is-typed-array: 1.1.13
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/typed-array-byte-length@1.0.1:
|
|
||||||
resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==}
|
|
||||||
engines: {node: '>= 0.4'}
|
|
||||||
dependencies:
|
|
||||||
call-bind: 1.0.7
|
|
||||||
for-each: 0.3.3
|
|
||||||
gopd: 1.0.1
|
|
||||||
has-proto: 1.0.3
|
|
||||||
is-typed-array: 1.1.13
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/typed-array-byte-offset@1.0.2:
|
|
||||||
resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==}
|
|
||||||
engines: {node: '>= 0.4'}
|
|
||||||
dependencies:
|
|
||||||
available-typed-arrays: 1.0.7
|
|
||||||
call-bind: 1.0.7
|
|
||||||
for-each: 0.3.3
|
|
||||||
gopd: 1.0.1
|
|
||||||
has-proto: 1.0.3
|
|
||||||
is-typed-array: 1.1.13
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/typed-array-length@1.0.5:
|
|
||||||
resolution: {integrity: sha512-yMi0PlwuznKHxKmcpoOdeLwxBoVPkqZxd7q2FgMkmD3bNwvF5VW0+UlUQ1k1vmktTu4Yu13Q0RIxEP8+B+wloA==}
|
|
||||||
engines: {node: '>= 0.4'}
|
|
||||||
dependencies:
|
|
||||||
call-bind: 1.0.7
|
|
||||||
for-each: 0.3.3
|
|
||||||
gopd: 1.0.1
|
|
||||||
has-proto: 1.0.3
|
|
||||||
is-typed-array: 1.1.13
|
|
||||||
possible-typed-array-names: 1.0.0
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/typed-css-modules@0.9.1:
|
/typed-css-modules@0.9.1:
|
||||||
resolution: {integrity: sha512-W2HWKncdKd+bLWsnuWB2EyuQBzZ7KJ9Byr/67KLiiyGegcN52rOveun9JR8yAvuL5IXunRMxt0eORMtAUj5bmA==}
|
resolution: {integrity: sha512-W2HWKncdKd+bLWsnuWB2EyuQBzZ7KJ9Byr/67KLiiyGegcN52rOveun9JR8yAvuL5IXunRMxt0eORMtAUj5bmA==}
|
||||||
engines: {node: '>=18.0.0'}
|
engines: {node: '>=18.0.0'}
|
||||||
@ -7837,15 +7387,6 @@ packages:
|
|||||||
/ufo@1.4.0:
|
/ufo@1.4.0:
|
||||||
resolution: {integrity: sha512-Hhy+BhRBleFjpJ2vchUNN40qgkh0366FWJGqVLYBHev0vpHTrXSA0ryT+74UiW6KWsldNurQMKGqCm1M2zBciQ==}
|
resolution: {integrity: sha512-Hhy+BhRBleFjpJ2vchUNN40qgkh0366FWJGqVLYBHev0vpHTrXSA0ryT+74UiW6KWsldNurQMKGqCm1M2zBciQ==}
|
||||||
|
|
||||||
/unbox-primitive@1.0.2:
|
|
||||||
resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
|
|
||||||
dependencies:
|
|
||||||
call-bind: 1.0.7
|
|
||||||
has-bigints: 1.0.2
|
|
||||||
has-symbols: 1.0.3
|
|
||||||
which-boxed-primitive: 1.0.2
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/unconfig@0.3.11:
|
/unconfig@0.3.11:
|
||||||
resolution: {integrity: sha512-bV/nqePAKv71v3HdVUn6UefbsDKQWRX+bJIkiSm0+twIds6WiD2bJLWWT3i214+J/B4edufZpG2w7Y63Vbwxow==}
|
resolution: {integrity: sha512-bV/nqePAKv71v3HdVUn6UefbsDKQWRX+bJIkiSm0+twIds6WiD2bJLWWT3i214+J/B4edufZpG2w7Y63Vbwxow==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -8394,16 +7935,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==}
|
resolution: {integrity: sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/which-boxed-primitive@1.0.2:
|
|
||||||
resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
|
|
||||||
dependencies:
|
|
||||||
is-bigint: 1.0.4
|
|
||||||
is-boolean-object: 1.1.2
|
|
||||||
is-number-object: 1.0.7
|
|
||||||
is-string: 1.0.7
|
|
||||||
is-symbol: 1.0.4
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/which-typed-array@1.1.14:
|
/which-typed-array@1.1.14:
|
||||||
resolution: {integrity: sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg==}
|
resolution: {integrity: sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg==}
|
||||||
engines: {node: '>= 0.4'}
|
engines: {node: '>= 0.4'}
|
||||||
@ -8415,13 +7946,6 @@ packages:
|
|||||||
has-tostringtag: 1.0.2
|
has-tostringtag: 1.0.2
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/which@1.3.1:
|
|
||||||
resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
|
|
||||||
hasBin: true
|
|
||||||
dependencies:
|
|
||||||
isexe: 2.0.0
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/which@2.0.2:
|
/which@2.0.2:
|
||||||
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
|
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
|
||||||
engines: {node: '>= 8'}
|
engines: {node: '>= 8'}
|
||||||
|
@ -1,14 +1,13 @@
|
|||||||
import { BACKEND_ERROR_CODE, createFlatRequest, createRequest } from '@sa/axios';
|
import { BACKEND_ERROR_CODE, createFlatRequest, createRequest } from '@sa/axios';
|
||||||
import { localStg } from '@/utils/storage';
|
import { localStg } from '@/utils/storage';
|
||||||
import { createProxyPattern, createServiceConfig } from '~/env.config';
|
import { getServiceBaseURL } from '@/utils/service';
|
||||||
|
|
||||||
const { baseURL, otherBaseURL } = createServiceConfig(import.meta.env);
|
|
||||||
|
|
||||||
const isHttpProxy = import.meta.env.VITE_HTTP_PROXY === 'Y';
|
const isHttpProxy = import.meta.env.VITE_HTTP_PROXY === 'Y';
|
||||||
|
const { baseURL, otherBaseURL } = getServiceBaseURL(import.meta.env, isHttpProxy);
|
||||||
|
|
||||||
export const request = createFlatRequest<App.Service.Response>(
|
export const request = createFlatRequest<App.Service.Response>(
|
||||||
{
|
{
|
||||||
baseURL: isHttpProxy ? createProxyPattern() : baseURL,
|
baseURL,
|
||||||
headers: {
|
headers: {
|
||||||
apifoxToken: 'XL299LiMEDZ0H5h3A29PxwQXdMJqWyY2'
|
apifoxToken: 'XL299LiMEDZ0H5h3A29PxwQXdMJqWyY2'
|
||||||
}
|
}
|
||||||
@ -53,7 +52,7 @@ export const request = createFlatRequest<App.Service.Response>(
|
|||||||
|
|
||||||
export const demoRequest = createRequest<App.Service.DemoResponse>(
|
export const demoRequest = createRequest<App.Service.DemoResponse>(
|
||||||
{
|
{
|
||||||
baseURL: isHttpProxy ? createProxyPattern('demo') : otherBaseURL.demo
|
baseURL: otherBaseURL.demo
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
async onRequest(config) {
|
async onRequest(config) {
|
||||||
|
25
src/typings/app.d.ts
vendored
25
src/typings/app.d.ts
vendored
@ -600,22 +600,29 @@ declare namespace App {
|
|||||||
|
|
||||||
/** Service namespace */
|
/** Service namespace */
|
||||||
namespace Service {
|
namespace Service {
|
||||||
/** The backend service env type */
|
|
||||||
type EnvType = 'dev' | 'test' | 'prod';
|
|
||||||
|
|
||||||
/** Other baseURL key */
|
/** Other baseURL key */
|
||||||
type OtherBaseURLKey = 'demo';
|
type OtherBaseURLKey = 'demo';
|
||||||
|
|
||||||
/** The backend service config */
|
interface ServiceConfigItem {
|
||||||
interface ServiceConfig<T extends OtherBaseURLKey = OtherBaseURLKey> {
|
|
||||||
/** The backend service base url */
|
/** The backend service base url */
|
||||||
baseURL: string;
|
baseURL: string;
|
||||||
/** Other backend service base url map */
|
/** The proxy pattern of the backend service base url */
|
||||||
otherBaseURL: Record<T, string>;
|
proxyPattern: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** The backend service config map */
|
interface OtherServiceConfigItem extends ServiceConfigItem {
|
||||||
type ServiceConfigMap = Record<EnvType, ServiceConfig>;
|
key: OtherBaseURLKey;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** The backend service config */
|
||||||
|
interface ServiceConfig extends ServiceConfigItem {
|
||||||
|
/** Other backend service config */
|
||||||
|
other: OtherServiceConfigItem[];
|
||||||
|
}
|
||||||
|
|
||||||
|
interface SimpleServiceConfig extends Pick<ServiceConfigItem, 'baseURL'> {
|
||||||
|
other: Record<OtherBaseURLKey, string>;
|
||||||
|
}
|
||||||
|
|
||||||
/** The backend service response data */
|
/** The backend service response data */
|
||||||
type Response<T = unknown> = {
|
type Response<T = unknown> = {
|
||||||
|
10
src/typings/env.d.ts
vendored
10
src/typings/env.d.ts
vendored
@ -25,14 +25,20 @@ declare namespace Env {
|
|||||||
* This prefix is start with the icon prefix
|
* This prefix is start with the icon prefix
|
||||||
*/
|
*/
|
||||||
readonly VITE_ICON_LOCAL_PREFIX: 'local-icon';
|
readonly VITE_ICON_LOCAL_PREFIX: 'local-icon';
|
||||||
|
/** backend service base url */
|
||||||
|
readonly VITE_SERVICE_BASE_URL: string;
|
||||||
|
/**
|
||||||
|
* other backend service base url
|
||||||
|
*
|
||||||
|
* the value is a json
|
||||||
|
*/
|
||||||
|
readonly VITE_OTHER_SERVICE_BASE_URL: string;
|
||||||
/**
|
/**
|
||||||
* Whether to enable the http proxy
|
* Whether to enable the http proxy
|
||||||
*
|
*
|
||||||
* Only valid in the development environment
|
* Only valid in the development environment
|
||||||
*/
|
*/
|
||||||
readonly VITE_HTTP_PROXY?: CommonType.YesOrNo;
|
readonly VITE_HTTP_PROXY?: CommonType.YesOrNo;
|
||||||
/** The back service env */
|
|
||||||
readonly VITE_SERVICE_ENV?: App.Service.EnvType;
|
|
||||||
/**
|
/**
|
||||||
* The auth route mode
|
* The auth route mode
|
||||||
*
|
*
|
||||||
|
73
src/utils/service.ts
Normal file
73
src/utils/service.ts
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
/**
|
||||||
|
* Create service config by current env
|
||||||
|
*
|
||||||
|
* @param env The current env
|
||||||
|
*/
|
||||||
|
export function createServiceConfig(env: Env.ImportMeta) {
|
||||||
|
const { VITE_SERVICE_BASE_URL, VITE_OTHER_SERVICE_BASE_URL } = env;
|
||||||
|
|
||||||
|
let other = {} as Record<App.Service.OtherBaseURLKey, string>;
|
||||||
|
try {
|
||||||
|
other = JSON.parse(VITE_OTHER_SERVICE_BASE_URL);
|
||||||
|
} catch (error) {
|
||||||
|
// eslint-disable-next-line no-console
|
||||||
|
console.error('VITE_OTHER_SERVICE_BASE_URL is not a valid JSON string');
|
||||||
|
}
|
||||||
|
|
||||||
|
const httpConfig: App.Service.SimpleServiceConfig = {
|
||||||
|
baseURL: VITE_SERVICE_BASE_URL,
|
||||||
|
other
|
||||||
|
};
|
||||||
|
|
||||||
|
const otherHttpKeys = Object.keys(httpConfig.other) as App.Service.OtherBaseURLKey[];
|
||||||
|
|
||||||
|
const otherConfig: App.Service.OtherServiceConfigItem[] = otherHttpKeys.map(key => {
|
||||||
|
return {
|
||||||
|
key,
|
||||||
|
baseURL: httpConfig.other[key],
|
||||||
|
proxyPattern: createProxyPattern(key)
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
|
const config: App.Service.ServiceConfig = {
|
||||||
|
baseURL: httpConfig.baseURL,
|
||||||
|
proxyPattern: createProxyPattern(),
|
||||||
|
other: otherConfig
|
||||||
|
};
|
||||||
|
|
||||||
|
return config;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* get backend service base url
|
||||||
|
*
|
||||||
|
* @param env - the current env
|
||||||
|
* @param isProxy - if use proxy
|
||||||
|
*/
|
||||||
|
export function getServiceBaseURL(env: Env.ImportMeta, isProxy: boolean) {
|
||||||
|
const { baseURL, other } = createServiceConfig(env);
|
||||||
|
|
||||||
|
const otherBaseURL = {} as Record<App.Service.OtherBaseURLKey, string>;
|
||||||
|
|
||||||
|
other.forEach(item => {
|
||||||
|
otherBaseURL[item.key] = isProxy ? item.proxyPattern : item.baseURL;
|
||||||
|
});
|
||||||
|
|
||||||
|
return {
|
||||||
|
baseURL: isProxy ? createProxyPattern() : baseURL,
|
||||||
|
otherBaseURL
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get proxy pattern of backend service base url
|
||||||
|
*
|
||||||
|
* @param key If not set, will use the default key
|
||||||
|
*/
|
||||||
|
function createProxyPattern(key?: App.Service.OtherBaseURLKey) {
|
||||||
|
if (!key) {
|
||||||
|
return '/proxy-default';
|
||||||
|
}
|
||||||
|
|
||||||
|
return `/proxy-${key}`;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user