Skip to content

Commit

Permalink
Merge pull request #66 from jisantuc/feature/js/remove-cats-effect-dep
Browse files Browse the repository at this point in the history
Remove cats-effect dependency and import
  • Loading branch information
moradology authored Oct 2, 2018
2 parents c0acb97 + b01f971 commit 06fa991
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
7 changes: 3 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import com.scalapenos.sbt.prompt.SbtPrompt.autoImport._

promptTheme := com.scalapenos.sbt.prompt.PromptThemes.ScalapenosTheme

val mamlVersion = "0.0.15" + scala.util.Properties.envOrElse("MAML_VERSION_SUFFIX", "")
val mamlVersion = "0.0.17" + scala.util.Properties.envOrElse("MAML_VERSION_SUFFIX", "")

/** Project configurations */
lazy val root = project.in(file("."))
Expand All @@ -12,8 +12,8 @@ lazy val root = project.in(file("."))
licenses += ("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0.txt"))
).enablePlugins(ScalaJSPlugin)

val circeVer = "0.10.0-M1"
val gtVer = "2.0.0-RC2"
val circeVer = "0.10.0"
val gtVer = "2.0.0"

lazy val maml = crossProject.in(file("."))
.settings(publishSettings:_*)
Expand All @@ -23,7 +23,6 @@ lazy val maml = crossProject.in(file("."))
"org.scalacheck" %% "scalacheck" % "1.13.4" % "test",
"org.scalatest" %% "scalatest" % "3.0.1" % "test",
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.0",
"org.typelevel" %% "cats-effect" % "0.10.1",
"io.circe" %% "circe-core" % circeVer,
"io.circe" %% "circe-generic" % circeVer,
"io.circe" %% "circe-generic-extras" % circeVer,
Expand Down
1 change: 0 additions & 1 deletion shared/src/main/scala/ast/Source.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import cats.data.{NonEmptyList => NEL, _}
import Validated._
import io.circe.Json
import io.circe.generic.JsonCodec
import cats.effect.IO

import java.lang.IllegalArgumentException

Expand Down

0 comments on commit 06fa991

Please sign in to comment.