Erster Docker-Stand

This commit is contained in:
Ali
2026-02-20 16:06:40 +09:00
commit f31e2e8ed3
8818 changed files with 1605323 additions and 0 deletions

28
_node_modules/.bin/pglite-server.ps1 generated Normal file
View File

@@ -0,0 +1,28 @@
#!/usr/bin/env pwsh
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
$exe=""
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"
}
$ret=0
if (Test-Path "$basedir/node$exe") {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "$basedir/node$exe" "$basedir/../@electric-sql/pglite-socket/dist/scripts/server.js" $args
} else {
& "$basedir/node$exe" "$basedir/../@electric-sql/pglite-socket/dist/scripts/server.js" $args
}
$ret=$LASTEXITCODE
} else {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "node$exe" "$basedir/../@electric-sql/pglite-socket/dist/scripts/server.js" $args
} else {
& "node$exe" "$basedir/../@electric-sql/pglite-socket/dist/scripts/server.js" $args
}
$ret=$LASTEXITCODE
}
exit $ret