Merge branch 'soul-content' into yongpxu-soul

# Conflicts:
#	soul-admin/node_modules/.vite/deps/@radix-ui_react-dialog.js
#	soul-admin/node_modules/.vite/deps/@radix-ui_react-label.js
#	soul-admin/node_modules/.vite/deps/@radix-ui_react-select.js
#	soul-admin/node_modules/.vite/deps/@radix-ui_react-slider.js
#	soul-admin/node_modules/.vite/deps/@radix-ui_react-switch.js
#	soul-admin/node_modules/.vite/deps/@radix-ui_react-tabs.js
#	soul-admin/node_modules/.vite/deps/_metadata.json
This commit is contained in:
乘风
2026-02-11 15:10:35 +08:00
83 changed files with 301 additions and 238 deletions

View File

@@ -23,12 +23,19 @@
"condition": {
"miniprogram": {
"list": [
{
"name": "pages/read/read",
"pathName": "pages/read/read",
"query": "id=1.1",
"scene": null,
"launchMode": "default"
},
{
"name": "pages/match/match",
"pathName": "pages/match/match",
"query": "",
"scene": null,
"launchMode": "default"
"launchMode": "default",
"scene": null
},
{
"name": "看书",

View File

@@ -15,7 +15,7 @@ else
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/autoprefixer@10.4.24_postcss@8.5.6/node_modules/autoprefixer/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/autoprefixer@10.4.24_postcss@8.5.6/node_modules/autoprefixer/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/autoprefixer@10.4.24_postcss@8.5.6/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../autoprefixer/bin/autoprefixer" "$@"
exec "$basedir/node" "$basedir/../.pnpm/autoprefixer@10.4.24_postcss@8.5.6/node_modules/autoprefixer/bin/autoprefixer" "$@"
else
exec node "$basedir/../autoprefixer/bin/autoprefixer" "$@"
exec node "$basedir/../.pnpm/autoprefixer@10.4.24_postcss@8.5.6/node_modules/autoprefixer/bin/autoprefixer" "$@"
fi

View File

@@ -5,8 +5,8 @@
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\autoprefixer@10.4.24_postcss@8.5.6\node_modules\autoprefixer\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\autoprefixer@10.4.24_postcss@8.5.6\node_modules\autoprefixer\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\autoprefixer@10.4.24_postcss@8.5.6\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
)
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\autoprefixer\bin\autoprefixer" %*
"%~dp0\node.exe" "%~dp0\..\.pnpm\autoprefixer@10.4.24_postcss@8.5.6\node_modules\autoprefixer\bin\autoprefixer" %*
) ELSE (
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\autoprefixer\bin\autoprefixer" %*
node "%~dp0\..\.pnpm\autoprefixer@10.4.24_postcss@8.5.6\node_modules\autoprefixer\bin\autoprefixer" %*
)

View File

@@ -23,17 +23,17 @@ $ret=0
if (Test-Path "$basedir/node$exe") {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "$basedir/node$exe" "$basedir/../autoprefixer/bin/autoprefixer" $args
$input | & "$basedir/node$exe" "$basedir/../.pnpm/autoprefixer@10.4.24_postcss@8.5.6/node_modules/autoprefixer/bin/autoprefixer" $args
} else {
& "$basedir/node$exe" "$basedir/../autoprefixer/bin/autoprefixer" $args
& "$basedir/node$exe" "$basedir/../.pnpm/autoprefixer@10.4.24_postcss@8.5.6/node_modules/autoprefixer/bin/autoprefixer" $args
}
$ret=$LASTEXITCODE
} else {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "node$exe" "$basedir/../autoprefixer/bin/autoprefixer" $args
$input | & "node$exe" "$basedir/../.pnpm/autoprefixer@10.4.24_postcss@8.5.6/node_modules/autoprefixer/bin/autoprefixer" $args
} else {
& "node$exe" "$basedir/../autoprefixer/bin/autoprefixer" $args
& "node$exe" "$basedir/../.pnpm/autoprefixer@10.4.24_postcss@8.5.6/node_modules/autoprefixer/bin/autoprefixer" $args
}
$ret=$LASTEXITCODE
}

View File

@@ -15,7 +15,7 @@ else
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/eslint@9.39.2_jiti@2.6.1/node_modules/eslint/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/eslint@9.39.2_jiti@2.6.1/node_modules/eslint/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/eslint@9.39.2_jiti@2.6.1/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../eslint/bin/eslint.js" "$@"
exec "$basedir/node" "$basedir/../.pnpm/eslint@9.39.2_jiti@2.6.1/node_modules/eslint/bin/eslint.js" "$@"
else
exec node "$basedir/../eslint/bin/eslint.js" "$@"
exec node "$basedir/../.pnpm/eslint@9.39.2_jiti@2.6.1/node_modules/eslint/bin/eslint.js" "$@"
fi

View File

@@ -5,8 +5,8 @@
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\eslint@9.39.2_jiti@2.6.1\node_modules\eslint\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\eslint@9.39.2_jiti@2.6.1\node_modules\eslint\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\eslint@9.39.2_jiti@2.6.1\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
)
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\eslint\bin\eslint.js" %*
"%~dp0\node.exe" "%~dp0\..\.pnpm\eslint@9.39.2_jiti@2.6.1\node_modules\eslint\bin\eslint.js" %*
) ELSE (
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\eslint\bin\eslint.js" %*
node "%~dp0\..\.pnpm\eslint@9.39.2_jiti@2.6.1\node_modules\eslint\bin\eslint.js" %*
)

View File

@@ -23,17 +23,17 @@ $ret=0
if (Test-Path "$basedir/node$exe") {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "$basedir/node$exe" "$basedir/../eslint/bin/eslint.js" $args
$input | & "$basedir/node$exe" "$basedir/../.pnpm/eslint@9.39.2_jiti@2.6.1/node_modules/eslint/bin/eslint.js" $args
} else {
& "$basedir/node$exe" "$basedir/../eslint/bin/eslint.js" $args
& "$basedir/node$exe" "$basedir/../.pnpm/eslint@9.39.2_jiti@2.6.1/node_modules/eslint/bin/eslint.js" $args
}
$ret=$LASTEXITCODE
} else {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "node$exe" "$basedir/../eslint/bin/eslint.js" $args
$input | & "node$exe" "$basedir/../.pnpm/eslint@9.39.2_jiti@2.6.1/node_modules/eslint/bin/eslint.js" $args
} else {
& "node$exe" "$basedir/../eslint/bin/eslint.js" $args
& "node$exe" "$basedir/../.pnpm/eslint@9.39.2_jiti@2.6.1/node_modules/eslint/bin/eslint.js" $args
}
$ret=$LASTEXITCODE
}

4
soul-admin/node_modules/.bin/tsc generated vendored
View File

@@ -15,7 +15,7 @@ else
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/typescript@5.6.3/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../typescript/bin/tsc" "$@"
exec "$basedir/node" "$basedir/../.pnpm/typescript@5.6.3/node_modules/typescript/bin/tsc" "$@"
else
exec node "$basedir/../typescript/bin/tsc" "$@"
exec node "$basedir/../.pnpm/typescript@5.6.3/node_modules/typescript/bin/tsc" "$@"
fi

View File

@@ -5,8 +5,8 @@
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\typescript@5.6.3\node_modules\typescript\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\typescript@5.6.3\node_modules\typescript\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\typescript@5.6.3\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
)
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\typescript\bin\tsc" %*
"%~dp0\node.exe" "%~dp0\..\.pnpm\typescript@5.6.3\node_modules\typescript\bin\tsc" %*
) ELSE (
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\typescript\bin\tsc" %*
node "%~dp0\..\.pnpm\typescript@5.6.3\node_modules\typescript\bin\tsc" %*
)

View File

@@ -23,17 +23,17 @@ $ret=0
if (Test-Path "$basedir/node$exe") {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "$basedir/node$exe" "$basedir/../typescript/bin/tsc" $args
$input | & "$basedir/node$exe" "$basedir/../.pnpm/typescript@5.6.3/node_modules/typescript/bin/tsc" $args
} else {
& "$basedir/node$exe" "$basedir/../typescript/bin/tsc" $args
& "$basedir/node$exe" "$basedir/../.pnpm/typescript@5.6.3/node_modules/typescript/bin/tsc" $args
}
$ret=$LASTEXITCODE
} else {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "node$exe" "$basedir/../typescript/bin/tsc" $args
$input | & "node$exe" "$basedir/../.pnpm/typescript@5.6.3/node_modules/typescript/bin/tsc" $args
} else {
& "node$exe" "$basedir/../typescript/bin/tsc" $args
& "node$exe" "$basedir/../.pnpm/typescript@5.6.3/node_modules/typescript/bin/tsc" $args
}
$ret=$LASTEXITCODE
}

View File

@@ -15,7 +15,7 @@ else
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/typescript@5.6.3/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../typescript/bin/tsserver" "$@"
exec "$basedir/node" "$basedir/../.pnpm/typescript@5.6.3/node_modules/typescript/bin/tsserver" "$@"
else
exec node "$basedir/../typescript/bin/tsserver" "$@"
exec node "$basedir/../.pnpm/typescript@5.6.3/node_modules/typescript/bin/tsserver" "$@"
fi

View File

@@ -5,8 +5,8 @@
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\typescript@5.6.3\node_modules\typescript\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\typescript@5.6.3\node_modules\typescript\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\typescript@5.6.3\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
)
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\typescript\bin\tsserver" %*
"%~dp0\node.exe" "%~dp0\..\.pnpm\typescript@5.6.3\node_modules\typescript\bin\tsserver" %*
) ELSE (
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\typescript\bin\tsserver" %*
node "%~dp0\..\.pnpm\typescript@5.6.3\node_modules\typescript\bin\tsserver" %*
)

View File

@@ -23,17 +23,17 @@ $ret=0
if (Test-Path "$basedir/node$exe") {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "$basedir/node$exe" "$basedir/../typescript/bin/tsserver" $args
$input | & "$basedir/node$exe" "$basedir/../.pnpm/typescript@5.6.3/node_modules/typescript/bin/tsserver" $args
} else {
& "$basedir/node$exe" "$basedir/../typescript/bin/tsserver" $args
& "$basedir/node$exe" "$basedir/../.pnpm/typescript@5.6.3/node_modules/typescript/bin/tsserver" $args
}
$ret=$LASTEXITCODE
} else {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "node$exe" "$basedir/../typescript/bin/tsserver" $args
$input | & "node$exe" "$basedir/../.pnpm/typescript@5.6.3/node_modules/typescript/bin/tsserver" $args
} else {
& "node$exe" "$basedir/../typescript/bin/tsserver" $args
& "node$exe" "$basedir/../.pnpm/typescript@5.6.3/node_modules/typescript/bin/tsserver" $args
}
$ret=$LASTEXITCODE
}

4
soul-admin/node_modules/.bin/vite generated vendored
View File

@@ -15,7 +15,7 @@ else
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/vite@6.4.1_jiti@2.6.1_lightningcss@1.30.2/node_modules/vite/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/vite@6.4.1_jiti@2.6.1_lightningcss@1.30.2/node_modules/vite/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/vite@6.4.1_jiti@2.6.1_lightningcss@1.30.2/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../vite/bin/vite.js" "$@"
exec "$basedir/node" "$basedir/../.pnpm/vite@6.4.1_jiti@2.6.1_lightningcss@1.30.2/node_modules/vite/bin/vite.js" "$@"
else
exec node "$basedir/../vite/bin/vite.js" "$@"
exec node "$basedir/../.pnpm/vite@6.4.1_jiti@2.6.1_lightningcss@1.30.2/node_modules/vite/bin/vite.js" "$@"
fi

View File

@@ -5,8 +5,8 @@
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\vite@6.4.1_jiti@2.6.1_lightningcss@1.30.2\node_modules\vite\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\vite@6.4.1_jiti@2.6.1_lightningcss@1.30.2\node_modules\vite\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\vite@6.4.1_jiti@2.6.1_lightningcss@1.30.2\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
)
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\vite\bin\vite.js" %*
"%~dp0\node.exe" "%~dp0\..\.pnpm\vite@6.4.1_jiti@2.6.1_lightningcss@1.30.2\node_modules\vite\bin\vite.js" %*
) ELSE (
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\vite\bin\vite.js" %*
node "%~dp0\..\.pnpm\vite@6.4.1_jiti@2.6.1_lightningcss@1.30.2\node_modules\vite\bin\vite.js" %*
)

View File

@@ -23,17 +23,17 @@ $ret=0
if (Test-Path "$basedir/node$exe") {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "$basedir/node$exe" "$basedir/../vite/bin/vite.js" $args
$input | & "$basedir/node$exe" "$basedir/../.pnpm/vite@6.4.1_jiti@2.6.1_lightningcss@1.30.2/node_modules/vite/bin/vite.js" $args
} else {
& "$basedir/node$exe" "$basedir/../vite/bin/vite.js" $args
& "$basedir/node$exe" "$basedir/../.pnpm/vite@6.4.1_jiti@2.6.1_lightningcss@1.30.2/node_modules/vite/bin/vite.js" $args
}
$ret=$LASTEXITCODE
} else {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "node$exe" "$basedir/../vite/bin/vite.js" $args
$input | & "node$exe" "$basedir/../.pnpm/vite@6.4.1_jiti@2.6.1_lightningcss@1.30.2/node_modules/vite/bin/vite.js" $args
} else {
& "node$exe" "$basedir/../vite/bin/vite.js" $args
& "node$exe" "$basedir/../.pnpm/vite@6.4.1_jiti@2.6.1_lightningcss@1.30.2/node_modules/vite/bin/vite.js" $args
}
$ret=$LASTEXITCODE
}

View File

@@ -261,6 +261,8 @@ hoistedDependencies:
fast-json-stable-stringify: private
fast-levenshtein@2.0.6:
fast-levenshtein: private
fdir@6.5.0(picomatch@4.0.2):
fdir: private
fdir@6.5.0(picomatch@4.0.3):
fdir: private
file-entry-cache@8.0.0:
@@ -415,8 +417,7 @@ hoistedDependencies:
yallist: private
yocto-queue@0.1.0:
yocto-queue: private
ignoredBuilds:
- esbuild
ignoredBuilds: []
included:
dependencies: true
devDependencies: true
@@ -424,7 +425,7 @@ included:
injectedDeps: {}
layoutVersion: 5
nodeLinker: isolated
packageManager: pnpm@10.24.0
packageManager: pnpm@10.26.2
pendingBuilds: []
prunedAt: Sat, 07 Feb 2026 08:09:33 GMT
publicHoistPattern: []

View File

@@ -1,5 +1,5 @@
{
"lastValidatedTimestamp": 1770453887345,
"lastValidatedTimestamp": 1770792111038,
"projects": {},
"pnpmfiles": [],
"settings": {

View File

@@ -87,6 +87,9 @@ importers:
globals:
specifier: ^15.12.0
version: 15.15.0
picomatch:
specifier: 4.0.2
version: 4.0.2
postcss:
specifier: ^8.4.49
version: 8.5.6
@@ -1597,6 +1600,10 @@ packages:
picocolors@1.1.1:
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
picomatch@4.0.2:
resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
engines: {node: '>=12'}
picomatch@4.0.3:
resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
engines: {node: '>=12'}
@@ -2998,6 +3005,10 @@ snapshots:
fast-levenshtein@2.0.6: {}
fdir@6.5.0(picomatch@4.0.2):
optionalDependencies:
picomatch: 4.0.2
fdir@6.5.0(picomatch@4.0.3):
optionalDependencies:
picomatch: 4.0.3
@@ -3199,6 +3210,8 @@ snapshots:
picocolors@1.1.1: {}
picomatch@4.0.2: {}
picomatch@4.0.3: {}
postcss-value-parser@4.2.0: {}
@@ -3381,8 +3394,8 @@ snapshots:
vite@6.4.1(jiti@2.6.1)(lightningcss@1.30.2):
dependencies:
esbuild: 0.25.12
fdir: 6.5.0(picomatch@4.0.3)
picomatch: 4.0.3
fdir: 6.5.0(picomatch@4.0.2)
picomatch: 4.0.2
postcss: 8.5.6
rollup: 4.57.1
tinyglobby: 0.2.15

View File

@@ -10,9 +10,9 @@ case `uname` in
esac
if [ -z "$NODE_PATH" ]; then
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/acorn@8.15.0/node_modules/acorn/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/acorn@8.15.0/node_modules/acorn/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/acorn@8.15.0/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/acorn/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/acorn/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
else
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/acorn@8.15.0/node_modules/acorn/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/acorn@8.15.0/node_modules/acorn/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/acorn@8.15.0/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/acorn/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/acorn/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../acorn/bin/acorn" "$@"

View File

@@ -1,8 +1,8 @@
@SETLOCAL
@IF NOT DEFINED NODE_PATH (
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\acorn@8.15.0\node_modules\acorn\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\acorn@8.15.0\node_modules\acorn\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\acorn@8.15.0\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\acorn\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\acorn\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
) ELSE (
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\acorn@8.15.0\node_modules\acorn\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\acorn@8.15.0\node_modules\acorn\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\acorn@8.15.0\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\acorn\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\acorn\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
)
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\acorn\bin\acorn" %*

View File

@@ -4,14 +4,14 @@ $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
$exe=""
$pathsep=":"
$env_node_path=$env:NODE_PATH
$new_node_path="E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\acorn@8.15.0\node_modules\acorn\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\acorn@8.15.0\node_modules\acorn\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\acorn@8.15.0\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
$new_node_path="E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\acorn\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\acorn\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
# Fix case when both the Windows and Linux builds of Node
# are installed in the same directory
$exe=".exe"
$pathsep=";"
} else {
$new_node_path="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/acorn@8.15.0/node_modules/acorn/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/acorn@8.15.0/node_modules/acorn/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/acorn@8.15.0/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
$new_node_path="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/acorn/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/acorn/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
}
if ([string]::IsNullOrEmpty($env_node_path)) {
$env:NODE_PATH=$new_node_path

View File

@@ -10,9 +10,9 @@ case `uname` in
esac
if [ -z "$NODE_PATH" ]; then
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/baseline-browser-mapping@2.9.19/node_modules/baseline-browser-mapping/dist/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/baseline-browser-mapping@2.9.19/node_modules/baseline-browser-mapping/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/baseline-browser-mapping@2.9.19/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/baseline-browser-mapping/dist/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/baseline-browser-mapping/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
else
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/baseline-browser-mapping@2.9.19/node_modules/baseline-browser-mapping/dist/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/baseline-browser-mapping@2.9.19/node_modules/baseline-browser-mapping/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/baseline-browser-mapping@2.9.19/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/baseline-browser-mapping/dist/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/baseline-browser-mapping/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../baseline-browser-mapping/dist/cli.js" "$@"

View File

@@ -1,8 +1,8 @@
@SETLOCAL
@IF NOT DEFINED NODE_PATH (
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\baseline-browser-mapping@2.9.19\node_modules\baseline-browser-mapping\dist\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\baseline-browser-mapping@2.9.19\node_modules\baseline-browser-mapping\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\baseline-browser-mapping@2.9.19\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\baseline-browser-mapping\dist\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\baseline-browser-mapping\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
) ELSE (
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\baseline-browser-mapping@2.9.19\node_modules\baseline-browser-mapping\dist\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\baseline-browser-mapping@2.9.19\node_modules\baseline-browser-mapping\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\baseline-browser-mapping@2.9.19\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\baseline-browser-mapping\dist\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\baseline-browser-mapping\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
)
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\baseline-browser-mapping\dist\cli.js" %*

View File

@@ -4,14 +4,14 @@ $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
$exe=""
$pathsep=":"
$env_node_path=$env:NODE_PATH
$new_node_path="E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\baseline-browser-mapping@2.9.19\node_modules\baseline-browser-mapping\dist\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\baseline-browser-mapping@2.9.19\node_modules\baseline-browser-mapping\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\baseline-browser-mapping@2.9.19\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
$new_node_path="E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\baseline-browser-mapping\dist\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\baseline-browser-mapping\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
# Fix case when both the Windows and Linux builds of Node
# are installed in the same directory
$exe=".exe"
$pathsep=";"
} else {
$new_node_path="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/baseline-browser-mapping@2.9.19/node_modules/baseline-browser-mapping/dist/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/baseline-browser-mapping@2.9.19/node_modules/baseline-browser-mapping/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/baseline-browser-mapping@2.9.19/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
$new_node_path="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/baseline-browser-mapping/dist/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/baseline-browser-mapping/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
}
if ([string]::IsNullOrEmpty($env_node_path)) {
$env:NODE_PATH=$new_node_path

View File

@@ -10,9 +10,9 @@ case `uname` in
esac
if [ -z "$NODE_PATH" ]; then
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/browserslist@4.28.1/node_modules/browserslist/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/browserslist@4.28.1/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/browserslist/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
else
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/browserslist@4.28.1/node_modules/browserslist/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/browserslist@4.28.1/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/browserslist/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../browserslist/cli.js" "$@"

View File

@@ -1,8 +1,8 @@
@SETLOCAL
@IF NOT DEFINED NODE_PATH (
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\browserslist@4.28.1\node_modules\browserslist\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\browserslist@4.28.1\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\browserslist\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
) ELSE (
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\browserslist@4.28.1\node_modules\browserslist\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\browserslist@4.28.1\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\browserslist\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
)
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\browserslist\cli.js" %*

View File

@@ -4,14 +4,14 @@ $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
$exe=""
$pathsep=":"
$env_node_path=$env:NODE_PATH
$new_node_path="E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\browserslist@4.28.1\node_modules\browserslist\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\browserslist@4.28.1\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
$new_node_path="E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\browserslist\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
# Fix case when both the Windows and Linux builds of Node
# are installed in the same directory
$exe=".exe"
$pathsep=";"
} else {
$new_node_path="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/browserslist@4.28.1/node_modules/browserslist/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/browserslist@4.28.1/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
$new_node_path="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/browserslist/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
}
if ([string]::IsNullOrEmpty($env_node_path)) {
$env:NODE_PATH=$new_node_path

View File

@@ -10,9 +10,9 @@ case `uname` in
esac
if [ -z "$NODE_PATH" ]; then
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/esbuild@0.25.12/node_modules/esbuild/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/esbuild@0.25.12/node_modules/esbuild/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/esbuild@0.25.12/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/esbuild/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/esbuild/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
else
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/esbuild@0.25.12/node_modules/esbuild/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/esbuild@0.25.12/node_modules/esbuild/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/esbuild@0.25.12/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/esbuild/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/esbuild/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../esbuild/bin/esbuild" "$@"

View File

@@ -1,8 +1,8 @@
@SETLOCAL
@IF NOT DEFINED NODE_PATH (
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\esbuild@0.25.12\node_modules\esbuild\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\esbuild@0.25.12\node_modules\esbuild\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\esbuild@0.25.12\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\esbuild\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\esbuild\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
) ELSE (
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\esbuild@0.25.12\node_modules\esbuild\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\esbuild@0.25.12\node_modules\esbuild\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\esbuild@0.25.12\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\esbuild\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\esbuild\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
)
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\esbuild\bin\esbuild" %*

View File

@@ -4,14 +4,14 @@ $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
$exe=""
$pathsep=":"
$env_node_path=$env:NODE_PATH
$new_node_path="E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\esbuild@0.25.12\node_modules\esbuild\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\esbuild@0.25.12\node_modules\esbuild\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\esbuild@0.25.12\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
$new_node_path="E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\esbuild\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\esbuild\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
# Fix case when both the Windows and Linux builds of Node
# are installed in the same directory
$exe=".exe"
$pathsep=";"
} else {
$new_node_path="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/esbuild@0.25.12/node_modules/esbuild/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/esbuild@0.25.12/node_modules/esbuild/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/esbuild@0.25.12/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
$new_node_path="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/esbuild/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/esbuild/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
}
if ([string]::IsNullOrEmpty($env_node_path)) {
$env:NODE_PATH=$new_node_path

View File

@@ -10,9 +10,9 @@ case `uname` in
esac
if [ -z "$NODE_PATH" ]; then
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/jiti@2.6.1/node_modules/jiti/lib/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/jiti@2.6.1/node_modules/jiti/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/jiti@2.6.1/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/jiti/lib/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/jiti/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
else
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/jiti@2.6.1/node_modules/jiti/lib/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/jiti@2.6.1/node_modules/jiti/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/jiti@2.6.1/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/jiti/lib/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/jiti/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../jiti/lib/jiti-cli.mjs" "$@"

View File

@@ -1,8 +1,8 @@
@SETLOCAL
@IF NOT DEFINED NODE_PATH (
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\jiti@2.6.1\node_modules\jiti\lib\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\jiti@2.6.1\node_modules\jiti\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\jiti@2.6.1\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\jiti\lib\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\jiti\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
) ELSE (
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\jiti@2.6.1\node_modules\jiti\lib\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\jiti@2.6.1\node_modules\jiti\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\jiti@2.6.1\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\jiti\lib\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\jiti\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
)
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\jiti\lib\jiti-cli.mjs" %*

View File

@@ -4,14 +4,14 @@ $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
$exe=""
$pathsep=":"
$env_node_path=$env:NODE_PATH
$new_node_path="E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\jiti@2.6.1\node_modules\jiti\lib\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\jiti@2.6.1\node_modules\jiti\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\jiti@2.6.1\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
$new_node_path="E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\jiti\lib\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\jiti\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
# Fix case when both the Windows and Linux builds of Node
# are installed in the same directory
$exe=".exe"
$pathsep=";"
} else {
$new_node_path="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/jiti@2.6.1/node_modules/jiti/lib/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/jiti@2.6.1/node_modules/jiti/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/jiti@2.6.1/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
$new_node_path="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/jiti/lib/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/jiti/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
}
if ([string]::IsNullOrEmpty($env_node_path)) {
$env:NODE_PATH=$new_node_path

View File

@@ -10,9 +10,9 @@ case `uname` in
esac
if [ -z "$NODE_PATH" ]; then
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/js-yaml@4.1.1/node_modules/js-yaml/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/js-yaml@4.1.1/node_modules/js-yaml/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/js-yaml@4.1.1/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/js-yaml/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/js-yaml/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
else
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/js-yaml@4.1.1/node_modules/js-yaml/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/js-yaml@4.1.1/node_modules/js-yaml/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/js-yaml@4.1.1/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/js-yaml/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/js-yaml/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../js-yaml/bin/js-yaml.js" "$@"

View File

@@ -1,8 +1,8 @@
@SETLOCAL
@IF NOT DEFINED NODE_PATH (
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\js-yaml@4.1.1\node_modules\js-yaml\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\js-yaml@4.1.1\node_modules\js-yaml\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\js-yaml@4.1.1\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\js-yaml\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\js-yaml\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
) ELSE (
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\js-yaml@4.1.1\node_modules\js-yaml\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\js-yaml@4.1.1\node_modules\js-yaml\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\js-yaml@4.1.1\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\js-yaml\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\js-yaml\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
)
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\js-yaml\bin\js-yaml.js" %*

View File

@@ -4,14 +4,14 @@ $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
$exe=""
$pathsep=":"
$env_node_path=$env:NODE_PATH
$new_node_path="E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\js-yaml@4.1.1\node_modules\js-yaml\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\js-yaml@4.1.1\node_modules\js-yaml\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\js-yaml@4.1.1\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
$new_node_path="E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\js-yaml\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\js-yaml\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
# Fix case when both the Windows and Linux builds of Node
# are installed in the same directory
$exe=".exe"
$pathsep=";"
} else {
$new_node_path="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/js-yaml@4.1.1/node_modules/js-yaml/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/js-yaml@4.1.1/node_modules/js-yaml/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/js-yaml@4.1.1/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
$new_node_path="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/js-yaml/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/js-yaml/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
}
if ([string]::IsNullOrEmpty($env_node_path)) {
$env:NODE_PATH=$new_node_path

View File

@@ -10,9 +10,9 @@ case `uname` in
esac
if [ -z "$NODE_PATH" ]; then
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/jsesc@3.1.0/node_modules/jsesc/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/jsesc@3.1.0/node_modules/jsesc/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/jsesc@3.1.0/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/jsesc/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/jsesc/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
else
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/jsesc@3.1.0/node_modules/jsesc/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/jsesc@3.1.0/node_modules/jsesc/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/jsesc@3.1.0/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/jsesc/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/jsesc/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../jsesc/bin/jsesc" "$@"

View File

@@ -1,8 +1,8 @@
@SETLOCAL
@IF NOT DEFINED NODE_PATH (
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\jsesc@3.1.0\node_modules\jsesc\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\jsesc@3.1.0\node_modules\jsesc\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\jsesc@3.1.0\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\jsesc\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\jsesc\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
) ELSE (
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\jsesc@3.1.0\node_modules\jsesc\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\jsesc@3.1.0\node_modules\jsesc\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\jsesc@3.1.0\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\jsesc\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\jsesc\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
)
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\jsesc\bin\jsesc" %*

View File

@@ -4,14 +4,14 @@ $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
$exe=""
$pathsep=":"
$env_node_path=$env:NODE_PATH
$new_node_path="E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\jsesc@3.1.0\node_modules\jsesc\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\jsesc@3.1.0\node_modules\jsesc\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\jsesc@3.1.0\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
$new_node_path="E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\jsesc\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\jsesc\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
# Fix case when both the Windows and Linux builds of Node
# are installed in the same directory
$exe=".exe"
$pathsep=";"
} else {
$new_node_path="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/jsesc@3.1.0/node_modules/jsesc/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/jsesc@3.1.0/node_modules/jsesc/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/jsesc@3.1.0/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
$new_node_path="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/jsesc/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/jsesc/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
}
if ([string]::IsNullOrEmpty($env_node_path)) {
$env:NODE_PATH=$new_node_path

View File

@@ -10,9 +10,9 @@ case `uname` in
esac
if [ -z "$NODE_PATH" ]; then
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/json5@2.2.3/node_modules/json5/lib/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/json5@2.2.3/node_modules/json5/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/json5@2.2.3/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/json5/lib/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/json5/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
else
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/json5@2.2.3/node_modules/json5/lib/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/json5@2.2.3/node_modules/json5/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/json5@2.2.3/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/json5/lib/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/json5/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../json5/lib/cli.js" "$@"

View File

@@ -1,8 +1,8 @@
@SETLOCAL
@IF NOT DEFINED NODE_PATH (
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\json5@2.2.3\node_modules\json5\lib\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\json5@2.2.3\node_modules\json5\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\json5@2.2.3\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\json5\lib\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\json5\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
) ELSE (
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\json5@2.2.3\node_modules\json5\lib\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\json5@2.2.3\node_modules\json5\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\json5@2.2.3\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\json5\lib\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\json5\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
)
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\json5\lib\cli.js" %*

View File

@@ -4,14 +4,14 @@ $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
$exe=""
$pathsep=":"
$env_node_path=$env:NODE_PATH
$new_node_path="E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\json5@2.2.3\node_modules\json5\lib\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\json5@2.2.3\node_modules\json5\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\json5@2.2.3\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
$new_node_path="E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\json5\lib\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\json5\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
# Fix case when both the Windows and Linux builds of Node
# are installed in the same directory
$exe=".exe"
$pathsep=";"
} else {
$new_node_path="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/json5@2.2.3/node_modules/json5/lib/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/json5@2.2.3/node_modules/json5/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/json5@2.2.3/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
$new_node_path="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/json5/lib/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/json5/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
}
if ([string]::IsNullOrEmpty($env_node_path)) {
$env:NODE_PATH=$new_node_path

View File

@@ -10,9 +10,9 @@ case `uname` in
esac
if [ -z "$NODE_PATH" ]; then
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/loose-envify@1.4.0/node_modules/loose-envify/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/loose-envify@1.4.0/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/loose-envify/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
else
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/loose-envify@1.4.0/node_modules/loose-envify/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/loose-envify@1.4.0/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/loose-envify/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../loose-envify/cli.js" "$@"

View File

@@ -1,8 +1,8 @@
@SETLOCAL
@IF NOT DEFINED NODE_PATH (
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\loose-envify@1.4.0\node_modules\loose-envify\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\loose-envify@1.4.0\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\loose-envify\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
) ELSE (
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\loose-envify@1.4.0\node_modules\loose-envify\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\loose-envify@1.4.0\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\loose-envify\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
)
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\loose-envify\cli.js" %*

View File

@@ -4,14 +4,14 @@ $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
$exe=""
$pathsep=":"
$env_node_path=$env:NODE_PATH
$new_node_path="E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\loose-envify@1.4.0\node_modules\loose-envify\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\loose-envify@1.4.0\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
$new_node_path="E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\loose-envify\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
# Fix case when both the Windows and Linux builds of Node
# are installed in the same directory
$exe=".exe"
$pathsep=";"
} else {
$new_node_path="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/loose-envify@1.4.0/node_modules/loose-envify/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/loose-envify@1.4.0/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
$new_node_path="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/loose-envify/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
}
if ([string]::IsNullOrEmpty($env_node_path)) {
$env:NODE_PATH=$new_node_path

View File

@@ -10,9 +10,9 @@ case `uname` in
esac
if [ -z "$NODE_PATH" ]; then
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/nanoid@3.3.11/node_modules/nanoid/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/nanoid@3.3.11/node_modules/nanoid/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/nanoid@3.3.11/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/nanoid/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/nanoid/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
else
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/nanoid@3.3.11/node_modules/nanoid/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/nanoid@3.3.11/node_modules/nanoid/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/nanoid@3.3.11/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/nanoid/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/nanoid/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../nanoid/bin/nanoid.cjs" "$@"

View File

@@ -1,8 +1,8 @@
@SETLOCAL
@IF NOT DEFINED NODE_PATH (
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\nanoid@3.3.11\node_modules\nanoid\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\nanoid@3.3.11\node_modules\nanoid\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\nanoid@3.3.11\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\nanoid\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\nanoid\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
) ELSE (
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\nanoid@3.3.11\node_modules\nanoid\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\nanoid@3.3.11\node_modules\nanoid\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\nanoid@3.3.11\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\nanoid\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\nanoid\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
)
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\nanoid\bin\nanoid.cjs" %*

View File

@@ -4,14 +4,14 @@ $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
$exe=""
$pathsep=":"
$env_node_path=$env:NODE_PATH
$new_node_path="E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\nanoid@3.3.11\node_modules\nanoid\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\nanoid@3.3.11\node_modules\nanoid\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\nanoid@3.3.11\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
$new_node_path="E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\nanoid\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\nanoid\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
# Fix case when both the Windows and Linux builds of Node
# are installed in the same directory
$exe=".exe"
$pathsep=";"
} else {
$new_node_path="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/nanoid@3.3.11/node_modules/nanoid/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/nanoid@3.3.11/node_modules/nanoid/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/nanoid@3.3.11/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
$new_node_path="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/nanoid/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/nanoid/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
}
if ([string]::IsNullOrEmpty($env_node_path)) {
$env:NODE_PATH=$new_node_path

View File

@@ -10,9 +10,9 @@ case `uname` in
esac
if [ -z "$NODE_PATH" ]; then
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/which@2.0.2/node_modules/which/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/which@2.0.2/node_modules/which/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/which@2.0.2/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/which/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/which/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
else
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/which@2.0.2/node_modules/which/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/which@2.0.2/node_modules/which/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/which@2.0.2/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/which/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/which/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../which/bin/node-which" "$@"

View File

@@ -1,8 +1,8 @@
@SETLOCAL
@IF NOT DEFINED NODE_PATH (
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\which@2.0.2\node_modules\which\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\which@2.0.2\node_modules\which\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\which@2.0.2\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\which\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\which\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
) ELSE (
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\which@2.0.2\node_modules\which\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\which@2.0.2\node_modules\which\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\which@2.0.2\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\which\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\which\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
)
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\which\bin\node-which" %*

View File

@@ -4,14 +4,14 @@ $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
$exe=""
$pathsep=":"
$env_node_path=$env:NODE_PATH
$new_node_path="E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\which@2.0.2\node_modules\which\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\which@2.0.2\node_modules\which\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\which@2.0.2\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
$new_node_path="E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\which\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\which\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
# Fix case when both the Windows and Linux builds of Node
# are installed in the same directory
$exe=".exe"
$pathsep=";"
} else {
$new_node_path="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/which@2.0.2/node_modules/which/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/which@2.0.2/node_modules/which/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/which@2.0.2/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
$new_node_path="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/which/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/which/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
}
if ([string]::IsNullOrEmpty($env_node_path)) {
$env:NODE_PATH=$new_node_path

View File

@@ -10,9 +10,9 @@ case `uname` in
esac
if [ -z "$NODE_PATH" ]; then
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/@babel+parser@7.29.0/node_modules/@babel/parser/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/@babel+parser@7.29.0/node_modules/@babel/parser/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/@babel+parser@7.29.0/node_modules/@babel/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/@babel+parser@7.29.0/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/@babel/parser/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/@babel/parser/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/@babel/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
else
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/@babel+parser@7.29.0/node_modules/@babel/parser/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/@babel+parser@7.29.0/node_modules/@babel/parser/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/@babel+parser@7.29.0/node_modules/@babel/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/@babel+parser@7.29.0/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/@babel/parser/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/@babel/parser/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/@babel/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../@babel/parser/bin/babel-parser.js" "$@"

View File

@@ -1,8 +1,8 @@
@SETLOCAL
@IF NOT DEFINED NODE_PATH (
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\@babel+parser@7.29.0\node_modules\@babel\parser\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\@babel+parser@7.29.0\node_modules\@babel\parser\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\@babel+parser@7.29.0\node_modules\@babel\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\@babel+parser@7.29.0\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\@babel\parser\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\@babel\parser\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\@babel\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
) ELSE (
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\@babel+parser@7.29.0\node_modules\@babel\parser\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\@babel+parser@7.29.0\node_modules\@babel\parser\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\@babel+parser@7.29.0\node_modules\@babel\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\@babel+parser@7.29.0\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\@babel\parser\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\@babel\parser\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\@babel\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
)
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\@babel\parser\bin\babel-parser.js" %*

View File

@@ -4,14 +4,14 @@ $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
$exe=""
$pathsep=":"
$env_node_path=$env:NODE_PATH
$new_node_path="E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\@babel+parser@7.29.0\node_modules\@babel\parser\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\@babel+parser@7.29.0\node_modules\@babel\parser\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\@babel+parser@7.29.0\node_modules\@babel\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\@babel+parser@7.29.0\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
$new_node_path="E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\@babel\parser\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\@babel\parser\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\@babel\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
# Fix case when both the Windows and Linux builds of Node
# are installed in the same directory
$exe=".exe"
$pathsep=";"
} else {
$new_node_path="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/@babel+parser@7.29.0/node_modules/@babel/parser/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/@babel+parser@7.29.0/node_modules/@babel/parser/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/@babel+parser@7.29.0/node_modules/@babel/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/@babel+parser@7.29.0/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
$new_node_path="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/@babel/parser/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/@babel/parser/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/@babel/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
}
if ([string]::IsNullOrEmpty($env_node_path)) {
$env:NODE_PATH=$new_node_path

View File

@@ -10,9 +10,9 @@ case `uname` in
esac
if [ -z "$NODE_PATH" ]; then
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/rollup@4.57.1/node_modules/rollup/dist/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/rollup@4.57.1/node_modules/rollup/dist/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/rollup@4.57.1/node_modules/rollup/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/rollup@4.57.1/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/rollup/dist/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/rollup/dist/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/rollup/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
else
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/rollup@4.57.1/node_modules/rollup/dist/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/rollup@4.57.1/node_modules/rollup/dist/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/rollup@4.57.1/node_modules/rollup/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/rollup@4.57.1/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/rollup/dist/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/rollup/dist/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/rollup/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../rollup/dist/bin/rollup" "$@"

View File

@@ -1,8 +1,8 @@
@SETLOCAL
@IF NOT DEFINED NODE_PATH (
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\rollup@4.57.1\node_modules\rollup\dist\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\rollup@4.57.1\node_modules\rollup\dist\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\rollup@4.57.1\node_modules\rollup\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\rollup@4.57.1\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\rollup\dist\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\rollup\dist\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\rollup\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
) ELSE (
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\rollup@4.57.1\node_modules\rollup\dist\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\rollup@4.57.1\node_modules\rollup\dist\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\rollup@4.57.1\node_modules\rollup\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\rollup@4.57.1\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\rollup\dist\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\rollup\dist\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\rollup\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
)
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\rollup\dist\bin\rollup" %*

View File

@@ -4,14 +4,14 @@ $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
$exe=""
$pathsep=":"
$env_node_path=$env:NODE_PATH
$new_node_path="E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\rollup@4.57.1\node_modules\rollup\dist\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\rollup@4.57.1\node_modules\rollup\dist\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\rollup@4.57.1\node_modules\rollup\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\rollup@4.57.1\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
$new_node_path="E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\rollup\dist\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\rollup\dist\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\rollup\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
# Fix case when both the Windows and Linux builds of Node
# are installed in the same directory
$exe=".exe"
$pathsep=";"
} else {
$new_node_path="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/rollup@4.57.1/node_modules/rollup/dist/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/rollup@4.57.1/node_modules/rollup/dist/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/rollup@4.57.1/node_modules/rollup/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/rollup@4.57.1/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
$new_node_path="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/rollup/dist/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/rollup/dist/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/rollup/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
}
if ([string]::IsNullOrEmpty($env_node_path)) {
$env:NODE_PATH=$new_node_path

View File

@@ -10,9 +10,9 @@ case `uname` in
esac
if [ -z "$NODE_PATH" ]; then
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/semver@6.3.1/node_modules/semver/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/semver@6.3.1/node_modules/semver/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/semver@6.3.1/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/semver/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/semver/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
else
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/semver@6.3.1/node_modules/semver/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/semver@6.3.1/node_modules/semver/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/semver@6.3.1/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/semver/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/semver/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../semver/bin/semver.js" "$@"

View File

@@ -1,8 +1,8 @@
@SETLOCAL
@IF NOT DEFINED NODE_PATH (
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\semver@6.3.1\node_modules\semver\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\semver@6.3.1\node_modules\semver\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\semver@6.3.1\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\semver\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\semver\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
) ELSE (
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\semver@6.3.1\node_modules\semver\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\semver@6.3.1\node_modules\semver\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\semver@6.3.1\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\semver\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\semver\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
)
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\semver\bin\semver.js" %*

View File

@@ -4,14 +4,14 @@ $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
$exe=""
$pathsep=":"
$env_node_path=$env:NODE_PATH
$new_node_path="E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\semver@6.3.1\node_modules\semver\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\semver@6.3.1\node_modules\semver\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\semver@6.3.1\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
$new_node_path="E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\semver\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\semver\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
# Fix case when both the Windows and Linux builds of Node
# are installed in the same directory
$exe=".exe"
$pathsep=";"
} else {
$new_node_path="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/semver@6.3.1/node_modules/semver/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/semver@6.3.1/node_modules/semver/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/semver@6.3.1/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
$new_node_path="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/semver/bin/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/semver/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
}
if ([string]::IsNullOrEmpty($env_node_path)) {
$env:NODE_PATH=$new_node_path

View File

@@ -10,9 +10,9 @@ case `uname` in
esac
if [ -z "$NODE_PATH" ]; then
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/update-browserslist-db@1.2.3_browserslist@4.28.1/node_modules/update-browserslist-db/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/update-browserslist-db@1.2.3_browserslist@4.28.1/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/update-browserslist-db/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
else
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/update-browserslist-db@1.2.3_browserslist@4.28.1/node_modules/update-browserslist-db/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/update-browserslist-db@1.2.3_browserslist@4.28.1/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
export NODE_PATH="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/update-browserslist-db/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../update-browserslist-db/cli.js" "$@"

View File

@@ -1,8 +1,8 @@
@SETLOCAL
@IF NOT DEFINED NODE_PATH (
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\update-browserslist-db@1.2.3_browserslist@4.28.1\node_modules\update-browserslist-db\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\update-browserslist-db@1.2.3_browserslist@4.28.1\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\update-browserslist-db\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
) ELSE (
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\update-browserslist-db@1.2.3_browserslist@4.28.1\node_modules\update-browserslist-db\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\update-browserslist-db@1.2.3_browserslist@4.28.1\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\update-browserslist-db\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
)
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\update-browserslist-db\cli.js" %*

View File

@@ -4,14 +4,14 @@ $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
$exe=""
$pathsep=":"
$env_node_path=$env:NODE_PATH
$new_node_path="E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\update-browserslist-db@1.2.3_browserslist@4.28.1\node_modules\update-browserslist-db\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\update-browserslist-db@1.2.3_browserslist@4.28.1\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
$new_node_path="E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules\update-browserslist-db\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
# Fix case when both the Windows and Linux builds of Node
# are installed in the same directory
$exe=".exe"
$pathsep=";"
} else {
$new_node_path="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/update-browserslist-db@1.2.3_browserslist@4.28.1/node_modules/update-browserslist-db/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/update-browserslist-db@1.2.3_browserslist@4.28.1/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
$new_node_path="/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules/update-browserslist-db/node_modules:/mnt/e/Gongsi/Mycontent/soul-admin/node_modules/.pnpm/node_modules"
}
if ([string]::IsNullOrEmpty($env_node_path)) {
$env:NODE_PATH=$new_node_path

View File

@@ -335,7 +335,7 @@ The following options may be used with the main `picomatch()` function or any of
| `keepQuotes` | `boolean` | `false` | Retain quotes in the generated regex, since quotes may also be used as an alternative to backslashes. |
| `literalBrackets` | `boolean` | `undefined` | When `true`, brackets in the glob pattern will be escaped so that only literal brackets will be matched. |
| `matchBase` | `boolean` | `false` | Alias for `basename` |
| `maxLength` | `number` | `65536` | Limit the max length of the input string. An error is thrown if the input string is longer than this value. |
| `maxLength` | `boolean` | `65536` | Limit the max length of the input string. An error is thrown if the input string is longer than this value. |
| `nobrace` | `boolean` | `false` | Disable brace matching, so that `{a,b}` and `{1..3}` would be treated as literal characters. |
| `nobracket` | `boolean` | `undefined` | Disable matching with regex brackets. |
| `nocase` | `boolean` | `false` | Make matching case-insensitive. Equivalent to the regex `i` flag. Note that this option is overridden by the `flags` option. |

View File

@@ -99,7 +99,6 @@ module.exports = {
// Replace globs with equivalent patterns to reduce parsing time.
REPLACEMENTS: {
__proto__: null,
'***': '*',
'**/**': '**',
'**/**/**': '**'

View File

@@ -1,7 +1,7 @@
{
"name": "picomatch",
"description": "Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.",
"version": "4.0.3",
"version": "4.0.2",
"homepage": "https://github.com/micromatch/picomatch",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"funding": "https://github.com/sponsors/jonschlinkert",

View File

@@ -6,13 +6,13 @@ import {
Portal,
hideOthers,
useFocusGuards
} from "./chunk-F7DT5XKE.js";
} from "./chunk-TQPPICSF.js";
import {
Presence
} from "./chunk-F45T64ZQ.js";
} from "./chunk-NOU7F7EJ.js";
import {
useId
} from "./chunk-J6QGUIE5.js";
} from "./chunk-LAKFU2YZ.js";
import {
Primitive,
composeEventHandlers,
@@ -20,11 +20,11 @@ import {
createContextScope,
createSlot,
useControllableState
} from "./chunk-6P4JE5KB.js";
} from "./chunk-6PGXP53J.js";
import "./chunk-4GC24YIX.js";
import {
useComposedRefs
} from "./chunk-H5WV2N77.js";
import "./chunk-4GC24YIX.js";
import {
require_jsx_runtime
} from "./chunk-GVNB4JNI.js";

View File

@@ -1,11 +1,11 @@
"use client";
import {
require_react_dom
} from "./chunk-4GC24YIX.js";
import {
createSlot
} from "./chunk-GDI5LHIV.js";
import "./chunk-H5WV2N77.js";
import {
require_react_dom
} from "./chunk-4GC24YIX.js";
import {
require_jsx_runtime
} from "./chunk-GVNB4JNI.js";

View File

@@ -1,4 +1,15 @@
"use client";
import {
clamp
} from "./chunk-QSHREGVI.js";
import {
usePrevious,
useSize
} from "./chunk-L3UKNFUA.js";
import {
createCollection,
useDirection
} from "./chunk-CEO7JH3I.js";
import {
Combination_default,
DismissableLayer,
@@ -6,22 +17,11 @@ import {
Portal,
hideOthers,
useFocusGuards
} from "./chunk-F7DT5XKE.js";
} from "./chunk-TQPPICSF.js";
import {
useCallbackRef,
useId
} from "./chunk-J6QGUIE5.js";
import {
clamp
} from "./chunk-QSHREGVI.js";
import {
createCollection,
useDirection
} from "./chunk-FFR5BFZF.js";
import {
usePrevious,
useSize
} from "./chunk-TP6EWLLD.js";
} from "./chunk-LAKFU2YZ.js";
import {
Primitive,
composeEventHandlers,
@@ -29,13 +29,13 @@ import {
createSlot,
useControllableState,
useLayoutEffect2
} from "./chunk-6P4JE5KB.js";
import {
useComposedRefs
} from "./chunk-H5WV2N77.js";
} from "./chunk-6PGXP53J.js";
import {
require_react_dom
} from "./chunk-4GC24YIX.js";
import {
useComposedRefs
} from "./chunk-H5WV2N77.js";
import {
require_jsx_runtime
} from "./chunk-GVNB4JNI.js";

View File

@@ -2,24 +2,24 @@
import {
clamp
} from "./chunk-QSHREGVI.js";
import {
createCollection,
useDirection
} from "./chunk-FFR5BFZF.js";
import {
usePrevious,
useSize
} from "./chunk-TP6EWLLD.js";
} from "./chunk-L3UKNFUA.js";
import {
createCollection,
useDirection
} from "./chunk-CEO7JH3I.js";
import {
Primitive,
composeEventHandlers,
createContextScope,
useControllableState
} from "./chunk-6P4JE5KB.js";
} from "./chunk-6PGXP53J.js";
import "./chunk-4GC24YIX.js";
import {
useComposedRefs
} from "./chunk-H5WV2N77.js";
import "./chunk-4GC24YIX.js";
import {
require_jsx_runtime
} from "./chunk-GVNB4JNI.js";

View File

@@ -2,17 +2,17 @@
import {
usePrevious,
useSize
} from "./chunk-TP6EWLLD.js";
} from "./chunk-L3UKNFUA.js";
import {
Primitive,
composeEventHandlers,
createContextScope,
useControllableState
} from "./chunk-6P4JE5KB.js";
} from "./chunk-6PGXP53J.js";
import "./chunk-4GC24YIX.js";
import {
useComposedRefs
} from "./chunk-H5WV2N77.js";
import "./chunk-4GC24YIX.js";
import {
require_jsx_runtime
} from "./chunk-GVNB4JNI.js";

View File

@@ -1,25 +1,25 @@
"use client";
import {
Presence
} from "./chunk-F45T64ZQ.js";
import {
useCallbackRef,
useId
} from "./chunk-J6QGUIE5.js";
import {
createCollection,
useDirection
} from "./chunk-FFR5BFZF.js";
} from "./chunk-CEO7JH3I.js";
import {
Presence
} from "./chunk-NOU7F7EJ.js";
import {
useCallbackRef,
useId
} from "./chunk-LAKFU2YZ.js";
import {
Primitive,
composeEventHandlers,
createContextScope,
useControllableState
} from "./chunk-6P4JE5KB.js";
} from "./chunk-6PGXP53J.js";
import "./chunk-4GC24YIX.js";
import {
useComposedRefs
} from "./chunk-H5WV2N77.js";
import "./chunk-4GC24YIX.js";
import {
require_jsx_runtime
} from "./chunk-GVNB4JNI.js";

View File

@@ -1,143 +1,143 @@
{
"hash": "c56517f0",
"hash": "13546d7b",
"configHash": "c74fa922",
"lockfileHash": "c542f80f",
"browserHash": "ec97b754",
"lockfileHash": "816dbc6e",
"browserHash": "392799fb",
"optimized": {
"react": {
"src": "../../.pnpm/react@18.3.1/node_modules/react/index.js",
"file": "react.js",
"fileHash": "55b572c3",
"fileHash": "ee001604",
"needsInterop": true
},
"react-dom": {
"src": "../../.pnpm/react-dom@18.3.1_react@18.3.1/node_modules/react-dom/index.js",
"file": "react-dom.js",
"fileHash": "6441fa16",
"fileHash": "dae2d510",
"needsInterop": true
},
"react/jsx-dev-runtime": {
"src": "../../.pnpm/react@18.3.1/node_modules/react/jsx-dev-runtime.js",
"file": "react_jsx-dev-runtime.js",
"fileHash": "4133b613",
"fileHash": "c7694ff5",
"needsInterop": true
},
"react/jsx-runtime": {
"src": "../../.pnpm/react@18.3.1/node_modules/react/jsx-runtime.js",
"file": "react_jsx-runtime.js",
"fileHash": "60406996",
"fileHash": "f3e00475",
"needsInterop": true
},
"@radix-ui/react-dialog": {
"src": "../../.pnpm/@radix-ui+react-dialog@1.1._9cd126aa2880bf880e57e64087c058d6/node_modules/@radix-ui/react-dialog/dist/index.mjs",
"file": "@radix-ui_react-dialog.js",
"fileHash": "ea762974",
"fileHash": "0416d3c6",
"needsInterop": false
},
"@radix-ui/react-label": {
"src": "../../.pnpm/@radix-ui+react-label@2.1.8_8915bfc4015ea7714adf8fc777d50ad8/node_modules/@radix-ui/react-label/dist/index.mjs",
"file": "@radix-ui_react-label.js",
"fileHash": "5e963753",
"fileHash": "3b5cd4b9",
"needsInterop": false
},
"@radix-ui/react-select": {
"src": "../../.pnpm/@radix-ui+react-select@2.2._f9b05e8db7247fc075715ae52301583d/node_modules/@radix-ui/react-select/dist/index.mjs",
"file": "@radix-ui_react-select.js",
"fileHash": "2e936042",
"fileHash": "eec510f7",
"needsInterop": false
},
"@radix-ui/react-slider": {
"src": "../../.pnpm/@radix-ui+react-slider@1.3._447f5338eb4e3826348b8f99da1e7596/node_modules/@radix-ui/react-slider/dist/index.mjs",
"file": "@radix-ui_react-slider.js",
"fileHash": "a3dec38b",
"fileHash": "349206b0",
"needsInterop": false
},
"@radix-ui/react-slot": {
"src": "../../.pnpm/@radix-ui+react-slot@1.2.4_@types+react@18.3.28_react@18.3.1/node_modules/@radix-ui/react-slot/dist/index.mjs",
"file": "@radix-ui_react-slot.js",
"fileHash": "06f08fee",
"fileHash": "a24a0b17",
"needsInterop": false
},
"@radix-ui/react-switch": {
"src": "../../.pnpm/@radix-ui+react-switch@1.2._0225fbd6ccc84d9eda18b8a03485bb75/node_modules/@radix-ui/react-switch/dist/index.mjs",
"file": "@radix-ui_react-switch.js",
"fileHash": "e3bd70de",
"fileHash": "b750fdf3",
"needsInterop": false
},
"@radix-ui/react-tabs": {
"src": "../../.pnpm/@radix-ui+react-tabs@1.1.13_6db026cd1527317527c6849c7bd26c2f/node_modules/@radix-ui/react-tabs/dist/index.mjs",
"file": "@radix-ui_react-tabs.js",
"fileHash": "9df5d350",
"fileHash": "65c9dd67",
"needsInterop": false
},
"class-variance-authority": {
"src": "../../.pnpm/class-variance-authority@0.7.1/node_modules/class-variance-authority/dist/index.mjs",
"file": "class-variance-authority.js",
"fileHash": "0ae4b502",
"fileHash": "2f219f9c",
"needsInterop": false
},
"clsx": {
"src": "../../.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.mjs",
"file": "clsx.js",
"fileHash": "7a1135d7",
"fileHash": "3ac7f8dd",
"needsInterop": false
},
"lucide-react": {
"src": "../../.pnpm/lucide-react@0.562.0_react@18.3.1/node_modules/lucide-react/dist/esm/lucide-react.js",
"file": "lucide-react.js",
"fileHash": "f0384281",
"fileHash": "ca2692bf",
"needsInterop": false
},
"react-dom/client": {
"src": "../../.pnpm/react-dom@18.3.1_react@18.3.1/node_modules/react-dom/client.js",
"file": "react-dom_client.js",
"fileHash": "2a7d4bbd",
"fileHash": "5b781ac3",
"needsInterop": true
},
"react-router-dom": {
"src": "../../.pnpm/react-router-dom@6.30.3_rea_8738f2f356869a9d467b32612b8c1bd5/node_modules/react-router-dom/dist/index.js",
"file": "react-router-dom.js",
"fileHash": "aa96756b",
"fileHash": "b98b9236",
"needsInterop": false
},
"tailwind-merge": {
"src": "../../.pnpm/tailwind-merge@3.4.0/node_modules/tailwind-merge/dist/bundle-mjs.mjs",
"file": "tailwind-merge.js",
"fileHash": "a8c53580",
"fileHash": "a33bcba1",
"needsInterop": false
}
},
"chunks": {
"chunk-GDI5LHIV": {
"file": "chunk-GDI5LHIV.js"
},
"chunk-F7DT5XKE": {
"file": "chunk-F7DT5XKE.js"
},
"chunk-F45T64ZQ": {
"file": "chunk-F45T64ZQ.js"
},
"chunk-J6QGUIE5": {
"file": "chunk-J6QGUIE5.js"
},
"chunk-QSHREGVI": {
"file": "chunk-QSHREGVI.js"
},
"chunk-FFR5BFZF": {
"file": "chunk-FFR5BFZF.js"
"chunk-L3UKNFUA": {
"file": "chunk-L3UKNFUA.js"
},
"chunk-TP6EWLLD": {
"file": "chunk-TP6EWLLD.js"
"chunk-CEO7JH3I": {
"file": "chunk-CEO7JH3I.js"
},
"chunk-6P4JE5KB": {
"file": "chunk-6P4JE5KB.js"
"chunk-TQPPICSF": {
"file": "chunk-TQPPICSF.js"
},
"chunk-H5WV2N77": {
"file": "chunk-H5WV2N77.js"
"chunk-NOU7F7EJ": {
"file": "chunk-NOU7F7EJ.js"
},
"chunk-LAKFU2YZ": {
"file": "chunk-LAKFU2YZ.js"
},
"chunk-6PGXP53J": {
"file": "chunk-6PGXP53J.js"
},
"chunk-4GC24YIX": {
"file": "chunk-4GC24YIX.js"
},
"chunk-GDI5LHIV": {
"file": "chunk-GDI5LHIV.js"
},
"chunk-H5WV2N77": {
"file": "chunk-H5WV2N77.js"
},
"chunk-GVNB4JNI": {
"file": "chunk-GVNB4JNI.js"
},

View File

@@ -10,9 +10,6 @@
"lint": "eslint . --ext ts,tsx"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.28.0",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "2.1.8",
"@radix-ui/react-select": "2.2.6",
@@ -24,11 +21,15 @@
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"lucide-react": "0.562.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.28.0",
"tailwind-merge": "3.4.0",
"zustand": "5.0.9"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@tailwindcss/postcss": "^4.1.18",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
@@ -37,8 +38,8 @@
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.12.0",
"picomatch": "4.0.2",
"postcss": "^8.4.49",
"@tailwindcss/postcss": "^4.1.18",
"tailwindcss": "^4.1.9",
"typescript": "~5.6.2",
"typescript-eslint": "^8.15.0",

View File

@@ -87,6 +87,9 @@ importers:
globals:
specifier: ^15.12.0
version: 15.15.0
picomatch:
specifier: 4.0.2
version: 4.0.2
postcss:
specifier: ^8.4.49
version: 8.5.6
@@ -1597,6 +1600,10 @@ packages:
picocolors@1.1.1:
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
picomatch@4.0.2:
resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
engines: {node: '>=12'}
picomatch@4.0.3:
resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
engines: {node: '>=12'}
@@ -2998,6 +3005,10 @@ snapshots:
fast-levenshtein@2.0.6: {}
fdir@6.5.0(picomatch@4.0.2):
optionalDependencies:
picomatch: 4.0.2
fdir@6.5.0(picomatch@4.0.3):
optionalDependencies:
picomatch: 4.0.3
@@ -3199,6 +3210,8 @@ snapshots:
picocolors@1.1.1: {}
picomatch@4.0.2: {}
picomatch@4.0.3: {}
postcss-value-parser@4.2.0: {}
@@ -3381,8 +3394,8 @@ snapshots:
vite@6.4.1(jiti@2.6.1)(lightningcss@1.30.2):
dependencies:
esbuild: 0.25.12
fdir: 6.5.0(picomatch@4.0.3)
picomatch: 4.0.3
fdir: 6.5.0(picomatch@4.0.2)
picomatch: 4.0.2
postcss: 8.5.6
rollup: 4.57.1
tinyglobby: 0.2.15

View File

@@ -276,6 +276,7 @@ export function DistributionPage() {
expired: 'bg-gray-500/20 text-gray-400',
cancelled: 'bg-red-500/20 text-red-400',
pending: 'bg-orange-500/20 text-orange-400',
pending_confirm: 'bg-orange-500/20 text-orange-400',
processing: 'bg-blue-500/20 text-blue-400',
completed: 'bg-green-500/20 text-green-400',
rejected: 'bg-red-500/20 text-red-400',
@@ -286,6 +287,7 @@ export function DistributionPage() {
expired: '已过期',
cancelled: '已取消',
pending: '待审核',
pending_confirm: '待用户确认',
processing: '处理中',
completed: '已完成',
rejected: '已拒绝',

View File

@@ -137,12 +137,17 @@ export function WithdrawalsPage() {
function getStatusBadge(status: string) {
switch (status) {
case 'pending':
case 'pending_confirm':
return (
<Badge className="bg-orange-500/20 text-orange-400 hover:bg-orange-500/20 border-0">
</Badge>
)
case 'pending_confirm':
return (
<Badge className="bg-orange-500/20 text-orange-400 hover:bg-orange-500/20 border-0">
</Badge>
)
case 'processing':
return (
<Badge className="bg-blue-500/20 text-blue-400 hover:bg-blue-500/20 border-0">

View File

@@ -1 +1 @@
{"root":["./src/app.tsx","./src/main.tsx","./src/vite-env.d.ts","./src/api/auth.ts","./src/api/client.ts","./src/components/modules/user/userdetailmodal.tsx","./src/components/ui/badge.tsx","./src/components/ui/button.tsx","./src/components/ui/card.tsx","./src/components/ui/dialog.tsx","./src/components/ui/input.tsx","./src/components/ui/label.tsx","./src/components/ui/select.tsx","./src/components/ui/slider.tsx","./src/components/ui/switch.tsx","./src/components/ui/table.tsx","./src/components/ui/tabs.tsx","./src/components/ui/textarea.tsx","./src/layouts/adminlayout.tsx","./src/lib/utils.ts","./src/pages/chapters/chapterspage.tsx","./src/pages/content/contentpage.tsx","./src/pages/dashboard/dashboardpage.tsx","./src/pages/distribution/distributionpage.tsx","./src/pages/login/loginpage.tsx","./src/pages/match/matchpage.tsx","./src/pages/not-found/notfoundpage.tsx","./src/pages/orders/orderspage.tsx","./src/pages/payment/paymentpage.tsx","./src/pages/qrcodes/qrcodespage.tsx","./src/pages/referral-settings/referralsettingspage.tsx","./src/pages/settings/settingspage.tsx","./src/pages/site/sitepage.tsx","./src/pages/users/userspage.tsx","./src/pages/withdrawals/withdrawalspage.tsx"],"version":"5.6.3"}
{"root":["./src/app.tsx","./src/main.tsx","./src/vite-env.d.ts","./src/api/auth.ts","./src/api/client.ts","./src/components/modules/user/userdetailmodal.tsx","./src/components/ui/badge.tsx","./src/components/ui/button.tsx","./src/components/ui/card.tsx","./src/components/ui/dialog.tsx","./src/components/ui/input.tsx","./src/components/ui/label.tsx","./src/components/ui/select.tsx","./src/components/ui/slider.tsx","./src/components/ui/switch.tsx","./src/components/ui/table.tsx","./src/components/ui/tabs.tsx","./src/components/ui/textarea.tsx","./src/layouts/adminlayout.tsx","./src/lib/utils.ts","./src/pages/chapters/chapterspage.tsx","./src/pages/content/contentpage.tsx","./src/pages/dashboard/dashboardpage.tsx","./src/pages/distribution/distributionpage.tsx","./src/pages/login/loginpage.tsx","./src/pages/match/matchpage.tsx","./src/pages/not-found/notfoundpage.tsx","./src/pages/orders/orderspage.tsx","./src/pages/payment/paymentpage.tsx","./src/pages/qrcodes/qrcodespage.tsx","./src/pages/referral-settings/referralsettingspage.tsx","./src/pages/settings/settingspage.tsx","./src/pages/site/sitepage.tsx","./src/pages/users/userspage.tsx","./src/pages/withdrawals/withdrawalspage.tsx"],"errors":true,"version":"5.6.3"}

View File

@@ -1,6 +1,9 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import path from 'path'
import { fileURLToPath } from 'url'
const __dirname = path.dirname(fileURLToPath(import.meta.url))
export default defineConfig({
plugins: [react()],

View File

@@ -23,6 +23,7 @@ func BookAllChapters(c *gin.Context) {
}
// BookChapterByID GET /api/book/chapter/:id
// 同时兼容小程序:将 content/chapterTitle/partTitle 等放到顶层,便于 miniprogram 直接 res.content
func BookChapterByID(c *gin.Context) {
id := c.Param("id")
if id == "" {
@@ -38,7 +39,23 @@ func BookChapterByID(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{"success": false, "error": err.Error()})
return
}
c.JSON(http.StatusOK, gin.H{"success": true, "data": ch})
// 返回格式:顶层携带 content/chapterTitle/partTitle 等,供小程序 read 页直接使用
out := gin.H{
"success": true,
"data": ch,
"content": ch.Content,
"chapterTitle": ch.ChapterTitle,
"partTitle": ch.PartTitle,
"id": ch.ID,
"sectionTitle": ch.SectionTitle,
}
if ch.IsFree != nil {
out["isFree"] = *ch.IsFree
}
if ch.Price != nil {
out["price"] = *ch.Price
}
c.JSON(http.StatusOK, out)
}
// BookChapters GET/POST/PUT/DELETE /api/book/chapters与 app/api/book/chapters 一致,用 GORM

View File

@@ -326,7 +326,7 @@ func WithdrawPendingConfirm(c *gin.Context) {
}
// WithdrawConfirmReceived POST /api/miniprogram/withdraw/confirm-received 用户确认收款(记录已点击确认)
// body: { "withdrawalId": "xxx", "userId": "xxx" },仅本人可操作更新 user_confirmed_at
// body: { "withdrawalId": "xxx", "userId": "xxx" },仅本人可操作更新 user_confirmed_at 并将状态置为 success该条不再出现在待确认收款列表
func WithdrawConfirmReceived(c *gin.Context) {
var req struct {
WithdrawalID string `json:"withdrawalId" binding:"required"`
@@ -346,7 +346,7 @@ func WithdrawConfirmReceived(c *gin.Context) {
if w.Status != nil {
st = *w.Status
}
// 仅处理中或已成功的可标记「用户已确认收款」
// 仅处理中或待确认的可标记「用户已确认收款」
if st != "processing" && st != "pending_confirm" && st != "success" {
c.JSON(http.StatusOK, gin.H{"success": false, "message": "当前状态不可确认收款"})
return
@@ -356,7 +356,9 @@ func WithdrawConfirmReceived(c *gin.Context) {
return
}
now := time.Now()
if err := db.Model(&w).Update("user_confirmed_at", now).Error; err != nil {
// 更新为已确认收款,并将状态置为 success待确认列表只含 processing/pending_confirm故该条会从列表中移除
up := map[string]interface{}{"user_confirmed_at": now, "status": "success"}
if err := db.Model(&w).Updates(up).Error; err != nil {
c.JSON(http.StatusOK, gin.H{"success": false, "message": "更新失败"})
return
}

Binary file not shown.