Skip to content

Commit

Permalink
Fix provider package releases. (#1367)
Browse files Browse the repository at this point in the history
  • Loading branch information
lgrammel authored Apr 16, 2024
1 parent 24c3b3e commit 2bff460
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
8 changes: 8 additions & 0 deletions .changeset/breezy-fans-obey.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
'@ai-sdk/anthropic': patch
'@ai-sdk/mistral': patch
'@ai-sdk/google': patch
'@ai-sdk/openai': patch
---

Fix build for release.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"type-check": "turbo type-check",
"prettier-fix": "prettier --write \"**/*.{js,ts,tsx,md,mdx}\"",
"publint": "turbo publint",
"test": "turbo test --filter=ai...",
"ci:release": "turbo clean && turbo build --filter=ai... && changeset publish",
"test": "turbo test",
"ci:release": "turbo clean && turbo build && changeset publish",
"ci:version": "changeset version && node .github/scripts/cleanup-examples-changesets.mjs && pnpm install --no-frozen-lockfile",
"check-docs-links": "node ./check-docs-links.js"
},
Expand Down
1 change: 0 additions & 1 deletion packages/anthropic/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ export default defineConfig([
{
entry: ['src/index.ts'],
format: ['cjs', 'esm'],
external: ['react', 'svelte', 'vue'],
dts: true,
sourcemap: true,
},
Expand Down
1 change: 0 additions & 1 deletion packages/google/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ export default defineConfig([
{
entry: ['src/index.ts'],
format: ['cjs', 'esm'],
external: ['react', 'svelte', 'vue'],
dts: true,
sourcemap: true,
},
Expand Down
1 change: 0 additions & 1 deletion packages/mistral/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ export default defineConfig([
{
entry: ['src/index.ts'],
format: ['cjs', 'esm'],
external: ['react', 'svelte', 'vue'],
dts: true,
sourcemap: true,
},
Expand Down
1 change: 0 additions & 1 deletion packages/openai/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ export default defineConfig([
{
entry: ['src/index.ts'],
format: ['cjs', 'esm'],
external: ['react', 'svelte', 'vue'],
dts: true,
sourcemap: true,
},
Expand Down

0 comments on commit 2bff460

Please sign in to comment.