update todo, and other things

This commit is contained in:
2026-05-07 18:46:20 +02:00
parent 72bc839bf1
commit 40acd753ac
5461 changed files with 1566726 additions and 4 deletions
Generated Vendored Executable
+21
View File
@@ -0,0 +1,21 @@
#!/bin/sh
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*|*MINGW*|*MSYS*)
if command -v cygpath > /dev/null 2>&1; then
basedir=`cygpath -w "$basedir"`
fi
;;
esac
if [ -z "$NODE_PATH" ]; then
export NODE_PATH="/home/ffus/Projects/go-socket/client/node_modules/.pnpm/rolldown@1.0.0-rc.17/node_modules/rolldown/node_modules:/home/ffus/Projects/go-socket/client/node_modules/.pnpm/rolldown@1.0.0-rc.17/node_modules:/home/ffus/Projects/go-socket/client/node_modules/.pnpm/node_modules"
else
export NODE_PATH="/home/ffus/Projects/go-socket/client/node_modules/.pnpm/rolldown@1.0.0-rc.17/node_modules/rolldown/node_modules:/home/ffus/Projects/go-socket/client/node_modules/.pnpm/rolldown@1.0.0-rc.17/node_modules:/home/ffus/Projects/go-socket/client/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../.pnpm/rolldown@1.0.0-rc.17/node_modules/rolldown/bin/cli.mjs" "$@"
else
exec node "$basedir/../.pnpm/rolldown@1.0.0-rc.17/node_modules/rolldown/bin/cli.mjs" "$@"
fi