Skip to content

Commit

Permalink
chore: modernize dependencies (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
seriousme authored Feb 24, 2025
1 parent 0fdbade commit 540248f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, '*']
node-version: ['lts/-1', 'lts/*', 'node']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Use Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ node_modules
mydb

package-lock.json
.tap/
19 changes: 8 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,21 +45,18 @@
},
"homepage": "https://github.com/mcollina/aedes-persistence-level#readme",
"devDependencies": {
"aedes": "^0.46.3",
"aedes-persistence": "^9.1.1",
"concat-stream": "^2.0.0",
"faucet": "0.0.1",
"@fastify/pre-commit": "^2.2.0",
"aedes": "^0.51.3",
"aedes-persistence": "^9.1.2",
"level": "^9.0.0",
"mqemitter": "^4.5.0",
"pre-commit": "^1.2.2",
"release-it": "^15.0.0",
"standard": "^17.0.0",
"tape": "^5.5.3",
"through2": "^4.0.2"
"release-it": "^18.1.2",
"standard": "^17.1.2"
},
"dependencies": {
"aedes-packet": "^3.0.0",
"faucet": "^0.0.4",
"msgpack-lite": "^0.1.26",
"qlobber": "^7.0.0"
"qlobber": "^8.0.1",
"tape": "^5.9.0"
}
}
2 changes: 1 addition & 1 deletion test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const test = require('tape').test
const { test } = require('tape')
const persistence = require('./')
const abs = require('aedes-persistence/abstract')
const { Level } = require('level') // Level >= 8.0.0
Expand Down

0 comments on commit 540248f

Please sign in to comment.