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

Commit aeaad0f

Browse files
authored
Merge pull request #342 from exoego/bump
Bump dependencies
2 parents 9e15de8 + 1f00214 commit aeaad0f

File tree

4 files changed

+15
-11
lines changed

4 files changed

+15
-11
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ jobs:
66
strategy:
77
fail-fast: false
88
matrix:
9-
scala: [2.13.3, 2.12.12]
10-
nodejs: [14.15.1, 12.19.1, 10.23.0]
9+
scala: [2.13.4, 2.12.12]
10+
nodejs: [14.15.2, 12.20.0, 10.23.0]
1111
steps:
1212
- uses: actions/checkout@v2
1313
- uses: olafurpg/setup-scala@v10
@@ -22,3 +22,4 @@ jobs:
2222
run: sbt ++${{ matrix.scala }} test
2323
env:
2424
NODEJS_VERSION: ${{ matrix.nodejs }}
25+

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ Scala.js type facades for Node.js v10, v12 and v14.
1111
| Scala 2.11 | N/A | N/A |
1212
| Scala 2.10 | N/A | N/A |
1313

14-
- :heavy_check_mark: Supported
15-
- :construction: Not supported but planned
14+
* :heavy_check_mark: Supported
15+
* :construction: Not supported but planned
1616

1717
## Supported Modules
1818

build.sbt

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1+
lazy val scala213 = "2.13.4"
2+
lazy val scala212 = "2.12.12"
13
organization in ThisBuild := "net.exoego"
2-
crossScalaVersions in ThisBuild := Seq("2.13.3", "2.12.12")
4+
crossScalaVersions in ThisBuild := Seq(scala213, scala212)
5+
scalaVersion in ThisBuild := scala213
36

47
lazy val root = {
58
val p = (project in file("."))
@@ -26,9 +29,9 @@ lazy val core = (project in file("./core"))
2629
libraryDependencies ++= Dependencies.core.value
2730
)
2831

29-
lazy val nodejs_v14 = createNodeVersionSpecificProject("14.14.0")
30-
lazy val nodejs_v12 = createNodeVersionSpecificProject("12.19.0")
31-
lazy val nodejs_v10 = createNodeVersionSpecificProject("10.22.1")
32+
lazy val nodejs_v14 = createNodeVersionSpecificProject("14.15.2")
33+
lazy val nodejs_v12 = createNodeVersionSpecificProject("12.20.0")
34+
lazy val nodejs_v10 = createNodeVersionSpecificProject("10.23.0")
3235

3336
def createNodeVersionSpecificProject(nodeFullVersion: String) = {
3437
val majorVersion = nodeFullVersion.split("\\.")(0)

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
]
1313
},
1414
"dependencies": {
15-
"remark-cli": "^8.0.0",
16-
"remark-preset-lint-recommended": "^4.0.0",
17-
"source-map-support": "^0.5.13"
15+
"remark-cli": "^9.0.0",
16+
"remark-preset-lint-recommended": "^5.0.0",
17+
"source-map-support": "^0.5.19"
1818
}
1919
}

0 commit comments

Comments
 (0)