bun icon indicating copy to clipboard operation
bun copied to clipboard

bun link does not work with catalog

Open shyim opened this issue 5 months ago • 3 comments
trafficstars

What version of Bun is running?

1.2.16-canary.22+022a567af

What platform is your computer?

Darwin 24.5.0 arm64 unknown

What steps can reproduce the bug?

root package.json

{
        "workspaces": {
                "packages": ["api"],
                "catalog": {
                        "typescript": "5.8.3"
                }
        }
}

root api/package.json

{
"devDependencies": {
                "typescript": "catalog:"
        }
}

Run bun install in root works as expected. Try to run bun link <some-page>, it fails with

error: typescript@catalog: failed to resolve

What is the expected behavior?

bun link works together with catalog

What do you see instead?

error: typescript@catalog: failed to resolve

Additional information

No response

shyim avatar May 29 '25 09:05 shyim