dbcube 1.1.2 → 1.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.npmignore +2 -0
- package/.pnpmrc +1 -0
- package/dist/index.cjs +95 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +95 -0
- package/dist/index.d.ts +95 -0
- package/dist/index.js +95 -0
- package/dist/index.js.map +1 -1
- package/node_modules/.bin/dbcube +21 -0
- package/node_modules/.bin/dbcube.CMD +12 -0
- package/node_modules/.bin/dbcube.ps1 +41 -0
- package/node_modules/.bin/esbuild +21 -0
- package/node_modules/.bin/esbuild.CMD +12 -0
- package/node_modules/.bin/esbuild.ps1 +41 -0
- package/node_modules/.bin/rollup +21 -0
- package/node_modules/.bin/rollup.CMD +12 -0
- package/node_modules/.bin/rollup.ps1 +41 -0
- package/node_modules/.bin/tsc +21 -0
- package/node_modules/.bin/tsc.CMD +12 -0
- package/node_modules/.bin/tsc.ps1 +41 -0
- package/node_modules/.bin/tsserver +21 -0
- package/node_modules/.bin/tsserver.CMD +12 -0
- package/node_modules/.bin/tsserver.ps1 +41 -0
- package/node_modules/.bin/tsup +21 -0
- package/node_modules/.bin/tsup-node +21 -0
- package/node_modules/.bin/tsup-node.CMD +12 -0
- package/node_modules/.bin/tsup-node.ps1 +41 -0
- package/node_modules/.bin/tsup.CMD +12 -0
- package/node_modules/.bin/tsup.ps1 +41 -0
- package/node_modules/.modules.yaml +503 -0
- package/node_modules/.pnpm/lock.yaml +2116 -0
- package/node_modules/.pnpm-workspace-state.json +25 -0
- package/package.json +78 -83
- package/tsup.config.ts +0 -14
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
@SETLOCAL
|
|
2
|
+
@IF NOT DEFINED NODE_PATH (
|
|
3
|
+
@SET "NODE_PATH=C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\esbuild@0.25.9\node_modules\esbuild\bin\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\esbuild@0.25.9\node_modules\esbuild\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\esbuild@0.25.9\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\node_modules"
|
|
4
|
+
) ELSE (
|
|
5
|
+
@SET "NODE_PATH=C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\esbuild@0.25.9\node_modules\esbuild\bin\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\esbuild@0.25.9\node_modules\esbuild\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\esbuild@0.25.9\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\node_modules;%NODE_PATH%"
|
|
6
|
+
)
|
|
7
|
+
@IF EXIST "%~dp0\node.exe" (
|
|
8
|
+
"%~dp0\node.exe" "%~dp0\..\.pnpm\esbuild@0.25.9\node_modules\esbuild\bin\esbuild" %*
|
|
9
|
+
) ELSE (
|
|
10
|
+
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
|
11
|
+
node "%~dp0\..\.pnpm\esbuild@0.25.9\node_modules\esbuild\bin\esbuild" %*
|
|
12
|
+
)
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
#!/usr/bin/env pwsh
|
|
2
|
+
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
|
3
|
+
|
|
4
|
+
$exe=""
|
|
5
|
+
$pathsep=":"
|
|
6
|
+
$env_node_path=$env:NODE_PATH
|
|
7
|
+
$new_node_path="C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\esbuild@0.25.9\node_modules\esbuild\bin\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\esbuild@0.25.9\node_modules\esbuild\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\esbuild@0.25.9\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\node_modules"
|
|
8
|
+
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
|
9
|
+
# Fix case when both the Windows and Linux builds of Node
|
|
10
|
+
# are installed in the same directory
|
|
11
|
+
$exe=".exe"
|
|
12
|
+
$pathsep=";"
|
|
13
|
+
} else {
|
|
14
|
+
$new_node_path="/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/esbuild@0.25.9/node_modules/esbuild/bin/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/esbuild@0.25.9/node_modules/esbuild/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/esbuild@0.25.9/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/node_modules"
|
|
15
|
+
}
|
|
16
|
+
if ([string]::IsNullOrEmpty($env_node_path)) {
|
|
17
|
+
$env:NODE_PATH=$new_node_path
|
|
18
|
+
} else {
|
|
19
|
+
$env:NODE_PATH="$new_node_path$pathsep$env_node_path"
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
$ret=0
|
|
23
|
+
if (Test-Path "$basedir/node$exe") {
|
|
24
|
+
# Support pipeline input
|
|
25
|
+
if ($MyInvocation.ExpectingInput) {
|
|
26
|
+
$input | & "$basedir/node$exe" "$basedir/../.pnpm/esbuild@0.25.9/node_modules/esbuild/bin/esbuild" $args
|
|
27
|
+
} else {
|
|
28
|
+
& "$basedir/node$exe" "$basedir/../.pnpm/esbuild@0.25.9/node_modules/esbuild/bin/esbuild" $args
|
|
29
|
+
}
|
|
30
|
+
$ret=$LASTEXITCODE
|
|
31
|
+
} else {
|
|
32
|
+
# Support pipeline input
|
|
33
|
+
if ($MyInvocation.ExpectingInput) {
|
|
34
|
+
$input | & "node$exe" "$basedir/../.pnpm/esbuild@0.25.9/node_modules/esbuild/bin/esbuild" $args
|
|
35
|
+
} else {
|
|
36
|
+
& "node$exe" "$basedir/../.pnpm/esbuild@0.25.9/node_modules/esbuild/bin/esbuild" $args
|
|
37
|
+
}
|
|
38
|
+
$ret=$LASTEXITCODE
|
|
39
|
+
}
|
|
40
|
+
$env:NODE_PATH=$env_node_path
|
|
41
|
+
exit $ret
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
+
|
|
4
|
+
case `uname` in
|
|
5
|
+
*CYGWIN*|*MINGW*|*MSYS*)
|
|
6
|
+
if command -v cygpath > /dev/null 2>&1; then
|
|
7
|
+
basedir=`cygpath -w "$basedir"`
|
|
8
|
+
fi
|
|
9
|
+
;;
|
|
10
|
+
esac
|
|
11
|
+
|
|
12
|
+
if [ -z "$NODE_PATH" ]; then
|
|
13
|
+
export NODE_PATH="/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/rollup@4.50.0/node_modules/rollup/dist/bin/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/rollup@4.50.0/node_modules/rollup/dist/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/rollup@4.50.0/node_modules/rollup/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/rollup@4.50.0/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/node_modules"
|
|
14
|
+
else
|
|
15
|
+
export NODE_PATH="/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/rollup@4.50.0/node_modules/rollup/dist/bin/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/rollup@4.50.0/node_modules/rollup/dist/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/rollup@4.50.0/node_modules/rollup/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/rollup@4.50.0/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
16
|
+
fi
|
|
17
|
+
if [ -x "$basedir/node" ]; then
|
|
18
|
+
exec "$basedir/node" "$basedir/../rollup/dist/bin/rollup" "$@"
|
|
19
|
+
else
|
|
20
|
+
exec node "$basedir/../rollup/dist/bin/rollup" "$@"
|
|
21
|
+
fi
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
@SETLOCAL
|
|
2
|
+
@IF NOT DEFINED NODE_PATH (
|
|
3
|
+
@SET "NODE_PATH=C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\rollup@4.50.0\node_modules\rollup\dist\bin\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\rollup@4.50.0\node_modules\rollup\dist\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\rollup@4.50.0\node_modules\rollup\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\rollup@4.50.0\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\node_modules"
|
|
4
|
+
) ELSE (
|
|
5
|
+
@SET "NODE_PATH=C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\rollup@4.50.0\node_modules\rollup\dist\bin\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\rollup@4.50.0\node_modules\rollup\dist\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\rollup@4.50.0\node_modules\rollup\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\rollup@4.50.0\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\node_modules;%NODE_PATH%"
|
|
6
|
+
)
|
|
7
|
+
@IF EXIST "%~dp0\node.exe" (
|
|
8
|
+
"%~dp0\node.exe" "%~dp0\..\rollup\dist\bin\rollup" %*
|
|
9
|
+
) ELSE (
|
|
10
|
+
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
|
11
|
+
node "%~dp0\..\rollup\dist\bin\rollup" %*
|
|
12
|
+
)
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
#!/usr/bin/env pwsh
|
|
2
|
+
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
|
3
|
+
|
|
4
|
+
$exe=""
|
|
5
|
+
$pathsep=":"
|
|
6
|
+
$env_node_path=$env:NODE_PATH
|
|
7
|
+
$new_node_path="C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\rollup@4.50.0\node_modules\rollup\dist\bin\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\rollup@4.50.0\node_modules\rollup\dist\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\rollup@4.50.0\node_modules\rollup\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\rollup@4.50.0\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\node_modules"
|
|
8
|
+
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
|
9
|
+
# Fix case when both the Windows and Linux builds of Node
|
|
10
|
+
# are installed in the same directory
|
|
11
|
+
$exe=".exe"
|
|
12
|
+
$pathsep=";"
|
|
13
|
+
} else {
|
|
14
|
+
$new_node_path="/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/rollup@4.50.0/node_modules/rollup/dist/bin/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/rollup@4.50.0/node_modules/rollup/dist/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/rollup@4.50.0/node_modules/rollup/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/rollup@4.50.0/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/node_modules"
|
|
15
|
+
}
|
|
16
|
+
if ([string]::IsNullOrEmpty($env_node_path)) {
|
|
17
|
+
$env:NODE_PATH=$new_node_path
|
|
18
|
+
} else {
|
|
19
|
+
$env:NODE_PATH="$new_node_path$pathsep$env_node_path"
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
$ret=0
|
|
23
|
+
if (Test-Path "$basedir/node$exe") {
|
|
24
|
+
# Support pipeline input
|
|
25
|
+
if ($MyInvocation.ExpectingInput) {
|
|
26
|
+
$input | & "$basedir/node$exe" "$basedir/../rollup/dist/bin/rollup" $args
|
|
27
|
+
} else {
|
|
28
|
+
& "$basedir/node$exe" "$basedir/../rollup/dist/bin/rollup" $args
|
|
29
|
+
}
|
|
30
|
+
$ret=$LASTEXITCODE
|
|
31
|
+
} else {
|
|
32
|
+
# Support pipeline input
|
|
33
|
+
if ($MyInvocation.ExpectingInput) {
|
|
34
|
+
$input | & "node$exe" "$basedir/../rollup/dist/bin/rollup" $args
|
|
35
|
+
} else {
|
|
36
|
+
& "node$exe" "$basedir/../rollup/dist/bin/rollup" $args
|
|
37
|
+
}
|
|
38
|
+
$ret=$LASTEXITCODE
|
|
39
|
+
}
|
|
40
|
+
$env:NODE_PATH=$env_node_path
|
|
41
|
+
exit $ret
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
+
|
|
4
|
+
case `uname` in
|
|
5
|
+
*CYGWIN*|*MINGW*|*MSYS*)
|
|
6
|
+
if command -v cygpath > /dev/null 2>&1; then
|
|
7
|
+
basedir=`cygpath -w "$basedir"`
|
|
8
|
+
fi
|
|
9
|
+
;;
|
|
10
|
+
esac
|
|
11
|
+
|
|
12
|
+
if [ -z "$NODE_PATH" ]; then
|
|
13
|
+
export NODE_PATH="/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/bin/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/typescript@5.9.2/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/node_modules"
|
|
14
|
+
else
|
|
15
|
+
export NODE_PATH="/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/bin/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/typescript@5.9.2/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
16
|
+
fi
|
|
17
|
+
if [ -x "$basedir/node" ]; then
|
|
18
|
+
exec "$basedir/node" "$basedir/../typescript/bin/tsc" "$@"
|
|
19
|
+
else
|
|
20
|
+
exec node "$basedir/../typescript/bin/tsc" "$@"
|
|
21
|
+
fi
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
@SETLOCAL
|
|
2
|
+
@IF NOT DEFINED NODE_PATH (
|
|
3
|
+
@SET "NODE_PATH=C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\typescript@5.9.2\node_modules\typescript\bin\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\typescript@5.9.2\node_modules\typescript\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\typescript@5.9.2\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\node_modules"
|
|
4
|
+
) ELSE (
|
|
5
|
+
@SET "NODE_PATH=C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\typescript@5.9.2\node_modules\typescript\bin\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\typescript@5.9.2\node_modules\typescript\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\typescript@5.9.2\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\node_modules;%NODE_PATH%"
|
|
6
|
+
)
|
|
7
|
+
@IF EXIST "%~dp0\node.exe" (
|
|
8
|
+
"%~dp0\node.exe" "%~dp0\..\typescript\bin\tsc" %*
|
|
9
|
+
) ELSE (
|
|
10
|
+
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
|
11
|
+
node "%~dp0\..\typescript\bin\tsc" %*
|
|
12
|
+
)
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
#!/usr/bin/env pwsh
|
|
2
|
+
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
|
3
|
+
|
|
4
|
+
$exe=""
|
|
5
|
+
$pathsep=":"
|
|
6
|
+
$env_node_path=$env:NODE_PATH
|
|
7
|
+
$new_node_path="C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\typescript@5.9.2\node_modules\typescript\bin\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\typescript@5.9.2\node_modules\typescript\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\typescript@5.9.2\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\node_modules"
|
|
8
|
+
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
|
9
|
+
# Fix case when both the Windows and Linux builds of Node
|
|
10
|
+
# are installed in the same directory
|
|
11
|
+
$exe=".exe"
|
|
12
|
+
$pathsep=";"
|
|
13
|
+
} else {
|
|
14
|
+
$new_node_path="/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/bin/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/typescript@5.9.2/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/node_modules"
|
|
15
|
+
}
|
|
16
|
+
if ([string]::IsNullOrEmpty($env_node_path)) {
|
|
17
|
+
$env:NODE_PATH=$new_node_path
|
|
18
|
+
} else {
|
|
19
|
+
$env:NODE_PATH="$new_node_path$pathsep$env_node_path"
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
$ret=0
|
|
23
|
+
if (Test-Path "$basedir/node$exe") {
|
|
24
|
+
# Support pipeline input
|
|
25
|
+
if ($MyInvocation.ExpectingInput) {
|
|
26
|
+
$input | & "$basedir/node$exe" "$basedir/../typescript/bin/tsc" $args
|
|
27
|
+
} else {
|
|
28
|
+
& "$basedir/node$exe" "$basedir/../typescript/bin/tsc" $args
|
|
29
|
+
}
|
|
30
|
+
$ret=$LASTEXITCODE
|
|
31
|
+
} else {
|
|
32
|
+
# Support pipeline input
|
|
33
|
+
if ($MyInvocation.ExpectingInput) {
|
|
34
|
+
$input | & "node$exe" "$basedir/../typescript/bin/tsc" $args
|
|
35
|
+
} else {
|
|
36
|
+
& "node$exe" "$basedir/../typescript/bin/tsc" $args
|
|
37
|
+
}
|
|
38
|
+
$ret=$LASTEXITCODE
|
|
39
|
+
}
|
|
40
|
+
$env:NODE_PATH=$env_node_path
|
|
41
|
+
exit $ret
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
+
|
|
4
|
+
case `uname` in
|
|
5
|
+
*CYGWIN*|*MINGW*|*MSYS*)
|
|
6
|
+
if command -v cygpath > /dev/null 2>&1; then
|
|
7
|
+
basedir=`cygpath -w "$basedir"`
|
|
8
|
+
fi
|
|
9
|
+
;;
|
|
10
|
+
esac
|
|
11
|
+
|
|
12
|
+
if [ -z "$NODE_PATH" ]; then
|
|
13
|
+
export NODE_PATH="/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/bin/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/typescript@5.9.2/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/node_modules"
|
|
14
|
+
else
|
|
15
|
+
export NODE_PATH="/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/bin/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/typescript@5.9.2/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
16
|
+
fi
|
|
17
|
+
if [ -x "$basedir/node" ]; then
|
|
18
|
+
exec "$basedir/node" "$basedir/../typescript/bin/tsserver" "$@"
|
|
19
|
+
else
|
|
20
|
+
exec node "$basedir/../typescript/bin/tsserver" "$@"
|
|
21
|
+
fi
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
@SETLOCAL
|
|
2
|
+
@IF NOT DEFINED NODE_PATH (
|
|
3
|
+
@SET "NODE_PATH=C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\typescript@5.9.2\node_modules\typescript\bin\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\typescript@5.9.2\node_modules\typescript\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\typescript@5.9.2\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\node_modules"
|
|
4
|
+
) ELSE (
|
|
5
|
+
@SET "NODE_PATH=C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\typescript@5.9.2\node_modules\typescript\bin\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\typescript@5.9.2\node_modules\typescript\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\typescript@5.9.2\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\node_modules;%NODE_PATH%"
|
|
6
|
+
)
|
|
7
|
+
@IF EXIST "%~dp0\node.exe" (
|
|
8
|
+
"%~dp0\node.exe" "%~dp0\..\typescript\bin\tsserver" %*
|
|
9
|
+
) ELSE (
|
|
10
|
+
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
|
11
|
+
node "%~dp0\..\typescript\bin\tsserver" %*
|
|
12
|
+
)
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
#!/usr/bin/env pwsh
|
|
2
|
+
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
|
3
|
+
|
|
4
|
+
$exe=""
|
|
5
|
+
$pathsep=":"
|
|
6
|
+
$env_node_path=$env:NODE_PATH
|
|
7
|
+
$new_node_path="C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\typescript@5.9.2\node_modules\typescript\bin\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\typescript@5.9.2\node_modules\typescript\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\typescript@5.9.2\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\node_modules"
|
|
8
|
+
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
|
9
|
+
# Fix case when both the Windows and Linux builds of Node
|
|
10
|
+
# are installed in the same directory
|
|
11
|
+
$exe=".exe"
|
|
12
|
+
$pathsep=";"
|
|
13
|
+
} else {
|
|
14
|
+
$new_node_path="/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/bin/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/typescript@5.9.2/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/node_modules"
|
|
15
|
+
}
|
|
16
|
+
if ([string]::IsNullOrEmpty($env_node_path)) {
|
|
17
|
+
$env:NODE_PATH=$new_node_path
|
|
18
|
+
} else {
|
|
19
|
+
$env:NODE_PATH="$new_node_path$pathsep$env_node_path"
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
$ret=0
|
|
23
|
+
if (Test-Path "$basedir/node$exe") {
|
|
24
|
+
# Support pipeline input
|
|
25
|
+
if ($MyInvocation.ExpectingInput) {
|
|
26
|
+
$input | & "$basedir/node$exe" "$basedir/../typescript/bin/tsserver" $args
|
|
27
|
+
} else {
|
|
28
|
+
& "$basedir/node$exe" "$basedir/../typescript/bin/tsserver" $args
|
|
29
|
+
}
|
|
30
|
+
$ret=$LASTEXITCODE
|
|
31
|
+
} else {
|
|
32
|
+
# Support pipeline input
|
|
33
|
+
if ($MyInvocation.ExpectingInput) {
|
|
34
|
+
$input | & "node$exe" "$basedir/../typescript/bin/tsserver" $args
|
|
35
|
+
} else {
|
|
36
|
+
& "node$exe" "$basedir/../typescript/bin/tsserver" $args
|
|
37
|
+
}
|
|
38
|
+
$ret=$LASTEXITCODE
|
|
39
|
+
}
|
|
40
|
+
$env:NODE_PATH=$env_node_path
|
|
41
|
+
exit $ret
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
+
|
|
4
|
+
case `uname` in
|
|
5
|
+
*CYGWIN*|*MINGW*|*MSYS*)
|
|
6
|
+
if command -v cygpath > /dev/null 2>&1; then
|
|
7
|
+
basedir=`cygpath -w "$basedir"`
|
|
8
|
+
fi
|
|
9
|
+
;;
|
|
10
|
+
esac
|
|
11
|
+
|
|
12
|
+
if [ -z "$NODE_PATH" ]; then
|
|
13
|
+
export NODE_PATH="/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/tsup@8.5.0_typescript@5.9.2/node_modules/tsup/dist/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/tsup@8.5.0_typescript@5.9.2/node_modules/tsup/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/tsup@8.5.0_typescript@5.9.2/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/node_modules"
|
|
14
|
+
else
|
|
15
|
+
export NODE_PATH="/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/tsup@8.5.0_typescript@5.9.2/node_modules/tsup/dist/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/tsup@8.5.0_typescript@5.9.2/node_modules/tsup/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/tsup@8.5.0_typescript@5.9.2/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
16
|
+
fi
|
|
17
|
+
if [ -x "$basedir/node" ]; then
|
|
18
|
+
exec "$basedir/node" "$basedir/../tsup/dist/cli-default.js" "$@"
|
|
19
|
+
else
|
|
20
|
+
exec node "$basedir/../tsup/dist/cli-default.js" "$@"
|
|
21
|
+
fi
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
+
|
|
4
|
+
case `uname` in
|
|
5
|
+
*CYGWIN*|*MINGW*|*MSYS*)
|
|
6
|
+
if command -v cygpath > /dev/null 2>&1; then
|
|
7
|
+
basedir=`cygpath -w "$basedir"`
|
|
8
|
+
fi
|
|
9
|
+
;;
|
|
10
|
+
esac
|
|
11
|
+
|
|
12
|
+
if [ -z "$NODE_PATH" ]; then
|
|
13
|
+
export NODE_PATH="/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/tsup@8.5.0_typescript@5.9.2/node_modules/tsup/dist/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/tsup@8.5.0_typescript@5.9.2/node_modules/tsup/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/tsup@8.5.0_typescript@5.9.2/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/node_modules"
|
|
14
|
+
else
|
|
15
|
+
export NODE_PATH="/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/tsup@8.5.0_typescript@5.9.2/node_modules/tsup/dist/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/tsup@8.5.0_typescript@5.9.2/node_modules/tsup/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/tsup@8.5.0_typescript@5.9.2/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
16
|
+
fi
|
|
17
|
+
if [ -x "$basedir/node" ]; then
|
|
18
|
+
exec "$basedir/node" "$basedir/../tsup/dist/cli-node.js" "$@"
|
|
19
|
+
else
|
|
20
|
+
exec node "$basedir/../tsup/dist/cli-node.js" "$@"
|
|
21
|
+
fi
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
@SETLOCAL
|
|
2
|
+
@IF NOT DEFINED NODE_PATH (
|
|
3
|
+
@SET "NODE_PATH=C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\tsup@8.5.0_typescript@5.9.2\node_modules\tsup\dist\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\tsup@8.5.0_typescript@5.9.2\node_modules\tsup\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\tsup@8.5.0_typescript@5.9.2\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\node_modules"
|
|
4
|
+
) ELSE (
|
|
5
|
+
@SET "NODE_PATH=C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\tsup@8.5.0_typescript@5.9.2\node_modules\tsup\dist\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\tsup@8.5.0_typescript@5.9.2\node_modules\tsup\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\tsup@8.5.0_typescript@5.9.2\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\node_modules;%NODE_PATH%"
|
|
6
|
+
)
|
|
7
|
+
@IF EXIST "%~dp0\node.exe" (
|
|
8
|
+
"%~dp0\node.exe" "%~dp0\..\tsup\dist\cli-node.js" %*
|
|
9
|
+
) ELSE (
|
|
10
|
+
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
|
11
|
+
node "%~dp0\..\tsup\dist\cli-node.js" %*
|
|
12
|
+
)
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
#!/usr/bin/env pwsh
|
|
2
|
+
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
|
3
|
+
|
|
4
|
+
$exe=""
|
|
5
|
+
$pathsep=":"
|
|
6
|
+
$env_node_path=$env:NODE_PATH
|
|
7
|
+
$new_node_path="C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\tsup@8.5.0_typescript@5.9.2\node_modules\tsup\dist\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\tsup@8.5.0_typescript@5.9.2\node_modules\tsup\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\tsup@8.5.0_typescript@5.9.2\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\node_modules"
|
|
8
|
+
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
|
9
|
+
# Fix case when both the Windows and Linux builds of Node
|
|
10
|
+
# are installed in the same directory
|
|
11
|
+
$exe=".exe"
|
|
12
|
+
$pathsep=";"
|
|
13
|
+
} else {
|
|
14
|
+
$new_node_path="/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/tsup@8.5.0_typescript@5.9.2/node_modules/tsup/dist/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/tsup@8.5.0_typescript@5.9.2/node_modules/tsup/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/tsup@8.5.0_typescript@5.9.2/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/node_modules"
|
|
15
|
+
}
|
|
16
|
+
if ([string]::IsNullOrEmpty($env_node_path)) {
|
|
17
|
+
$env:NODE_PATH=$new_node_path
|
|
18
|
+
} else {
|
|
19
|
+
$env:NODE_PATH="$new_node_path$pathsep$env_node_path"
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
$ret=0
|
|
23
|
+
if (Test-Path "$basedir/node$exe") {
|
|
24
|
+
# Support pipeline input
|
|
25
|
+
if ($MyInvocation.ExpectingInput) {
|
|
26
|
+
$input | & "$basedir/node$exe" "$basedir/../tsup/dist/cli-node.js" $args
|
|
27
|
+
} else {
|
|
28
|
+
& "$basedir/node$exe" "$basedir/../tsup/dist/cli-node.js" $args
|
|
29
|
+
}
|
|
30
|
+
$ret=$LASTEXITCODE
|
|
31
|
+
} else {
|
|
32
|
+
# Support pipeline input
|
|
33
|
+
if ($MyInvocation.ExpectingInput) {
|
|
34
|
+
$input | & "node$exe" "$basedir/../tsup/dist/cli-node.js" $args
|
|
35
|
+
} else {
|
|
36
|
+
& "node$exe" "$basedir/../tsup/dist/cli-node.js" $args
|
|
37
|
+
}
|
|
38
|
+
$ret=$LASTEXITCODE
|
|
39
|
+
}
|
|
40
|
+
$env:NODE_PATH=$env_node_path
|
|
41
|
+
exit $ret
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
@SETLOCAL
|
|
2
|
+
@IF NOT DEFINED NODE_PATH (
|
|
3
|
+
@SET "NODE_PATH=C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\tsup@8.5.0_typescript@5.9.2\node_modules\tsup\dist\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\tsup@8.5.0_typescript@5.9.2\node_modules\tsup\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\tsup@8.5.0_typescript@5.9.2\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\node_modules"
|
|
4
|
+
) ELSE (
|
|
5
|
+
@SET "NODE_PATH=C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\tsup@8.5.0_typescript@5.9.2\node_modules\tsup\dist\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\tsup@8.5.0_typescript@5.9.2\node_modules\tsup\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\tsup@8.5.0_typescript@5.9.2\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\node_modules;%NODE_PATH%"
|
|
6
|
+
)
|
|
7
|
+
@IF EXIST "%~dp0\node.exe" (
|
|
8
|
+
"%~dp0\node.exe" "%~dp0\..\tsup\dist\cli-default.js" %*
|
|
9
|
+
) ELSE (
|
|
10
|
+
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
|
11
|
+
node "%~dp0\..\tsup\dist\cli-default.js" %*
|
|
12
|
+
)
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
#!/usr/bin/env pwsh
|
|
2
|
+
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
|
3
|
+
|
|
4
|
+
$exe=""
|
|
5
|
+
$pathsep=":"
|
|
6
|
+
$env_node_path=$env:NODE_PATH
|
|
7
|
+
$new_node_path="C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\tsup@8.5.0_typescript@5.9.2\node_modules\tsup\dist\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\tsup@8.5.0_typescript@5.9.2\node_modules\tsup\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\tsup@8.5.0_typescript@5.9.2\node_modules;C:\Users\huawei\Documents\github\dbcube\orm\node_modules\.pnpm\node_modules"
|
|
8
|
+
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
|
9
|
+
# Fix case when both the Windows and Linux builds of Node
|
|
10
|
+
# are installed in the same directory
|
|
11
|
+
$exe=".exe"
|
|
12
|
+
$pathsep=";"
|
|
13
|
+
} else {
|
|
14
|
+
$new_node_path="/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/tsup@8.5.0_typescript@5.9.2/node_modules/tsup/dist/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/tsup@8.5.0_typescript@5.9.2/node_modules/tsup/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/tsup@8.5.0_typescript@5.9.2/node_modules:/mnt/c/Users/huawei/Documents/github/dbcube/orm/node_modules/.pnpm/node_modules"
|
|
15
|
+
}
|
|
16
|
+
if ([string]::IsNullOrEmpty($env_node_path)) {
|
|
17
|
+
$env:NODE_PATH=$new_node_path
|
|
18
|
+
} else {
|
|
19
|
+
$env:NODE_PATH="$new_node_path$pathsep$env_node_path"
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
$ret=0
|
|
23
|
+
if (Test-Path "$basedir/node$exe") {
|
|
24
|
+
# Support pipeline input
|
|
25
|
+
if ($MyInvocation.ExpectingInput) {
|
|
26
|
+
$input | & "$basedir/node$exe" "$basedir/../tsup/dist/cli-default.js" $args
|
|
27
|
+
} else {
|
|
28
|
+
& "$basedir/node$exe" "$basedir/../tsup/dist/cli-default.js" $args
|
|
29
|
+
}
|
|
30
|
+
$ret=$LASTEXITCODE
|
|
31
|
+
} else {
|
|
32
|
+
# Support pipeline input
|
|
33
|
+
if ($MyInvocation.ExpectingInput) {
|
|
34
|
+
$input | & "node$exe" "$basedir/../tsup/dist/cli-default.js" $args
|
|
35
|
+
} else {
|
|
36
|
+
& "node$exe" "$basedir/../tsup/dist/cli-default.js" $args
|
|
37
|
+
}
|
|
38
|
+
$ret=$LASTEXITCODE
|
|
39
|
+
}
|
|
40
|
+
$env:NODE_PATH=$env_node_path
|
|
41
|
+
exit $ret
|