Skip to content

Commit 63cbb7d

Browse files
authored
Merge pull request #3 from mongodb-js/bump-whatwg-url
chore: bump whatwg-url to latest
2 parents 5c7c27d + c7c1ebe commit 63cbb7d

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/nodejs.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ jobs:
1818
with:
1919
node-version: ${{ matrix.node-version }}
2020
- name: Install Dependencies
21-
run: npm install
21+
run: |
22+
npm config set node_gyp "$PWD/node_modules/node-gyp/bin/node-gyp.js"
23+
npm config get node_gyp
24+
npm install
2225
- name: Test
2326
run: npm test

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"devDependencies": {
4343
"@types/mocha": "^8.0.3",
4444
"@types/node": "^14.11.1",
45-
"@types/whatwg-url": "^8.2.0",
45+
"@types/whatwg-url": "^8.2.2",
4646
"@typescript-eslint/eslint-plugin": "^4.2.0",
4747
"@typescript-eslint/parser": "^4.2.0",
4848
"eslint": "^7.9.0",
@@ -54,12 +54,13 @@
5454
"eslint-plugin-standard": "^4.0.1",
5555
"gen-esm-wrapper": "^1.1.0",
5656
"mocha": "^8.1.3",
57+
"node-gyp": "^9.1.0",
5758
"nyc": "^15.1.0",
5859
"os-dns-native": "^1.0.0",
59-
"ts-node": "^9.0.0",
60+
"ts-node": "^10.9.1",
6061
"typescript": "^4.0.3"
6162
},
6263
"dependencies": {
63-
"whatwg-url": "^8.5.0"
64+
"whatwg-url": "^11.0.0"
6465
}
6566
}

0 commit comments

Comments
 (0)