performance comparisons of edge compute platforms
edge performance benchmark cloud-provider compute function edge-function compute-at-edge comparison
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

corepack aliass

+11 -2
+1 -1
i.sh
··· 1 1 #!/bin/bash 2 2 # This works around the lack of CI features in tangled's pipelines 3 3 # Convenience alias in repo root dir 4 - set -xo pipefail # no e - https://mywiki.wooledge.org/BashFAQ/105 and no u because we CI baybeee 4 + set -o pipefail # no e - https://mywiki.wooledge.org/BashFAQ/105 and no xu because we CI baybeee 5 5 bash ./scripts/pipeline/init.sh "$*"
+8
scripts/pipeline/corepack.sh
··· 1 + #!/bin/bash 2 + 3 + alias yarn="corepack yarn" 4 + alias yarnpkg="corepack yarnpkg" 5 + alias pnpm="corepack pnpm" 6 + alias pnpx="corepack pnpx" 7 + alias npm="corepack npm" 8 + alias npx="corepack npx"
+2 -1
scripts/pipeline/init.sh
··· 1 1 #!/bin/bash 2 - set -xo pipefail # no e - https://mywiki.wooledge.org/BashFAQ/105 and no u because we CI baybeee 2 + set -o pipefail # no e - https://mywiki.wooledge.org/BashFAQ/105 and no xu because we CI baybeee 3 3 WORKDIR="/tangled/workspace" 4 4 CMDPREFIX="init.sh:" 5 5 6 6 source "$WORKDIR/scripts/pipeline/util.sh" 7 + source "$WORKDIR/scripts/pipeline/corepack.sh" 7 8 8 9 if [[ $SET_CWD ]]; then 9 10 echo "init.sh: set cwd to $SET_CWD"