Skip to content

Commit bfd63bb

Browse files
authored
Update dependencies and minimum Node version
Helps with jsdom/whatwg-url#239.
1 parent e937be8 commit bfd63bb

File tree

4 files changed

+302
-443
lines changed

4 files changed

+302
-443
lines changed

.eslintrc.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,8 @@
33
"extends": "@domenic",
44
"env": {
55
"node": true
6+
},
7+
"rules": {
8+
"logical-assignment-operators": "off"
69
}
710
}

.github/workflows/build.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,15 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
node-version:
17-
- 12
1817
- 14
1918
- 16
20-
architecture:
21-
- x64
19+
- 18
20+
- latest
2221
steps:
23-
- uses: actions/checkout@v2
24-
- uses: actions/setup-node@v2
22+
- uses: actions/checkout@v3
23+
- uses: actions/setup-node@v3
2524
with:
2625
node-version: ${{ matrix.node-version }}
27-
architecture: ${{ matrix.architecture }}
2826
- run: yarn --frozen-lockfile
2927
- run: yarn lint
3028
- run: yarn test

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "tr46",
33
"version": "3.0.0",
44
"engines": {
5-
"node": ">=12"
5+
"node": ">=14"
66
},
77
"description": "An implementation of the Unicode UTS #46: Unicode IDNA Compatibility Processing",
88
"main": "index.js",
@@ -33,15 +33,15 @@
3333
],
3434
"license": "MIT",
3535
"dependencies": {
36-
"punycode": "^2.1.1"
36+
"punycode": "^2.3.0"
3737
},
3838
"devDependencies": {
39-
"@domenic/eslint-config": "^1.4.0",
40-
"@unicode/unicode-14.0.0": "^1.2.1",
41-
"eslint": "^7.32.0",
42-
"minipass-fetch": "^1.4.1",
43-
"mocha": "^9.1.1",
39+
"@domenic/eslint-config": "^3.0.0",
40+
"@unicode/unicode-15.0.0": "^1.3.1",
41+
"eslint": "^8.32.0",
42+
"minipass-fetch": "^3.0.1",
43+
"mocha": "^10.2.0",
4444
"regenerate": "^1.4.2"
4545
},
46-
"unicodeVersion": "14.0.0"
46+
"unicodeVersion": "15.0.0"
4747
}

0 commit comments

Comments
 (0)