Skip to content
This repository has been archived by the owner on Jul 17, 2024. It is now read-only.

Commit

Permalink
Update shims.
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj committed Dec 6, 2023
1 parent 4876c89 commit 668332c
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ expression: "std::fs::read_to_string(sandbox.path().join(\".proto/shims\").join(
---
#!/usr/bin/env bash
set -e
[ -n "$PROTO_DEBUG" ] && set -x

if [ -n "$PROTO_DEBUG" ]; then
set -x
echo "Running with npm-test.sh shim"
fi

exec proto run npm-test --alt "npx" -- "$@"


Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ expression: "std::fs::read_to_string(sandbox.path().join(\".proto/shims\").join(
---
#!/usr/bin/env bash
set -e
[ -n "$PROTO_DEBUG" ] && set -x

if [ -n "$PROTO_DEBUG" ]; then
set -x
echo "Running with npm-test.sh shim"
fi

exec proto run npm-test --alt "node-gyp" -- "$@"


Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ expression: "std::fs::read_to_string(sandbox.path().join(\".proto/shims\").join(
---
#!/usr/bin/env bash
set -e
[ -n "$PROTO_DEBUG" ] && set -x

if [ -n "$PROTO_DEBUG" ]; then
set -x
echo "Running with npm-test.sh shim"
fi

exec proto run npm-test -- "$@"


Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ expression: "std::fs::read_to_string(sandbox.path().join(\".proto/shims\").join(
---
#!/usr/bin/env bash
set -e
[ -n "$PROTO_DEBUG" ] && set -x

if [ -n "$PROTO_DEBUG" ]; then
set -x
echo "Running with pnpm-test.sh shim"
fi

exec proto run pnpm-test -- dlx "$@"


Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ expression: "std::fs::read_to_string(sandbox.path().join(\".proto/shims\").join(
---
#!/usr/bin/env bash
set -e
[ -n "$PROTO_DEBUG" ] && set -x

if [ -n "$PROTO_DEBUG" ]; then
set -x
echo "Running with pnpm-test.sh shim"
fi

exec proto run pnpm-test -- "$@"


Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ expression: "std::fs::read_to_string(sandbox.path().join(\".proto/shims\").join(
---
#!/usr/bin/env bash
set -e
[ -n "$PROTO_DEBUG" ] && set -x

if [ -n "$PROTO_DEBUG" ]; then
set -x
echo "Running with yarn-test.sh shim"
fi

exec proto run yarn-test --alt "yarnpkg" -- "$@"


Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ expression: "std::fs::read_to_string(sandbox.path().join(\".proto/shims\").join(
---
#!/usr/bin/env bash
set -e
[ -n "$PROTO_DEBUG" ] && set -x

if [ -n "$PROTO_DEBUG" ]; then
set -x
echo "Running with yarn-test.sh shim"
fi

exec proto run yarn-test -- "$@"


Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ expression: "std::fs::read_to_string(sandbox.path().join(\".proto/shims\").join(
---
#!/usr/bin/env bash
set -e
[ -n "$PROTO_DEBUG" ] && set -x

if [ -n "$PROTO_DEBUG" ]; then
set -x
echo "Running with node-test.sh shim"
fi

exec proto run node-test -- "$@"


0 comments on commit 668332c

Please sign in to comment.