Skip to content

Commit d44ad5c

Browse files
committed
tweak pre-push
1 parent 6db5d75 commit d44ad5c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.husky/pre-push

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/sh
22
. "$(dirname "$0")/_/husky.sh"
33

4-
CI=true yarn test --colors --silent
4+
yarn concurrently --names 'LINT,TEST' -c 'green,blue' 'yarn lint' 'CI=true yarn test --colors --silent'

playgrounds/next-playground/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
".": "yarn run -T turbo run --filter=@playground/next-playground...",
77
"concurrently": "yarn run -T concurrently",
88
"dev": "yarn partytown && yarn concurrently 'yarn run -T watch --filter=next-playground' 'sleep 10 && next dev'",
9-
"build": "yarn partytown && next build",
9+
"build-playground": "yarn partytown && next build",
1010
"partytown": "partytown copylib public/~partytown",
1111
"start": "next start",
12-
"lint": "next lint"
12+
"lint-playground": "next lint"
1313
},
1414
"dependencies": {
1515
"@builder.io/partytown": "^0.7.4",

playgrounds/with-vite/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
".": "yarn run -T turbo run --filter=@playground/with-vite",
66
"concurrently": "yarn run -T concurrently",
77
"dev": "yarn concurrently 'yarn run -T watch --filter=with-vite' 'sleep 10 && vite'",
8-
"build": "tsc && vite build",
8+
"build-playground": "tsc && vite build",
99
"preview": "vite preview"
1010
},
1111
"dependencies": {

0 commit comments

Comments
 (0)