Skip to content

Commit

Permalink
Merge pull request #16 from remitbri/node-20
Browse files Browse the repository at this point in the history
Bump jsdom & glob; node 20 required
  • Loading branch information
bloodyowl authored Feb 20, 2024
2 parents 6249870 + 584037f commit 01659b3
Show file tree
Hide file tree
Showing 4 changed files with 319 additions and 188 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
node-version: [18.x]
node-version: [20.x]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion bin/retest.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import path from "path";
import fs from "fs";
import { JSDOM } from "jsdom";
import { pathToFileURL } from "url";
import glob from "glob";
import { glob } from "glob";

let args = process.argv.slice(2);
let options = {
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"retest": "bin/retest.mjs"
},
"engines": {
"node": ">16.0.0"
"node": ">20.0.0"
},
"scripts": {
"clean": "rescript clean",
Expand All @@ -28,7 +28,7 @@
"rescript": "^9.0.0 || ^10.0.0"
},
"dependencies": {
"glob": "^7.2.0",
"jsdom": "22.1.0"
"glob": "^10.3.0",
"jsdom": "^23.1.0"
}
}
Loading

0 comments on commit 01659b3

Please sign in to comment.