Skip to content

Commit 0dceb2c

Browse files
author
Adam McKee
committed
update contributing details
1 parent 51a536d commit 0dceb2c

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

ci_verify.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ for arg in "$@"; do
2121
esac
2222
done
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
2828
fi
2929

docs/CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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

55
The 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

1414
Formatting is provided by `prettier`.
1515

0 commit comments

Comments
 (0)