Skip to content

Commit

Permalink
chore(vertex): bump dependency on @anthropic-ai/sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertCraigie committed Jan 22, 2025
1 parent 8745ca2 commit a1c7fcd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/vertex-sdk/scripts/postprocess-dist-package-json.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ const pkgJson = require('../dist/package.json');
for (const dep in pkgJson.dependencies) {
// ensure we point to NPM instead of a local directory
if (dep === '@anthropic-ai/sdk') {
pkgJson.dependencies[dep] = '>=0.14 <1';
pkgJson.dependencies[dep] = '>=0.35 <1';
}
}

fs.writeFileSync('dist/package.json', JSON.stringify(pkgJson, null, 2))
fs.writeFileSync('dist/package.json', JSON.stringify(pkgJson, null, 2));

0 comments on commit a1c7fcd

Please sign in to comment.