From 72bdf8e0d1456236c8e1c17ce01b21592f628dcb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 May 2023 09:16:48 +0100 Subject: [PATCH] deps(dev): bump aegir from 38.1.8 to 39.0.6 (#152) * deps(dev): bump aegir from 38.1.8 to 39.0.6 Bumps [aegir](https://github.com/ipfs/aegir) from 38.1.8 to 39.0.6. - [Release notes](https://github.com/ipfs/aegir/releases) - [Changelog](https://github.com/ipfs/aegir/blob/master/CHANGELOG.md) - [Commits](https://github.com/ipfs/aegir/compare/v38.1.8...v39.0.6) --- updated-dependencies: - dependency-name: aegir dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] * chore: fix linting --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alex Potsides --- package.json | 9 ++++----- test/index.spec.ts | 2 +- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index a4174ed..1ee38b0 100644 --- a/package.json +++ b/package.json @@ -15,8 +15,8 @@ "multiaddr" ], "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" + "node": ">=18.0.0", + "npm": ">=8.6.0" }, "type": "module", "types": "./dist/src/index.d.ts", @@ -142,8 +142,7 @@ "@multiformats/multiaddr": "^12.0.0" }, "devDependencies": { - "aegir": "^38.1.7", - "uint8arrays": "^4.0.3", - "util": "^0.12.3" + "aegir": "^39.0.6", + "uint8arrays": "^4.0.3" } } diff --git a/test/index.spec.ts b/test/index.spec.ts index 74dc511..f456151 100644 --- a/test/index.spec.ts +++ b/test/index.spec.ts @@ -1,6 +1,6 @@ /* eslint-env mocha */ -import { expect } from 'aegir/chai' import { multiaddr } from '@multiformats/multiaddr' +import { expect } from 'aegir/chai' import { fromString as uint8ArrayFromString } from 'uint8arrays/from-string' import * as mafmt from '../src/index.js' import type { Mafmt } from '../src/index.js'