-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
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
🚑 - Monorepo hotfix #1035
🚑 - Monorepo hotfix #1035
Conversation
ef6b44f
to
ad51628
Compare
"vscode-languageserver": "^8.0.1", | ||
"vscode-languageserver-protocol": "^3.17.1" | ||
} | ||
"name": "@rescript/language-server", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for some reason this was tab formatted (and in the server it's spaces - I think spaces is more standard)
@@ -70,7 +69,7 @@ export let findProjectRootOfFile = ( | |||
} else { | |||
const isDir = path.extname(source) === ""; | |||
return findProjectRootOfFileInDir( | |||
isDir ? path.join(source, "dummy.res") : source | |||
isDir && !allowDir ? path.join(source, "dummy.res") : source |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This caused the fix to not work :|
ad51628
to
5ae68f7
Compare
update correct version
5ae68f7
to
ced6afd
Compare
You need to run |
🙈 done! |
No description provided.