Skip to content

Commit f8d9f98

Browse files
committed
Renamed source folder
1 parent 9c5dfa3 commit f8d9f98

File tree

69 files changed

+4
-3
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+4
-3
lines changed

build.sbt

+4-3
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,10 @@ inThisBuild(List(
2020
scalacOptions ++= Seq("-feature", "-deprecation"),
2121
))
2222

23-
lazy val `shared` = crossProject(JSPlatform, JVMPlatform)
23+
lazy val `url-dsl` = crossProject(JSPlatform, JVMPlatform)
2424
.crossType(CrossType.Pure)
25-
.in(file("shared"))
25+
.in(file("url-dsl"))
26+
.settings(name := "url-dsl")
2627
.settings(
2728
libraryDependencies ++= Seq(
2829
"org.scalatest" %%% "scalatest" % "3.2.9" % "test",
@@ -31,6 +32,6 @@ lazy val `shared` = crossProject(JSPlatform, JVMPlatform)
3132
)
3233

3334
lazy val root = project.in(file("."))
34-
.aggregate(shared.js, shared.jvm).settings(
35+
.aggregate(`url-dsl`.js, `url-dsl`.jvm).settings(
3536
publish / skip := true,
3637
)

0 commit comments

Comments
 (0)