Skip to content

Commit 10b9334

Browse files
committed
fix(vertex): correct core client dependency constraint (#384)
1 parent 672e33e commit 10b9334

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/vertex-sdk/scripts/postprocess-dist-package-json.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const pkgJson = require('../dist/package.json');
44
for (const dep in pkgJson.dependencies) {
55
// ensure we point to NPM instead of a local directory
66
if (dep === '@anthropic-ai/sdk') {
7-
pkgJson.dependencies[dep] = '^0.14';
7+
pkgJson.dependencies[dep] = '>=0.14 <1';
88
}
99
}
1010

0 commit comments

Comments
 (0)