We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is your feature request related to a problem? Please describe.
Running make deps shows the following warning
make deps
WARN There are cyclic workspace dependencies: /Users/trivikram/workspace/atproto/packages/bsky, /Users/trivikram/workspace/atproto/packages/pds
This happens as the two packages are dependent on each other:
bsky
pds
atproto/packages/bsky/package.json
Line 68 in c34426f
atproto/packages/pds/package.json
Line 75 in c34426f
Describe the solution you'd like
Investigate if the cyclic dependency can be removed.
true
.npmrc
The text was updated successfully, but these errors were encountered:
From looking at the code, it looks like devDependency of @atproto/bsky is not used in pds and can be removed.
@atproto/bsky
https://github.com/search?q=repo%3Abluesky-social%2Fatproto+%27%40atproto%2Fbsky%27+path%3Apackages%2Fpds&type=code
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Is your feature request related to a problem? Please describe.
Running
make deps
shows the following warningWARN There are cyclic workspace dependencies: /Users/trivikram/workspace/atproto/packages/bsky, /Users/trivikram/workspace/atproto/packages/pds
This happens as the two packages are dependent on each other:
bsky
haspds
as a devDependency:atproto/packages/bsky/package.json
Line 68 in c34426f
pds
hasbsky
as a devDependencyatproto/packages/pds/package.json
Line 75 in c34426f
Describe the solution you'd like
Investigate if the cyclic dependency can be removed.
true
in.npmrc
so that the warning is not shown.The text was updated successfully, but these errors were encountered: