File tree 2 files changed +7
-5
lines changed
2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 1
1
lazy val root = project.in(file(" ." ))
2
- .aggregate(`scala-library-next`.jvm, `scala-library-next`.js )
2
+ .aggregate(scalaLibraryNextJVM, scalaLibraryNextJS )
3
3
.settings(
4
4
publish / skip := true ,
5
5
// With CrossType.Pure, the root project also picks up the sources in `src`
6
6
Compile / unmanagedSourceDirectories := Nil ,
7
7
Test / unmanagedSourceDirectories := Nil ,
8
8
)
9
9
10
- lazy val `scala-library-next` = crossProject(JVMPlatform , JSPlatform )
10
+ lazy val scalaLibraryNext = crossProject(JVMPlatform , JSPlatform )
11
11
.crossType(CrossType .Pure )
12
- .withoutSuffixFor(JVMPlatform )
13
12
.in(file(" ." ))
14
13
.jvmSettings(
15
14
libraryDependencies += " junit" % " junit" % " 4.13.1" % Test ,
@@ -28,3 +27,6 @@ lazy val `scala-library-next` = crossProject(JVMPlatform, JSPlatform)
28
27
.jsSettings(
29
28
Test / fork := false ,
30
29
)
30
+
31
+ lazy val scalaLibraryNextJVM = scalaLibraryNext.jvm
32
+ lazy val scalaLibraryNextJS = scalaLibraryNext.js
Original file line number Diff line number Diff line change @@ -25,9 +25,9 @@ isReleaseJob() {
25
25
}
26
26
27
27
if [[ " $SCALAJS_BUILD " == " true" ]]; then
28
- projectPrefix=" scala-library-nextJS /"
28
+ projectPrefix=" scalaLibraryNextJS /"
29
29
else
30
- projectPrefix=" scala-library-next /"
30
+ projectPrefix=" scalaLibraryNextJVM /"
31
31
fi
32
32
33
33
verPat=" [0-9]+\.[0-9]+\.[0-9]+(-[A-Za-z0-9-]+)?"
You can’t perform that action at this time.
0 commit comments