Skip to content

Commit

Permalink
Remove skunk module, use skunk-ext library instead
Browse files Browse the repository at this point in the history
  • Loading branch information
taig committed Oct 9, 2023
1 parent 7c637e0 commit 58dbc64
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 28 deletions.
13 changes: 1 addition & 12 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ val Version = new {
val Circe = "0.14.6"
val Munit = "0.7.29"
val Scala = "3.3.1"
val Skunk = "0.6.0"
}

inThisBuild(
Expand Down Expand Up @@ -32,7 +31,7 @@ lazy val root = project
},
name := "enumeration-ext"
)
.aggregate(core.jvm, core.js, circe.jvm, circe.js, skunk)
.aggregate(core.jvm, core.js, circe.jvm, circe.js)

lazy val core = crossProject(JVMPlatform, JSPlatform)
.crossType(CrossType.Pure)
Expand Down Expand Up @@ -63,13 +62,3 @@ lazy val circe = crossProject(JVMPlatform, JSPlatform)
name := "enumeration-ext-circe"
)
.dependsOn(core % "compile->compile;test->test")

lazy val skunk = project
.in(file("modules/skunk"))
.settings(
libraryDependencies ++=
"org.tpolecat" %% "skunk-core" % Version.Skunk ::
Nil,
name := "enumeration-ext-skunk"
)
.dependsOn(core.jvm)
16 changes: 0 additions & 16 deletions modules/skunk/src/main/scala/io/taig/enumeration/ext/skunk.scala

This file was deleted.

0 comments on commit 58dbc64

Please sign in to comment.