File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,9 +21,9 @@ for arg in "$@"; do
2121 esac
2222done
2323
24- if ! command -v " bun " & > /dev/null; then
25- _url=" https://bun.sh/docs /installation"
26- echo " \033[31merror:\033[0m Bun is required for contributing\n\n $_url \n"
24+ if ! command -v " pnpm " & > /dev/null; then
25+ _url=" https://pnpm.io /installation"
26+ echo " \033[31merror:\033[0m pnpm is required for contributing\n\n $_url \n"
2727 exit 1
2828fi
2929
Original file line number Diff line number Diff line change 1- Unit tests use ` bun :test` so [ install Bun ] ( https://bun.sh/docs/installation ) before contributing!
1+ Unit tests use ` node :test` so [ install a recent version of Node ] ( https://nodejs.org/en/download ) before contributing!
22
3- The ` ci_verify.sh ` script will perform all checks required by a PR and uses ` bun test` and the ` typecheck ` and ` fmtcheck ` package.json scripts.
3+ The ` ci_verify.sh ` script will perform all checks required by a PR and uses ` node -- test` and the ` typecheck ` and ` fmtcheck ` package.json scripts.
44
55The script has flags to create symlinks to itself in ` .git/hooks ` :
66
@@ -9,7 +9,7 @@ The script has flags to create symlinks to itself in `.git/hooks`:
99./ci_verify.sh --on-git-push
1010```
1111
12- Type checking with ` bun typecheck` will run ` tsc ` .
12+ Type checking with ` node typecheck` will run ` tsc ` .
1313
1414Formatting is provided by ` prettier ` .
1515
You can’t perform that action at this time.
0 commit comments