-
-
Notifications
You must be signed in to change notification settings - Fork 174
Cross compile ujson.circe to Scala JS #681
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
Conversation
db1f873 to
7ca001b
Compare
build.mill
Outdated
| val circeVersion = "0.14.14" | ||
| def mvnDeps = Seq(mvn"io.circe::circe-parser:$circeVersion") |
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.
Can you extract these in a trait as we do in CommonCoreModule and then extend it in jvm, js and native?
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.
Sure thing, done
build.mill
Outdated
| override def moduleDeps = this.moduleDeps ++ Seq(ujson.native()) | ||
| } | ||
|
|
||
| trait CommonCirceModule { |
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 should extend CommonPublishModule
|
I noticed that we were not using the correct platformed dependency and we didn't notice because the test was running only on the jvm target. |
No description provided.