Skip to content

Commit 4fee551

Browse files
committed
chore: print node version before bun revision in scripts
1 parent 70d0259 commit 4fee551

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,12 @@
5757
"check": "tsc --noEmit",
5858
"build": "tsc --noEmit && zshy",
5959
"attw": "attw --pack . --profile esm-only",
60-
"test": "bun --revision && vitest run src test/declarations --coverage --bail 1",
61-
"test:ci": "bun --revision && vitest run src test/declarations test/packages --coverage --bail 1",
62-
"test:update": "bun --revision && vitest run src test/declarations test/packages --update",
60+
"test": "node -v && bun --revision && vitest run src test/declarations --coverage --bail 1",
61+
"test:ci": "node -v && bun --revision && vitest run src test/declarations test/packages --coverage --bail 1",
62+
"test:update": "node -v && bun --revision && vitest run src test/declarations test/packages --update",
6363
"lint": "prettier --check .",
6464
"format": "prettier --write .",
65-
"pre-push": "bun --revision && bun i && bun run lint && bun run build && bun run test:ci && bun run attw",
65+
"pre-push": "node -v && bun --revision && bun i && bun run lint && bun run build && bun run test:ci && bun run attw",
6666
"release": "np --no-cleanup"
6767
},
6868
"dependencies": {

0 commit comments

Comments
 (0)