fix(examples): replace local tarball path with latest in use-agent example#322
Conversation
…ample The @inngest/agent-kit dependency in examples/use-agent/package.json was accidentally left pointing to an absolute local file path on the original developer's machine (/Users/tedwerbel/...). This prevents anyone else from installing dependencies in this example. Fix by using "latest" to match the convention in other examples (quick-start, demo, etc.), and update the pnpm-lock.yaml specifier to match. Fixes inngest#316
|
|
No changeset is included because this PR only touches |
Problem
The @inngest/agent-kit dependency in examples/use-agent/package.json was accidentally committed pointing to an absolute path on the original developer local machine:
This breaks npm/pnpm install for anyone cloning the repo.
Fix
Replace the local file path with latest, matching the convention in other examples (quick-start, demo, etc.).
Also update the pnpm-lock.yaml specifier which had the same absolute path.
Closes #316