Skip to content

Commit

Permalink
fix: ci build
Browse files Browse the repository at this point in the history
  • Loading branch information
coratgerl committed Sep 6, 2024
1 parent 83e8cd5 commit a042238
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ jobs:
registry-url: 'https://registry.npmjs.org'

- run: bun install
- run: bun run build
- run: bun ci
- run: bun --filter ./packages/${{inputs.package}} build

- name: 'Get Previous tag'
id: previousTag
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@
"private": true,
"workspaces": ["packages/*"],
"scripts": {
"build:wabe": "bun --filter './packages/wabe' build",
"ci": "bun build:wabe && bun --filter './packages/*' ci",
"build:wabe":"bun --filter './packages/wabe' build",
"build":"bun build:wabe && bun --filter './packages/*' build",
"ci": "bun --filter './packages/*' ci",
"format": "bun --filter './packages/*' format && biome format --write ./*.json",
"lint": "bun --filter './packages/*' lint",
"squash": "base_branch=${1:-main} && git fetch origin $base_branch && branch=$(git branch --show-current) && git checkout $branch && git reset $(git merge-base origin/$base_branch $branch) && git add -A"
Expand Down
6 changes: 3 additions & 3 deletions packages/wabe-pluralize/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
"strict": true,
"skipLibCheck": true,
"moduleResolution": "node",
"outDir": "lib",
"outDir": "dist",
"declaration": true
},
"exclude": [
"node_modules",
"lib",
"dist",
"**/*.test.ts"
],
]
}
2 changes: 1 addition & 1 deletion packages/wabe-resend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
},
"devDependencies": {
"@types/bun": "1.1.8",
"@types/react": "^18.3.5",
"@types/react": "18.3.5",
"wabe": "workspace:*"
}
}
2 changes: 1 addition & 1 deletion packages/wabe-resend/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Resend } from 'resend'
import type { EMailAdapter, EMailSendOptions } from 'wabe'
import type { EmailAdapter, EmailSendOptions } from 'wabe'

export class ResendAdapter implements EmailAdapter {
private resend: Resend
Expand Down

0 comments on commit a042238

Please sign in to comment.