Skip to content

Commit 5f01bd9

Browse files
Joshua FishmanJoshua Fishman
authored andcommitted
hotfix for concurrently
1 parent 3f029b7 commit 5f01bd9

File tree

4 files changed

+73
-2731
lines changed

4 files changed

+73
-2731
lines changed

.husky/pre-commit

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
. "$(dirname "$0")/_/husky.sh"
2+
## . "$(dirname "$0")/_/husky.sh"
33

44
# Check if the hook should be skipped
55
if [ "$SKIP_HOOK" = "true" ]; then
@@ -12,8 +12,8 @@ mkdocs serve --quiet &
1212
# Capture the PID of the MkDocs server
1313
MKDOCS_PID=$!
1414

15-
# Run the accessibility test script
16-
npm run pa11y-test
15+
# Uncomment the following line to run pa11y-test before commit
16+
# npm run pa11y-test
1717

1818
# Stop MkDocs server
1919
kill $MKDOCS_PID

entrypoint.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
#!/bin/sh
22

3-
npm run dev
3+
npm run dev &
4+
mkdocs serve --dev-addr=0.0.0.0:8000

0 commit comments

Comments
 (0)