-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
50 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# deps | ||
/node_modules | ||
|
||
# generated content | ||
.map.ts | ||
.contentlayer | ||
.content-collections | ||
|
||
# test & build | ||
/coverage | ||
/.next/ | ||
/out/ | ||
/build | ||
*.tsbuildinfo | ||
|
||
# misc | ||
.DS_Store | ||
*.pem | ||
/.pnp | ||
.pnp.js | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# others | ||
.env*.local | ||
.vercel | ||
next-env.d.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
{ | ||
"name": "@better-fetch/root", | ||
"private": true, | ||
"scripts": { | ||
"build": "pnpm -F fetch build", | ||
"test": "pnpm -F fetch test", | ||
"bump": "pnpm -F fetch bump", | ||
"typecheck": "pnpm typecheck", | ||
"lint": "biome check .", | ||
"format": "biome check . --apply" | ||
}, | ||
"dependencies": { | ||
"@biomejs/biome": "1.7.3", | ||
"simple-git-hooks": "^2.11.1" | ||
}, | ||
"simple-git-hooks": { | ||
"pre-push": "pnpm typecheck && pnpm format && pnpm test" | ||
} | ||
} | ||
"name": "@better-fetch/root", | ||
"private": true, | ||
"scripts": { | ||
"build": "pnpm -F fetch build", | ||
"test": "pnpm -F fetch test", | ||
"bump": "pnpm -F fetch bump", | ||
"typecheck": "pnpm -r typecheck", | ||
"lint": "biome check .", | ||
"format": "biome check . --apply" | ||
}, | ||
"dependencies": { | ||
"@biomejs/biome": "1.7.3", | ||
"simple-git-hooks": "^2.11.1" | ||
}, | ||
"simple-git-hooks": { | ||
"pre-push": "pnpm typecheck && pnpm format && pnpm test" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters