mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 13:17:46 +00:00
fix: bug
This commit is contained in:
parent
2e7e6588a8
commit
78ba547138
10 changed files with 271 additions and 103 deletions
|
|
@ -1,7 +1,3 @@
|
|||
ELECTRON_WEB_SERVER_PORT = 42710
|
||||
ELECTRON_DEV_NETEASE_API_PORT = 3000
|
||||
VITE_APP_NETEASE_API_URL = /netease
|
||||
|
||||
# 部署到 Vercel 或 Netlify 等服务时写在配置文件 rewrite 中的网易云 API 地址
|
||||
# 注意此时 VITE_APP_NETEASE_API_URL 的值要设置成 /netease
|
||||
NETEASE_API_URL_FOR_REWRITE = https://example.your.netease.api.com
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@
|
|||
"devDependencies": {
|
||||
"eslint": "^8.15.0",
|
||||
"prettier": "^2.6.2",
|
||||
"turbo": "^1.2.8",
|
||||
"turbo": "^1.2.9",
|
||||
"typescript": "^4.6.4"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -74,7 +74,7 @@ class DB {
|
|||
this.sqlite = new SQLite3(this.dbFilePath, {
|
||||
nativeBinding: path.join(
|
||||
__dirname,
|
||||
`./better_sqlite3_${process.arch}.node`
|
||||
`./binary/better_sqlite3_${process.arch}.node`
|
||||
),
|
||||
})
|
||||
this.sqlite.pragma('auto_vacuum = FULL')
|
||||
|
|
|
|||
|
|
@ -39,12 +39,12 @@
|
|||
"axios": "^0.27.2",
|
||||
"cross-env": "^7.0.3",
|
||||
"dotenv": "^16.0.0",
|
||||
"electron": "^18.2.2",
|
||||
"electron": "^18.2.1",
|
||||
"electron-builder": "^23.0.3",
|
||||
"electron-devtools-installer": "^3.2.0",
|
||||
"electron-rebuild": "^3.2.7",
|
||||
"electron-releases": "^3.1009.0",
|
||||
"esbuild": "^0.14.38",
|
||||
"esbuild": "^0.14.39",
|
||||
"eslint": "*",
|
||||
"express-fileupload": "^1.3.1",
|
||||
"minimist": "^1.2.6",
|
||||
|
|
|
|||
|
|
@ -24,8 +24,8 @@ const isLinux = process.platform === 'linux'
|
|||
|
||||
const projectDir = path.resolve(process.cwd(), '../../')
|
||||
|
||||
if (!fs.existsSync(`${projectDir}/src/main/dist`)) {
|
||||
fs.mkdirSync(`${projectDir}/src/main/dist`, {
|
||||
if (!fs.existsSync(`${projectDir}/packages/electron/dist/binary`)) {
|
||||
fs.mkdirSync(`${projectDir}/packages/electron/dist/binary`, {
|
||||
recursive: true,
|
||||
})
|
||||
}
|
||||
|
|
@ -70,7 +70,7 @@ const download = async arch => {
|
|||
try {
|
||||
fs.copyFileSync(
|
||||
`${dir}/build/Release/better_sqlite3.node`,
|
||||
`${projectDir}/src/main/dist/better_sqlite3_${arch}.node`
|
||||
`${projectDir}/packages/electron/dist/binary/better_sqlite3_${arch}.node`
|
||||
)
|
||||
} catch (e) {
|
||||
console.log(pc.red('Copy failed! Skip copy.', e))
|
||||
|
|
@ -93,8 +93,6 @@ const build = async arch => {
|
|||
|
||||
console.log(pc.cyan(`Building for ${arch}...`))
|
||||
await rebuild({
|
||||
// projectRootPath: projectDir,
|
||||
// buildPath: process.cwd(),
|
||||
projectRootPath: projectDir,
|
||||
buildPath: process.cwd(),
|
||||
electronVersion,
|
||||
|
|
@ -106,7 +104,7 @@ const build = async arch => {
|
|||
console.info('Build succeeded')
|
||||
fs.copyFileSync(
|
||||
`${projectDir}/node_modules/better-sqlite3/build/Release/better_sqlite3.node`,
|
||||
`${projectDir}/src/main/dist/better_sqlite3_${arch}.node`
|
||||
`${projectDir}/packages/electron/dist/binary/better_sqlite3_${arch}.node`
|
||||
)
|
||||
})
|
||||
.catch(e => {
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
"version": "2.0.0",
|
||||
"scripts": {
|
||||
"dev": "vite dev --host",
|
||||
"build": "node ./scripts/build.web.mjs",
|
||||
"build": "vite build",
|
||||
"test": "vitest",
|
||||
"test:ui": "vitest --ui",
|
||||
"test:coverage": "vitest run --coverage",
|
||||
|
|
|
|||
|
|
@ -1,37 +0,0 @@
|
|||
import { build } from 'vite'
|
||||
import { promises as fs } from 'fs'
|
||||
|
||||
const main = async () => {
|
||||
const api = process.env.VITE_APP_NETEASE_API_URL || ''
|
||||
const rewriteApi = process.env.NETEASE_API_URL_FOR_REWRITE || ''
|
||||
|
||||
/**
|
||||
* 使用 Vercel 的 rewrite 功能来帮我们解决跨域的问题
|
||||
* @see https://vercel.com/docs/project-configuration#project-configuration/rewrites
|
||||
*/
|
||||
if (process.env.VERCEL && api === '/netease') {
|
||||
console.log(`VITE_APP_NETEASE_API_URL: ${api}`)
|
||||
console.log(`NETEASE_API_URL_FOR_REWRITE: ${rewriteApi}`)
|
||||
|
||||
if (!rewriteApi.startsWith('http')) {
|
||||
throw new Error('NETEASE_API_URL_FOR_REWRITE must start with http')
|
||||
}
|
||||
|
||||
const vercelConfig = JSON.parse(await fs.readFile('./vercel.example.json'))
|
||||
vercelConfig.rewrites[0].destination = `${rewriteApi}${
|
||||
rewriteApi.endsWith('/') ? '' : '/'
|
||||
}:match*`
|
||||
|
||||
console.log('vercel.json 👇')
|
||||
console.log(vercelConfig)
|
||||
|
||||
await fs.writeFile(
|
||||
'../../vercel.json',
|
||||
JSON.stringify(vercelConfig, null, 2)
|
||||
)
|
||||
}
|
||||
|
||||
await build()
|
||||
}
|
||||
|
||||
main()
|
||||
310
pnpm-lock.yaml
generated
310
pnpm-lock.yaml
generated
|
|
@ -6,15 +6,15 @@ importers:
|
|||
specifiers:
|
||||
eslint: ^8.15.0
|
||||
prettier: ^2.6.2
|
||||
turbo: ^1.2.8
|
||||
turbo: ^1.2.9
|
||||
typescript: ^4.6.4
|
||||
devDependencies:
|
||||
eslint: 8.15.0
|
||||
prettier: 2.6.2
|
||||
turbo: 1.2.8
|
||||
turbo: 1.2.9
|
||||
typescript: 4.6.4
|
||||
|
||||
src/main:
|
||||
packages/electron:
|
||||
specifiers:
|
||||
'@electron/universal': 1.2.1
|
||||
'@sentry/node': ^6.19.7
|
||||
|
|
@ -33,14 +33,14 @@ importers:
|
|||
cookie-parser: ^1.4.6
|
||||
cross-env: ^7.0.3
|
||||
dotenv: ^16.0.0
|
||||
electron: ^18.2.2
|
||||
electron: ^18.2.1
|
||||
electron-builder: ^23.0.3
|
||||
electron-devtools-installer: ^3.2.0
|
||||
electron-log: ^4.4.6
|
||||
electron-rebuild: ^3.2.7
|
||||
electron-releases: ^3.1009.0
|
||||
electron-store: ^8.0.1
|
||||
esbuild: ^0.14.38
|
||||
esbuild: ^0.14.39
|
||||
eslint: '*'
|
||||
express: ^4.18.1
|
||||
express-fileupload: ^1.3.1
|
||||
|
|
@ -79,12 +79,12 @@ importers:
|
|||
axios: 0.27.2
|
||||
cross-env: 7.0.3
|
||||
dotenv: 16.0.1
|
||||
electron: 18.2.2
|
||||
electron: 18.2.3
|
||||
electron-builder: 23.0.3
|
||||
electron-devtools-installer: 3.2.0
|
||||
electron-rebuild: 3.2.7
|
||||
electron-releases: 3.1017.0
|
||||
esbuild: 0.14.38
|
||||
esbuild: 0.14.39
|
||||
eslint: 8.15.0
|
||||
express-fileupload: 1.3.1
|
||||
minimist: 1.2.6
|
||||
|
|
@ -97,7 +97,7 @@ importers:
|
|||
typescript: 4.6.4
|
||||
wait-on: 6.0.1
|
||||
|
||||
src/renderer:
|
||||
packages/web:
|
||||
specifiers:
|
||||
'@sentry/react': ^6.19.7
|
||||
'@sentry/tracing': ^6.19.7
|
||||
|
|
@ -3309,8 +3309,8 @@ packages:
|
|||
resolution: {integrity: sha512-0Rcpald12O11BUogJagX3HsCN3FE83DSqWjgXoHo5a72KUKMSfI39XBgJpgNNxS9fuGzytaFjE06kZkiVFy2qA==}
|
||||
dev: true
|
||||
|
||||
/electron/18.2.2:
|
||||
resolution: {integrity: sha512-o9/9+ntxZ0RoVtllH1e9FDLiCLVg00EO8AJZoCR1cVt7l7AVpRgynZdSczaUtTb9XJpWv7U02R6hoWALl55opQ==}
|
||||
/electron/18.2.3:
|
||||
resolution: {integrity: sha512-DJWX03hCRKTscsfXxmW4gmgFuseop+g+m4ml7NfOMfankD8uYyr2Xyi3Ui02inL9qZOlbLMeLVCu6jKCKs8p/w==}
|
||||
engines: {node: '>= 8.6'}
|
||||
hasBin: true
|
||||
requiresBuild: true
|
||||
|
|
@ -3437,6 +3437,15 @@ packages:
|
|||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-android-64/0.14.39:
|
||||
resolution: {integrity: sha512-EJOu04p9WgZk0UoKTqLId9VnIsotmI/Z98EXrKURGb3LPNunkeffqQIkjS2cAvidh+OK5uVrXaIP229zK6GvhQ==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [x64]
|
||||
os: [android]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-android-arm64/0.14.38:
|
||||
resolution: {integrity: sha512-L2NgQRWuHFI89IIZIlpAcINy9FvBk6xFVZ7xGdOwIm8VyhX1vNCEqUJO3DPSSy945Gzdg98cxtNt8Grv1CsyhA==}
|
||||
engines: {node: '>=12'}
|
||||
|
|
@ -3446,6 +3455,15 @@ packages:
|
|||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-android-arm64/0.14.39:
|
||||
resolution: {integrity: sha512-+twajJqO7n3MrCz9e+2lVOnFplRsaGRwsq1KL/uOy7xK7QdRSprRQcObGDeDZUZsacD5gUkk6OiHiYp6RzU3CA==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [arm64]
|
||||
os: [android]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-darwin-64/0.14.38:
|
||||
resolution: {integrity: sha512-5JJvgXkX87Pd1Og0u/NJuO7TSqAikAcQQ74gyJ87bqWRVeouky84ICoV4sN6VV53aTW+NE87qLdGY4QA2S7KNA==}
|
||||
engines: {node: '>=12'}
|
||||
|
|
@ -3455,6 +3473,15 @@ packages:
|
|||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-darwin-64/0.14.39:
|
||||
resolution: {integrity: sha512-ImT6eUw3kcGcHoUxEcdBpi6LfTRWaV6+qf32iYYAfwOeV+XaQ/Xp5XQIBiijLeo+LpGci9M0FVec09nUw41a5g==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [x64]
|
||||
os: [darwin]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-darwin-arm64/0.14.38:
|
||||
resolution: {integrity: sha512-eqF+OejMI3mC5Dlo9Kdq/Ilbki9sQBw3QlHW3wjLmsLh+quNfHmGMp3Ly1eWm981iGBMdbtSS9+LRvR2T8B3eQ==}
|
||||
engines: {node: '>=12'}
|
||||
|
|
@ -3464,6 +3491,15 @@ packages:
|
|||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-darwin-arm64/0.14.39:
|
||||
resolution: {integrity: sha512-/fcQ5UhE05OiT+bW5v7/up1bDsnvaRZPJxXwzXsMRrr7rZqPa85vayrD723oWMT64dhrgWeA3FIneF8yER0XTw==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [arm64]
|
||||
os: [darwin]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-freebsd-64/0.14.38:
|
||||
resolution: {integrity: sha512-epnPbhZUt93xV5cgeY36ZxPXDsQeO55DppzsIgWM8vgiG/Rz+qYDLmh5ts3e+Ln1wA9dQ+nZmVHw+RjaW3I5Ig==}
|
||||
engines: {node: '>=12'}
|
||||
|
|
@ -3473,6 +3509,15 @@ packages:
|
|||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-freebsd-64/0.14.39:
|
||||
resolution: {integrity: sha512-oMNH8lJI4wtgN5oxuFP7BQ22vgB/e3Tl5Woehcd6i2r6F3TszpCnNl8wo2d/KvyQ4zvLvCWAlRciumhQg88+kQ==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [x64]
|
||||
os: [freebsd]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-freebsd-arm64/0.14.38:
|
||||
resolution: {integrity: sha512-/9icXUYJWherhk+y5fjPI5yNUdFPtXHQlwP7/K/zg8t8lQdHVj20SqU9/udQmeUo5pDFHMYzcEFfJqgOVeKNNQ==}
|
||||
engines: {node: '>=12'}
|
||||
|
|
@ -3482,6 +3527,15 @@ packages:
|
|||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-freebsd-arm64/0.14.39:
|
||||
resolution: {integrity: sha512-1GHK7kwk57ukY2yI4ILWKJXaxfr+8HcM/r/JKCGCPziIVlL+Wi7RbJ2OzMcTKZ1HpvEqCTBT/J6cO4ZEwW4Ypg==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [arm64]
|
||||
os: [freebsd]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-linux-32/0.14.38:
|
||||
resolution: {integrity: sha512-QfgfeNHRFvr2XeHFzP8kOZVnal3QvST3A0cgq32ZrHjSMFTdgXhMhmWdKzRXP/PKcfv3e2OW9tT9PpcjNvaq6g==}
|
||||
engines: {node: '>=12'}
|
||||
|
|
@ -3491,6 +3545,15 @@ packages:
|
|||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-linux-32/0.14.39:
|
||||
resolution: {integrity: sha512-g97Sbb6g4zfRLIxHgW2pc393DjnkTRMeq3N1rmjDUABxpx8SjocK4jLen+/mq55G46eE2TA0MkJ4R3SpKMu7dg==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [ia32]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-linux-64/0.14.38:
|
||||
resolution: {integrity: sha512-uuZHNmqcs+Bj1qiW9k/HZU3FtIHmYiuxZ/6Aa+/KHb/pFKr7R3aVqvxlAudYI9Fw3St0VCPfv7QBpUITSmBR1Q==}
|
||||
engines: {node: '>=12'}
|
||||
|
|
@ -3500,6 +3563,15 @@ packages:
|
|||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-linux-64/0.14.39:
|
||||
resolution: {integrity: sha512-4tcgFDYWdI+UbNMGlua9u1Zhu0N5R6u9tl5WOM8aVnNX143JZoBZLpCuUr5lCKhnD0SCO+5gUyMfupGrHtfggQ==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [x64]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-linux-arm/0.14.38:
|
||||
resolution: {integrity: sha512-FiFvQe8J3VKTDXG01JbvoVRXQ0x6UZwyrU4IaLBZeq39Bsbatd94Fuc3F1RGqPF5RbIWW7RvkVQjn79ejzysnA==}
|
||||
engines: {node: '>=12'}
|
||||
|
|
@ -3509,6 +3581,15 @@ packages:
|
|||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-linux-arm/0.14.39:
|
||||
resolution: {integrity: sha512-t0Hn1kWVx5UpCzAJkKRfHeYOLyFnXwYynIkK54/h3tbMweGI7dj400D1k0Vvtj2u1P+JTRT9tx3AjtLEMmfVBQ==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [arm]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-linux-arm64/0.14.38:
|
||||
resolution: {integrity: sha512-HlMGZTEsBrXrivr64eZ/EO0NQM8H8DuSENRok9d+Jtvq8hOLzrxfsAT9U94K3KOGk2XgCmkaI2KD8hX7F97lvA==}
|
||||
engines: {node: '>=12'}
|
||||
|
|
@ -3518,6 +3599,15 @@ packages:
|
|||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-linux-arm64/0.14.39:
|
||||
resolution: {integrity: sha512-23pc8MlD2D6Px1mV8GMglZlKgwgNKAO8gsgsLLcXWSs9lQsCYkIlMo/2Ycfo5JrDIbLdwgP8D2vpfH2KcBqrDQ==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [arm64]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-linux-mips64le/0.14.38:
|
||||
resolution: {integrity: sha512-qd1dLf2v7QBiI5wwfil9j0HG/5YMFBAmMVmdeokbNAMbcg49p25t6IlJFXAeLzogv1AvgaXRXvgFNhScYEUXGQ==}
|
||||
engines: {node: '>=12'}
|
||||
|
|
@ -3527,6 +3617,15 @@ packages:
|
|||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-linux-mips64le/0.14.39:
|
||||
resolution: {integrity: sha512-epwlYgVdbmkuRr5n4es3B+yDI0I2e/nxhKejT9H0OLxFAlMkeQZxSpxATpDc9m8NqRci6Kwyb/SfmD1koG2Zuw==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [mips64el]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-linux-ppc64le/0.14.38:
|
||||
resolution: {integrity: sha512-mnbEm7o69gTl60jSuK+nn+pRsRHGtDPfzhrqEUXyCl7CTOCLtWN2bhK8bgsdp6J/2NyS/wHBjs1x8aBWwP2X9Q==}
|
||||
engines: {node: '>=12'}
|
||||
|
|
@ -3536,6 +3635,15 @@ packages:
|
|||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-linux-ppc64le/0.14.39:
|
||||
resolution: {integrity: sha512-W/5ezaq+rQiQBThIjLMNjsuhPHg+ApVAdTz2LvcuesZFMsJoQAW2hutoyg47XxpWi7aEjJGrkS26qCJKhRn3QQ==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [ppc64]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-linux-riscv64/0.14.38:
|
||||
resolution: {integrity: sha512-+p6YKYbuV72uikChRk14FSyNJZ4WfYkffj6Af0/Tw63/6TJX6TnIKE+6D3xtEc7DeDth1fjUOEqm+ApKFXbbVQ==}
|
||||
engines: {node: '>=12'}
|
||||
|
|
@ -3545,6 +3653,15 @@ packages:
|
|||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-linux-riscv64/0.14.39:
|
||||
resolution: {integrity: sha512-IS48xeokcCTKeQIOke2O0t9t14HPvwnZcy+5baG13Z1wxs9ZrC5ig5ypEQQh4QMKxURD5TpCLHw2W42CLuVZaA==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [riscv64]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-linux-s390x/0.14.38:
|
||||
resolution: {integrity: sha512-0zUsiDkGJiMHxBQ7JDU8jbaanUY975CdOW1YDrurjrM0vWHfjv9tLQsW9GSyEb/heSK1L5gaweRjzfUVBFoybQ==}
|
||||
engines: {node: '>=12'}
|
||||
|
|
@ -3554,6 +3671,15 @@ packages:
|
|||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-linux-s390x/0.14.39:
|
||||
resolution: {integrity: sha512-zEfunpqR8sMomqXhNTFEKDs+ik7HC01m3M60MsEjZOqaywHu5e5682fMsqOlZbesEAAaO9aAtRBsU7CHnSZWyA==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [s390x]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-netbsd-64/0.14.38:
|
||||
resolution: {integrity: sha512-cljBAApVwkpnJZfnRVThpRBGzCi+a+V9Ofb1fVkKhtrPLDYlHLrSYGtmnoTVWDQdU516qYI8+wOgcGZ4XIZh0Q==}
|
||||
engines: {node: '>=12'}
|
||||
|
|
@ -3563,6 +3689,15 @@ packages:
|
|||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-netbsd-64/0.14.39:
|
||||
resolution: {integrity: sha512-Uo2suJBSIlrZCe4E0k75VDIFJWfZy+bOV6ih3T4MVMRJh1lHJ2UyGoaX4bOxomYN3t+IakHPyEoln1+qJ1qYaA==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [x64]
|
||||
os: [netbsd]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-openbsd-64/0.14.38:
|
||||
resolution: {integrity: sha512-CDswYr2PWPGEPpLDUO50mL3WO/07EMjnZDNKpmaxUPsrW+kVM3LoAqr/CE8UbzugpEiflYqJsGPLirThRB18IQ==}
|
||||
engines: {node: '>=12'}
|
||||
|
|
@ -3572,6 +3707,15 @@ packages:
|
|||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-openbsd-64/0.14.39:
|
||||
resolution: {integrity: sha512-secQU+EpgUPpYjJe3OecoeGKVvRMLeKUxSMGHnK+aK5uQM3n1FPXNJzyz1LHFOo0WOyw+uoCxBYdM4O10oaCAA==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [x64]
|
||||
os: [openbsd]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-sunos-64/0.14.38:
|
||||
resolution: {integrity: sha512-2mfIoYW58gKcC3bck0j7lD3RZkqYA7MmujFYmSn9l6TiIcAMpuEvqksO+ntBgbLep/eyjpgdplF7b+4T9VJGOA==}
|
||||
engines: {node: '>=12'}
|
||||
|
|
@ -3581,6 +3725,15 @@ packages:
|
|||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-sunos-64/0.14.39:
|
||||
resolution: {integrity: sha512-qHq0t5gePEDm2nqZLb+35p/qkaXVS7oIe32R0ECh2HOdiXXkj/1uQI9IRogGqKkK+QjDG+DhwiUw7QoHur/Rwg==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [x64]
|
||||
os: [sunos]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-windows-32/0.14.38:
|
||||
resolution: {integrity: sha512-L2BmEeFZATAvU+FJzJiRLFUP+d9RHN+QXpgaOrs2klshoAm1AE6Us4X6fS9k33Uy5SzScn2TpcgecbqJza1Hjw==}
|
||||
engines: {node: '>=12'}
|
||||
|
|
@ -3590,6 +3743,15 @@ packages:
|
|||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-windows-32/0.14.39:
|
||||
resolution: {integrity: sha512-XPjwp2OgtEX0JnOlTgT6E5txbRp6Uw54Isorm3CwOtloJazeIWXuiwK0ONJBVb/CGbiCpS7iP2UahGgd2p1x+Q==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [ia32]
|
||||
os: [win32]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-windows-64/0.14.38:
|
||||
resolution: {integrity: sha512-Khy4wVmebnzue8aeSXLC+6clo/hRYeNIm0DyikoEqX+3w3rcvrhzpoix0S+MF9vzh6JFskkIGD7Zx47ODJNyCw==}
|
||||
engines: {node: '>=12'}
|
||||
|
|
@ -3599,6 +3761,15 @@ packages:
|
|||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-windows-64/0.14.39:
|
||||
resolution: {integrity: sha512-E2wm+5FwCcLpKsBHRw28bSYQw0Ikxb7zIMxw3OPAkiaQhLVr3dnVO8DofmbWhhf6b97bWzg37iSZ45ZDpLw7Ow==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [x64]
|
||||
os: [win32]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-windows-arm64/0.14.38:
|
||||
resolution: {integrity: sha512-k3FGCNmHBkqdJXuJszdWciAH77PukEyDsdIryEHn9cKLQFxzhT39dSumeTuggaQcXY57UlmLGIkklWZo2qzHpw==}
|
||||
engines: {node: '>=12'}
|
||||
|
|
@ -3608,6 +3779,15 @@ packages:
|
|||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-windows-arm64/0.14.39:
|
||||
resolution: {integrity: sha512-sBZQz5D+Gd0EQ09tZRnz/PpVdLwvp/ufMtJ1iDFYddDaPpZXKqPyaxfYBLs3ueiaksQ26GGa7sci0OqFzNs7KA==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [arm64]
|
||||
os: [win32]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild/0.14.38:
|
||||
resolution: {integrity: sha512-12fzJ0fsm7gVZX1YQ1InkOE5f9Tl7cgf6JPYXRJtPIoE0zkWAbHdPHVPPaLi9tYAcEBqheGzqLn/3RdTOyBfcA==}
|
||||
engines: {node: '>=12'}
|
||||
|
|
@ -3636,6 +3816,34 @@ packages:
|
|||
esbuild-windows-arm64: 0.14.38
|
||||
dev: true
|
||||
|
||||
/esbuild/0.14.39:
|
||||
resolution: {integrity: sha512-2kKujuzvRWYtwvNjYDY444LQIA3TyJhJIX3Yo4+qkFlDDtGlSicWgeHVJqMUP/2sSfH10PGwfsj+O2ro1m10xQ==}
|
||||
engines: {node: '>=12'}
|
||||
hasBin: true
|
||||
requiresBuild: true
|
||||
optionalDependencies:
|
||||
esbuild-android-64: 0.14.39
|
||||
esbuild-android-arm64: 0.14.39
|
||||
esbuild-darwin-64: 0.14.39
|
||||
esbuild-darwin-arm64: 0.14.39
|
||||
esbuild-freebsd-64: 0.14.39
|
||||
esbuild-freebsd-arm64: 0.14.39
|
||||
esbuild-linux-32: 0.14.39
|
||||
esbuild-linux-64: 0.14.39
|
||||
esbuild-linux-arm: 0.14.39
|
||||
esbuild-linux-arm64: 0.14.39
|
||||
esbuild-linux-mips64le: 0.14.39
|
||||
esbuild-linux-ppc64le: 0.14.39
|
||||
esbuild-linux-riscv64: 0.14.39
|
||||
esbuild-linux-s390x: 0.14.39
|
||||
esbuild-netbsd-64: 0.14.39
|
||||
esbuild-openbsd-64: 0.14.39
|
||||
esbuild-sunos-64: 0.14.39
|
||||
esbuild-windows-32: 0.14.39
|
||||
esbuild-windows-64: 0.14.39
|
||||
esbuild-windows-arm64: 0.14.39
|
||||
dev: true
|
||||
|
||||
/escalade/3.1.1:
|
||||
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
|
||||
engines: {node: '>=6'}
|
||||
|
|
@ -8094,128 +8302,128 @@ packages:
|
|||
resolution: {integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==}
|
||||
engines: {node: '>=0.6.11 <=0.7.0 || >=0.7.3'}
|
||||
|
||||
/turbo-darwin-64/1.2.8:
|
||||
resolution: {integrity: sha512-W46D05e1EUBE5TpRYjAHZXvR01EGhY8AcZUZa1mQCLmOb/W3knS1jHDAMEfXoPuDhdlolejEcbSHFCmqFRQ6OQ==}
|
||||
/turbo-darwin-64/1.2.9:
|
||||
resolution: {integrity: sha512-rVwDQpi6p0GwTiqSsvtA1b3RvKl8l2y+ElZ3EKGiIIJYZt1D6wBMJoADaZ9uZ/LWkT+WKfAWNtKdwRmuBAOS6g==}
|
||||
cpu: [x64]
|
||||
os: [darwin]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/turbo-darwin-arm64/1.2.8:
|
||||
resolution: {integrity: sha512-hDcbQzUnKDa5j+MPnt8hbhcENeGD+dxee9O8LkRUGgHFQzqME0YVZsRDwwMCnpRSmr9ZlvZYQJPRELhBdary9Q==}
|
||||
/turbo-darwin-arm64/1.2.9:
|
||||
resolution: {integrity: sha512-j7NgQHkQWWODw1I/saiqmjjD54uGAEq0qTTtLI3RoLaA+yI+awXmHwsiHRqsvGSyGJlBoKBcbxXkekLf21q3GA==}
|
||||
cpu: [arm64]
|
||||
os: [darwin]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/turbo-freebsd-64/1.2.8:
|
||||
resolution: {integrity: sha512-Bd91gNJ9QdsJOjGTpY0YYIa/BIS9BP21gKcpcjZHl4pRpPHraeT9M+RYtpv9bWH3BUWYf0HUzfagOHubrkKq+g==}
|
||||
/turbo-freebsd-64/1.2.9:
|
||||
resolution: {integrity: sha512-+tLb3iCOrIeGrcOJZYey5mD9qgNgKYuwRRg6FeX/6TDITvZXcCS50A2uRbaD/PQzQKs1lHcshiCe/DRtbvJ63g==}
|
||||
cpu: [x64]
|
||||
os: [freebsd]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/turbo-freebsd-arm64/1.2.8:
|
||||
resolution: {integrity: sha512-T+fVnbZNFfQ990F8xazsC16EkV98PkQy091NDKYqbYD6C+PtyV6VpAXX61XDzw01JVJ0GxH/8eiLNttP5lfmnA==}
|
||||
/turbo-freebsd-arm64/1.2.9:
|
||||
resolution: {integrity: sha512-gwI8jocTf036kc9GI1BebzftxrkT5pewHPA2iqvAXAJpX01G1x1iGcl8/uIbkbL5hp038nu+l2Kb+lRI96sJuA==}
|
||||
cpu: [arm64]
|
||||
os: [freebsd]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/turbo-linux-32/1.2.8:
|
||||
resolution: {integrity: sha512-wdhssIJQJfYPz9x4XTWZQSRI0mbzsU0Qf3+4kM2XeGsP9k4mi+1g+4PbGutOLBzIWd9OY619dXz/ut43RWqepA==}
|
||||
/turbo-linux-32/1.2.9:
|
||||
resolution: {integrity: sha512-Rm47bIsCHIae/DkXJ58YrWvdh8o4Ug9U4VnTDb9byXrz2B7624ol9XdfpXv429z7LXkQR1+WnwCMwFB4K6DyuQ==}
|
||||
cpu: [ia32]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/turbo-linux-64/1.2.8:
|
||||
resolution: {integrity: sha512-9OZhxejgl8qQptTUdGnvNXJeFD+I6xF5jkW/tzu5sY9XcdtVvGJ5S4nXYbzG9kPgg4sC6I2gajMCb1l3f5jxSA==}
|
||||
/turbo-linux-64/1.2.9:
|
||||
resolution: {integrity: sha512-8Gqi+TzEdmOmxxAukU0NO0JlIqdm98C97u9qEsxWrXTFL/xL21gKCixqsBTEO7JOISC4M8VjArxjSsITRbkD5g==}
|
||||
cpu: [x64]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/turbo-linux-arm/1.2.8:
|
||||
resolution: {integrity: sha512-RFLScvJPiuVoTDl83iCFNhXICi+F26A0dhBRaOdD9xP5CjcRTS7ITrPpfiELZ/oQzDdZpk3kD+6MxJPtWxoUkg==}
|
||||
/turbo-linux-arm/1.2.9:
|
||||
resolution: {integrity: sha512-OS+XCWiGFbuM7UNBVQdVbIJqxhVu9Sr2WxQgDcGZpCYn32yLLPlWDDGL0Cl/EG006J9k+VS1e4OzyM6kfMxS9Q==}
|
||||
cpu: [arm]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/turbo-linux-arm64/1.2.8:
|
||||
resolution: {integrity: sha512-S7Xu5mhEiTOQNVSaERdCEwWn3IdY0hBIBSoU6TNPD8uIR1jw8r2oV/v/hyuNRRbUfq7as+5tmVXW+RXY/dSkEA==}
|
||||
/turbo-linux-arm64/1.2.9:
|
||||
resolution: {integrity: sha512-FVIeM7koUtyu1cNAJhPYjb90kL/ICdWoJr4PoZZYnqty5sxLsBg75bVErEDQeDzKQvwXLlcax2lEzHvaSyn/wg==}
|
||||
cpu: [arm64]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/turbo-linux-mips64le/1.2.8:
|
||||
resolution: {integrity: sha512-JXakBXqVhQrNwwe9t/qw1XowTxKuwv4zh3XVjIX4lKrIPjZZq4XRb3zjLRmtNK7MOV9VZ6Tg6JGc87CNYtp2eA==}
|
||||
/turbo-linux-mips64le/1.2.9:
|
||||
resolution: {integrity: sha512-2zVBnOVivWGpl51qO/lycfw7euM4b04AXYUmhsWkUN3FygIwyNgjuiMU8rxQOlu9VGX8X+WXkX2gfbgTovTeFw==}
|
||||
cpu: [mips64el]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/turbo-linux-ppc64le/1.2.8:
|
||||
resolution: {integrity: sha512-GBFcyV6y+KHmBCylJmk9/b8YO7O5jknWf3Radva3YYcfihzn7gm6pCWd17ML28ZLMEvJfWEtbHrU4gDFk+k7Mw==}
|
||||
/turbo-linux-ppc64le/1.2.9:
|
||||
resolution: {integrity: sha512-EGgKyzf8IhodOF32BvE3Zlgbr/dSGuUbemC9RGSuhF1F1PMnP1nYS/t3JWN5QKZU4O2uWiIyLdC/0ZjtcGAcZQ==}
|
||||
cpu: [ppc64]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/turbo-windows-32/1.2.8:
|
||||
resolution: {integrity: sha512-z6FSmbPDtDxz0vDbP5Odd1wJx7aACtxQ8XvIRB5sR+dvSCW40RZZLh9LTjWb49y3l7YsnqVdjEE0/bTu56M7hQ==}
|
||||
/turbo-windows-32/1.2.9:
|
||||
resolution: {integrity: sha512-XrMJMUtewlfksBUB0R7Tyw16IoqshVl6f/3R2ccMccddEMcvak0oW03FK9n+Y4F+wyIoJ22AVhu8jMv+HgEehA==}
|
||||
cpu: [ia32]
|
||||
os: [win32]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/turbo-windows-64/1.2.8:
|
||||
resolution: {integrity: sha512-RiIy6ZfuEquje7k53DXNI9zR34AN5/8JJwZLnVhPzdqYdth9EXROS9pOKNNnYEvcWoG34xbgISezsxTXzcHVAA==}
|
||||
/turbo-windows-64/1.2.9:
|
||||
resolution: {integrity: sha512-ewhj4MrqcMpW/keag4xG7YRLTJ7PzcqBc6Kc96OGD2qfK/uJV/r7H3Xt09WuYHRWwPgGEeNn8utpqdqbYfCVDw==}
|
||||
cpu: [x64]
|
||||
os: [win32]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/turbo-windows-arm64/1.2.8:
|
||||
resolution: {integrity: sha512-usARU7a51r8bY+Z6d7bO3N+97x2C4d2PftbDQaTTBuHQCdbYoZSKhiTPTJfrij8FaxVWjtfoTBxlTCh3mzuNOQ==}
|
||||
/turbo-windows-arm64/1.2.9:
|
||||
resolution: {integrity: sha512-B8BoNb/yZWAyKwQUbs2+UFzLmOu/WGv/+ADT6SQfI8jOaTenS7Od4bbMsGJT0iXcqv+v8TcWKX83KmQ6gxBQpg==}
|
||||
cpu: [arm64]
|
||||
os: [win32]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/turbo/1.2.8:
|
||||
resolution: {integrity: sha512-Ms5ZvRlTjl3RF+ccWuGK2Gzgm4Zvr6mtaNwtBJR48u8gcDRjg1eSrpkwvCD+ENEVeQ39MxKjNS51ZYPIBnnhUw==}
|
||||
/turbo/1.2.9:
|
||||
resolution: {integrity: sha512-aPGzZqmUHE9yx9TS7wcAJnDmXiuQSNXDwU5b1KrgNlFuID18TL443wna79p7k4awmf4Yuhu1cSZIvO+se72iVQ==}
|
||||
hasBin: true
|
||||
requiresBuild: true
|
||||
optionalDependencies:
|
||||
turbo-darwin-64: 1.2.8
|
||||
turbo-darwin-arm64: 1.2.8
|
||||
turbo-freebsd-64: 1.2.8
|
||||
turbo-freebsd-arm64: 1.2.8
|
||||
turbo-linux-32: 1.2.8
|
||||
turbo-linux-64: 1.2.8
|
||||
turbo-linux-arm: 1.2.8
|
||||
turbo-linux-arm64: 1.2.8
|
||||
turbo-linux-mips64le: 1.2.8
|
||||
turbo-linux-ppc64le: 1.2.8
|
||||
turbo-windows-32: 1.2.8
|
||||
turbo-windows-64: 1.2.8
|
||||
turbo-windows-arm64: 1.2.8
|
||||
turbo-darwin-64: 1.2.9
|
||||
turbo-darwin-arm64: 1.2.9
|
||||
turbo-freebsd-64: 1.2.9
|
||||
turbo-freebsd-arm64: 1.2.9
|
||||
turbo-linux-32: 1.2.9
|
||||
turbo-linux-64: 1.2.9
|
||||
turbo-linux-arm: 1.2.9
|
||||
turbo-linux-arm64: 1.2.9
|
||||
turbo-linux-mips64le: 1.2.9
|
||||
turbo-linux-ppc64le: 1.2.9
|
||||
turbo-windows-32: 1.2.9
|
||||
turbo-windows-64: 1.2.9
|
||||
turbo-windows-arm64: 1.2.9
|
||||
dev: true
|
||||
|
||||
/type-check/0.3.2:
|
||||
|
|
|
|||
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"github": {
|
||||
"silent": true
|
||||
},
|
||||
"rewrites": [
|
||||
{
|
||||
"source": "/netease/:match*",
|
||||
Loading…
Add table
Add a link
Reference in a new issue