Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
productdevbook committed Nov 7, 2023
1 parent 2454e01 commit aeb6bf4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,11 @@
"dev": "tsup --watch",
"prepublishOnly": "pnpm run build",
"release": "pnpm build && bumpp --commit --push --tag && pnpm publish",
"lint": "eslint . --cache",
"lint": "eslint . --cache && pnpm typecheck",
"lint:fix": "eslint . --cache --fix",
"test": "vitest",
"test:watch": "vitest --watch",
"typecheck": "tsc --noEmit",
"coverage": "vitest run --coverage"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type { Options } from 'tsup'
import pkg from './package.json'

const external = [
...Object.keys(pkg.dependencies || {}),
...Object.keys(pkg.peerDependencies || {}),
]

export default <Options>{
Expand Down

0 comments on commit aeb6bf4

Please sign in to comment.