canvas/node_modules/.bin/tsup-node
2026-03-11 18:42:08 -07:00

21 lines
1.8 KiB
Bash
Executable file

#!/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/amir/code/blinksgg/gg-antifragile/node_modules/.pnpm/tsup@8.5.1_@swc+core@1.15.7_@swc+helpers@0.5.17__jiti@2.6.1_postcss@8.5.6_tsx@4.21.0_typescript@5.9.3_yaml@2.8.2/node_modules/tsup/dist/node_modules:/home/amir/code/blinksgg/gg-antifragile/node_modules/.pnpm/tsup@8.5.1_@swc+core@1.15.7_@swc+helpers@0.5.17__jiti@2.6.1_postcss@8.5.6_tsx@4.21.0_typescript@5.9.3_yaml@2.8.2/node_modules/tsup/node_modules:/home/amir/code/blinksgg/gg-antifragile/node_modules/.pnpm/tsup@8.5.1_@swc+core@1.15.7_@swc+helpers@0.5.17__jiti@2.6.1_postcss@8.5.6_tsx@4.21.0_typescript@5.9.3_yaml@2.8.2/node_modules:/home/amir/code/blinksgg/gg-antifragile/node_modules/.pnpm/node_modules"
else
export NODE_PATH="/home/amir/code/blinksgg/gg-antifragile/node_modules/.pnpm/tsup@8.5.1_@swc+core@1.15.7_@swc+helpers@0.5.17__jiti@2.6.1_postcss@8.5.6_tsx@4.21.0_typescript@5.9.3_yaml@2.8.2/node_modules/tsup/dist/node_modules:/home/amir/code/blinksgg/gg-antifragile/node_modules/.pnpm/tsup@8.5.1_@swc+core@1.15.7_@swc+helpers@0.5.17__jiti@2.6.1_postcss@8.5.6_tsx@4.21.0_typescript@5.9.3_yaml@2.8.2/node_modules/tsup/node_modules:/home/amir/code/blinksgg/gg-antifragile/node_modules/.pnpm/tsup@8.5.1_@swc+core@1.15.7_@swc+helpers@0.5.17__jiti@2.6.1_postcss@8.5.6_tsx@4.21.0_typescript@5.9.3_yaml@2.8.2/node_modules:/home/amir/code/blinksgg/gg-antifragile/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../tsup/dist/cli-node.js" "$@"
else
exec node "$basedir/../tsup/dist/cli-node.js" "$@"
fi