Skip to content

Commit ef3f355

Browse files
committed
Merge branch 'master' into feature/write-typedarrays
2 parents fe2aff4 + f2ecb76 commit ef3f355

25 files changed

+477
-315
lines changed

.eslintrc.cjs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ module.exports = {
1313
ecmaVersion: 'latest',
1414
sourceType: 'module',
1515
},
16+
globals: {
17+
FinalizationRegistry: true,
18+
},
1619
rules: {
1720
'no-underscore-dangle': 0,
1821
'class-methods-use-this': 0,

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v2
14-
- run: -|
15-
docker pull osgeo/gdal:ubuntu-small-latest ;
16-
docker run -i --rm -v `pwd`/test/data:/data osgeo/gdal:ubuntu-small-latest bash -c "apt-get update && apt-get -y install imagemagick libtiff-tools wget && cd /data && ./setup_data.sh"
14+
- run: |
15+
docker pull ghcr.io/osgeo/gdal:ubuntu-small-latest ;
16+
docker run -i --rm -v `pwd`/test/data:/data ghcr.io/osgeo/gdal:ubuntu-small-latest bash -c "apt-get update && apt-get -y install imagemagick libtiff-tools wget && cd /data && ./setup_data.sh"
1717
- name: Use Node.js ${{ matrix.node-version }}
1818
uses: actions/setup-node@v1
1919
with:
20-
node-version: 14.x
20+
node-version: 20.x
2121
- run: npm ci
2222
- run: npm run build
2323
- run: npm test

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ or a `Blob`/`File`:
236236
```html
237237
<input type="file" id="file">
238238
<script>
239-
const input = document.getElementById('file'):
239+
const input = document.getElementById('file');
240240
input.onchange = async function() {
241241
const tiff = await fromBlob(input.files[0]);
242242
}

package-lock.json

Lines changed: 70 additions & 110 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)