Skip to content

Commit

Permalink
build: Fix peer dependency warning (#18213)
Browse files Browse the repository at this point in the history
PR #18198 added a dependency to the root that caused a peer dependency
warning. The dep is not needed at the root, so I added it to the peer
dep overrides.
  • Loading branch information
tylerbutler authored Nov 10, 2023
1 parent 592d66f commit 016654f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,8 @@
},
"peerDependencyComments": [
"@types/node is ignored because it is usually not needed by packages, and if it is, then the package will hit a compilation failure.",
"Peer dependencies on fluid-framework are never fulfilled since that's an in-repo dependency; we expect a customer using some packages to install it as a dependency."
"Peer dependencies on fluid-framework are never fulfilled since that's an in-repo dependency; we expect a customer using some packages to install it as a dependency.",
"markdown-magic is provided by another dependency so is ignored here."
],
"peerDependencyRules": {
"allowedVersions": {
Expand All @@ -369,7 +370,8 @@
},
"ignoreMissing": [
"@types/node",
"fluid-framework"
"fluid-framework",
"markdown-magic"
]
},
"patchedDependencies": {
Expand Down

0 comments on commit 016654f

Please sign in to comment.