We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4cfdb4 commit 061856aCopy full SHA for 061856a
1 file changed
.yarnrc.yml
@@ -1 +1,15 @@
1
nodeLinker: node-modules
2
+
3
+# Patch upstream JupyterLab packages for peer validation. Does NOT install
4
+# anything — react/typescript are already in our package.json.
5
+# - testutils: declare typescript peer so Yarn sees it as satisfied by our root.
6
+# - settingregistry: mark react peer as optional so Yarn doesn't require
7
+# services to "provide" it (we have react at root; this only relaxes the check).
8
+packageExtensions:
9
+ "@jupyterlab/settingregistry@*":
10
+ peerDependenciesMeta:
11
+ react:
12
+ optional: true
13
+ "@jupyterlab/testutils@*":
14
+ peerDependencies:
15
+ typescript: "*"
0 commit comments