We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 718051d commit 1544925Copy full SHA for 1544925
build.sbt
@@ -276,9 +276,8 @@ lazy val js = project
276
.dependsOn(coreJS)
277
.enablePlugins(ScalaJSPlugin, ScalaJSBundlerPlugin)
278
279
-lazy val core = crossProject(JVMPlatform, JSPlatform)
280
- .crossType(CrossType.Pure)
281
- .in(file("metabrowse-core"))
+lazy val core = (file("metabrowse-core") / crossProject(JVMPlatform, JSPlatform)
+ .crossType(CrossType.Pure))
282
.jsSettings(
283
(publish / skip) := true,
284
scalaJSLinkerConfig ~= (_.withModuleKind(ModuleKind.CommonJSModule))
0 commit comments