Skip to content

Commit

Permalink
Fix cross build configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Atry committed Apr 19, 2020
1 parent 071f687 commit 7336650
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,9 @@ fork in Global in compile := true

description in ThisBuild := "A collection of Scala language extension for specific domains."

lazy val core = crossProject.crossType(CrossType.Pure)
lazy val core = crossProject(JVMPlatform, JSPlatform).crossType(CrossType.Pure).build

lazy val coreJVM = core.jvm

lazy val coreJS = core.js

lazy val `comprehension-monad` = crossProject.crossType(CrossType.Pure)

lazy val `comprehension-monadJVM` = `comprehension-monad`.jvm

lazy val `comprehension-monadJS` = `comprehension-monad`.js
lazy val `comprehension-monad` = crossProject(JVMPlatform, JSPlatform).crossType(CrossType.Pure).build

startYear in ThisBuild := Some(2015)

Expand Down

0 comments on commit 7336650

Please sign in to comment.