Skip to content

Commit d57c2c6

Browse files
committed
changeset and de-turbo
1 parent e0a6658 commit d57c2c6

File tree

2 files changed

+13
-29
lines changed

2 files changed

+13
-29
lines changed

.changeset/soft-ladybugs-repeat.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@ai-sdk/amazon-bedrock': patch
3+
---
4+
5+
feat (provider/amazon-bedrock): remove dependence on AWS SDK Bedrock library

turbo.json

+8-29
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
11
{
22
"$schema": "https://turbo.build/schema.json",
3-
"globalEnv": [
4-
"CI",
5-
"PORT"
6-
],
3+
"globalEnv": ["CI", "PORT"],
74
"tasks": {
85
"build": {
9-
"dependsOn": [
10-
"^build"
11-
],
6+
"dependsOn": ["^build"],
127
"env": [
138
"ANTHROPIC_API_KEY",
149
"ASSISTANT_ID",
@@ -56,43 +51,27 @@
5651
]
5752
},
5853
"lint": {
59-
"dependsOn": [
60-
"^lint"
61-
]
54+
"dependsOn": ["^lint"]
6255
},
6356
"type-check": {
64-
"dependsOn": [
65-
"^build",
66-
"build"
67-
]
57+
"dependsOn": ["^build", "build"]
6858
},
6959
"test": {
70-
"dependsOn": [
71-
"^build",
72-
"build"
73-
]
60+
"dependsOn": ["^build", "build"]
7461
},
7562
"publint": {
76-
"dependsOn": [
77-
"^build",
78-
"build"
79-
]
63+
"dependsOn": ["^build", "build"]
8064
},
8165
"clean": {
82-
"dependsOn": [
83-
"^clean"
84-
]
66+
"dependsOn": ["^clean"]
8567
},
8668
"dev": {
8769
"cache": false,
8870
"persistent": true
8971
},
9072
"prettier-check": {},
9173
"integration-test": {
92-
"dependsOn": [
93-
"^build",
94-
"build"
95-
]
74+
"dependsOn": ["^build", "build"]
9675
}
9776
}
9877
}

0 commit comments

Comments
 (0)