Skip to content

Commit

Permalink
bump dependencies, test on node 22, update import syntax in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
bhousel committed Sep 10, 2024
1 parent eb43cd7 commit db91b5e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
node-version: [18, 20]
node-version: ['18', '20', '22']

steps:
- uses: actions/checkout@v4
Expand All @@ -27,4 +27,4 @@ jobs:
- run: |
echo "::remove-matcher owner=eslint-compact::"
echo "::remove-matcher owner=eslint-stylish::"
- run: npm run test
- run: npm run all
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ When you load this file in a `<script>` tag, you'll get a `LocationConflation` g
## Examples
```js
import { LocationConflation } from '@rapideditor/location-conflation';
import myFeatures from './fixtures/features.json' assert {type: 'json'}; // optional
import myFeatures from './fixtures/features.json' with {type: 'json'}; // optional
const loco = new LocationConflation(myFeatures);
```

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@
},
"devDependencies": {
"c8": "^10.1.2",
"esbuild": "^0.23.0",
"eslint": "^9.7.0",
"globals": "^15.8.0",
"esbuild": "^0.23.1",
"eslint": "^9.10.0",
"globals": "^15.9.0",
"npm-run-all": "^4.1.5",
"shx": "^0.3.4"
},
Expand Down

0 comments on commit db91b5e

Please sign in to comment.