Skip to content

Commit 2854d79

Browse files
authored
Merge pull request #65 from hildjj/ranges
Ranges as a hidden property on Uint8Arrays
2 parents 3cf5ec7 + 8ac945d commit 2854d79

25 files changed

+282
-168
lines changed

.github/workflows/docs-only.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@v4
2020
with:
2121
ref: ${{ github.event.inputs.branch }}
22-
- run: corepack enable
22+
- uses: pnpm/action-setup@v4
2323
- uses: actions/setup-node@v4
2424
with:
2525
node-version: '22.x'

.github/workflows/node.js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
with:
2727
submodules: true
2828
- name: Install pnpm
29-
run: corepack enable
29+
uses: pnpm/action-setup@v4
3030
- name: Use Node.js ${{ matrix.node-version }}
3131
uses: actions/setup-node@v4
3232
with:

.github/workflows/playwright.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v4
13-
- run: corepack enable
13+
- uses: pnpm/action-setup@v4
1414
- uses: actions/setup-node@v4
1515
with:
1616
node-version: lts/*

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
id-token: write
1616
steps:
1717
- uses: actions/checkout@v4
18-
- run: corepack enable
18+
- uses: pnpm/action-setup@v4
1919
- uses: actions/setup-node@v4
2020
with:
2121
node-version: '22.x'

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,19 +61,19 @@
6161
],
6262
"license": "MIT",
6363
"devDependencies": {
64-
"@cto.af/eslint-config": "5.1.6",
64+
"@cto.af/eslint-config": "5.1.9",
6565
"c8": "10.1.3",
66-
"eslint": "9.18.0",
67-
"eslint-plugin-jsdoc": "50.6.2",
66+
"eslint": "9.20.1",
67+
"eslint-plugin-jsdoc": "50.6.3",
6868
"eslint-plugin-markdown": "5.1.0",
6969
"package-extract": "2.3.0",
7070
"rimraf": "^5.0.10",
71-
"tsup": "8.3.5",
72-
"typedoc": "0.27.6",
73-
"typescript-eslint": "8.20.0"
71+
"tsup": "8.3.6",
72+
"typedoc": "0.27.7",
73+
"typescript-eslint": "8.24.0"
7474
},
75-
"packageManager": "pnpm@9.15.4",
75+
"packageManager": "pnpm@10.3.0",
7676
"engines": {
77-
"node": ">=18"
77+
"node": ">=18.7"
7878
}
7979
}

0 commit comments

Comments
 (0)