Skip to content

Commit 3883d6d

Browse files
fix: move scripts top-level to comply with pattern
1 parent 4675cc8 commit 3883d6d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/bin/sh -e
22

33
echo "-> Formatting check..."
4-
pnpm prettier --check .
4+
(cd site && pnpm format:check)
55

66
echo "-> Linting..."
7-
pnpm eslint .
7+
(cd site && pnpm lint)
88

99
echo "-> Type checking..."
10-
pnpm tsc --noEmit
10+
(cd site && pnpm typecheck)
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh -e
22

33
echo "-> Formatting..."
4-
pnpm prettier --write .
4+
(cd site && pnpm format)
55

66
echo "-> Linting (with fixes)..."
7-
pnpm eslint --fix .
7+
(cd site && pnpm lint:fix)

0 commit comments

Comments
 (0)