Skip to content

Commit

Permalink
fix: doc types
Browse files Browse the repository at this point in the history
  • Loading branch information
Bekacru committed Jul 19, 2024
1 parent f768864 commit d28eb60
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 20 deletions.
28 changes: 28 additions & 0 deletions doc/.gitignore
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
36 changes: 18 additions & 18 deletions package.json
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"
}
}
6 changes: 4 additions & 2 deletions packages/better-fetch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@
"lint:fix": "biome check . --apply",
"typecheck": "tsc --noEmit"
},
"files": ["dist"],
"files": [
"dist"
],
"type": "module"
}
}

0 comments on commit d28eb60

Please sign in to comment.