Skip to content

Commit 3f0c740

Browse files
committed
.
1 parent 9e1febb commit 3f0c740

File tree

3 files changed

+3
-12
lines changed

3 files changed

+3
-12
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,6 @@ jobs:
5858
- name: compile
5959
run: ./mill __.compile
6060

61-
# Sometimes the tests will timeout if they have to fetch all the transitive scala-js deps the first time... let's have coursier put them in the cache
62-
- name: cache test deps
63-
run: |
64-
cs fetch com.raquo:laminar_sjs1_3:17.2.1
65-
cs fetch org.scala-js:-dom_sjs1_3:2.8.1
66-
cs install scala-cli
67-
cs fetch org.scala-lang:scala3-compiler_3:3.3.5
68-
scala-cli --version
69-
7061
- name: Test
7162
run: ./mill __.test
7263

build.mill

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ object V{
2323
val scalaVersion = "3.7.2"
2424
val laminar = "17.1.0"
2525
val scalaJsDom = "2.8.1"
26-
val scalaJs = "1.19.1"
26+
val scalaJs = "1.19.0"
2727
}
2828

2929
trait FormatFix extends ScalafmtModule with ScalafixModule with ScalaModule

sjsls/package.mill

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ object `package` extends FormatFixPublish:
5151
def scalaJSVersion = V.scalaJs
5252
def testFramework = "munit.Framework"
5353
def mvnDeps = super.mvnDeps() ++ Seq(
54-
mvn"org.scala-js::scalajs-dom:${V.scalaJsDom}",
55-
mvn"com.raquo::laminar_sjs1_3:${V.laminar}"
54+
mvn"org.scala-js::scalajs-dom::${V.scalaJsDom}",
55+
mvn"com.raquo::laminar::${V.laminar}"
5656
)
5757
end cacheJsLibs
5858

0 commit comments

Comments
 (0)