We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72e3c82 commit 4865c13Copy full SHA for 4865c13
yarn.config.cjs
@@ -18,7 +18,10 @@ async function enforceCompilerMeta({ Yarn }) {
18
19
for (const workspace of Yarn.workspaces()) {
20
const { ident } = workspace.pkg;
21
- if (ident === "rescript" || ident.startsWith("@rescript/")) {
+ if (
22
+ workspace.cwd.startsWith("packages") &&
23
+ (ident === "rescript" || ident.startsWith("@rescript/"))
24
+ ) {
25
workspace.set("version", EXPECTED_VERSION);
26
workspace.set("homepage", "https://rescript-lang.org");
27
workspace.set("bugs", "https://github.com/rescript-lang/rescript/issues");
0 commit comments