Skip to content

Commit 5f9729e

Browse files
committed
Updated dependencies and made URL class private to stop bothering people outside the lib
1 parent 761f427 commit 5f9729e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/scala.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111

1212
steps:
1313
- uses: actions/checkout@v2
14-
- name: Set up NPM 14
15-
uses: actions/setup-node@v2
14+
- name: Set up NPM 16
15+
uses: actions/setup-node@v3
1616
with:
17-
node-version: "14"
17+
node-version: "16"
1818
- uses: actions/checkout@v2
1919
- name: Set up JDK 11
2020
uses: actions/setup-java@v2

build.sbt

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ lazy val `url-dsl` = crossProject(JSPlatform, JVMPlatform)
4040
.settings(
4141
libraryDependencies ++= Seq(
4242
"app.tulz" %%% "tuplez-full-light" % "0.3.8",
43-
"org.scalatest" %%% "scalatest" % "3.2.9" % Test,
44-
"org.scalacheck" %%% "scalacheck" % "1.15.4" % Test,
43+
"org.scalatest" %%% "scalatest" % "3.2.14" % Test,
44+
"org.scalacheck" %%% "scalacheck" % "1.17.0" % Test,
4545
"org.scalameta" %%% "munit" % "0.7.29" % Test
4646
)
4747
)

url-dsl/.js/src/main/scala/urldsl/url/URL.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import scala.scalajs.js.annotation.JSGlobal
66
/** This is stolen from org.scalajs.dom so that we don't need to import the whole library. */
77
@js.native
88
@JSGlobal
9-
final class URL(url: String) extends js.Object {
9+
private[url] final class URL(url: String) extends js.Object {
1010

1111
/**
1212
* Is a DOMString containing an initial '/' followed by the path of the URL.

0 commit comments

Comments
 (0)