Skip to content
This repository was archived by the owner on Jul 30, 2024. It is now read-only.

Bump dependencies #342

Merged
merged 3 commits into from
Dec 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ jobs:
strategy:
fail-fast: false
matrix:
scala: [2.13.3, 2.12.12]
nodejs: [14.15.1, 12.19.1, 10.23.0]
scala: [2.13.4, 2.12.12]
nodejs: [14.15.2, 12.20.0, 10.23.0]
steps:
- uses: actions/checkout@v2
- uses: olafurpg/setup-scala@v10
Expand All @@ -22,3 +22,4 @@ jobs:
run: sbt ++${{ matrix.scala }} test
env:
NODEJS_VERSION: ${{ matrix.nodejs }}

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ Scala.js type facades for Node.js v10, v12 and v14.
| Scala 2.11 | N/A | N/A |
| Scala 2.10 | N/A | N/A |

- :heavy_check_mark: Supported
- :construction: Not supported but planned
* :heavy_check_mark: Supported
* :construction: Not supported but planned

## Supported Modules

Expand Down
11 changes: 7 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
lazy val scala213 = "2.13.4"
lazy val scala212 = "2.12.12"
organization in ThisBuild := "net.exoego"
crossScalaVersions in ThisBuild := Seq("2.13.3", "2.12.12")
crossScalaVersions in ThisBuild := Seq(scala213, scala212)
scalaVersion in ThisBuild := scala213

lazy val root = {
val p = (project in file("."))
Expand All @@ -26,9 +29,9 @@ lazy val core = (project in file("./core"))
libraryDependencies ++= Dependencies.core.value
)

lazy val nodejs_v14 = createNodeVersionSpecificProject("14.14.0")
lazy val nodejs_v12 = createNodeVersionSpecificProject("12.19.0")
lazy val nodejs_v10 = createNodeVersionSpecificProject("10.22.1")
lazy val nodejs_v14 = createNodeVersionSpecificProject("14.15.2")
lazy val nodejs_v12 = createNodeVersionSpecificProject("12.20.0")
lazy val nodejs_v10 = createNodeVersionSpecificProject("10.23.0")

def createNodeVersionSpecificProject(nodeFullVersion: String) = {
val majorVersion = nodeFullVersion.split("\\.")(0)
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
]
},
"dependencies": {
"remark-cli": "^8.0.0",
"remark-preset-lint-recommended": "^4.0.0",
"source-map-support": "^0.5.13"
"remark-cli": "^9.0.0",
"remark-preset-lint-recommended": "^5.0.0",
"source-map-support": "^0.5.19"
}
}