Skip to content

Commit 4e96ccc

Browse files
chore: update deps
1 parent ae18714 commit 4e96ccc

File tree

6 files changed

+262
-327
lines changed

6 files changed

+262
-327
lines changed

.husky/_/pre-commit

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/sh
2+
3+
if [ "$SKIP_SIMPLE_GIT_HOOKS" = "1" ]; then
4+
echo "[INFO] SKIP_SIMPLE_GIT_HOOKS is set to 1, skipping hook."
5+
exit 0
6+
fi
7+
8+
if [ -f "$SIMPLE_GIT_HOOKS_RC" ]; then
9+
. "$SIMPLE_GIT_HOOKS_RC"
10+
fi
11+
12+
npx lint-staged

packages/genkit/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"extends": "@fisch0920/config/tsconfig-node",
3-
"include": ["src"],
3+
"include": ["src", "*.config.ts"],
44
"exclude": ["node_modules", "dist"]
55
}

packages/openapi-to-ts/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"extends": "@fisch0920/config/tsconfig-node",
3-
"include": ["src", "bin", "fixtures/**/*.ts"],
3+
"include": ["src", "bin", "fixtures/**/*.ts", "*.config.ts"],
44
"exclude": [
55
"node_modules",
66
"dist",

0 commit comments

Comments
 (0)