Skip to content

Commit

Permalink
deps(dev): bump aegir from 42.2.11 to 44.0.1 (#240)
Browse files Browse the repository at this point in the history
Bumps [aegir](https://github.com/ipfs/aegir) from 42.2.11 to 44.0.1.
- [Release notes](https://github.com/ipfs/aegir/releases)
- [Changelog](https://github.com/ipfs/aegir/blob/master/CHANGELOG.md)
- [Commits](ipfs/aegir@v42.2.11...v44.0.1)

---
updated-dependencies:
- dependency-name: aegir
  dependency-type: direct:development
  update-type: version-update:semver-major
...

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: achingbrain <alex@achingbrain.net>
  • Loading branch information
dependabot[bot] and achingbrain authored Sep 12, 2024
1 parent 39f1bf2 commit 17d702b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@
"@types/readable-stream": "^4.0.11",
"@types/sinon": "^17.0.3",
"@web-std/file": "^3.0.3",
"aegir": "^42.2.5",
"aegir": "^44.0.1",
"blockstore-core": "^4.4.1",
"buffer": "^6.0.3",
"delay": "^6.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/glob-source.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export async function * globSource (cwd: string, pattern: string, options?: Glob
realpath: false,
absolute: true,
dot: Boolean(options.hidden),
follow: options.followSymlinks != null ? options.followSymlinks : true
follow: options.followSymlinks ?? true
})

for await (const p of glob(cwd, pattern, globOptions)) {
Expand Down
2 changes: 1 addition & 1 deletion test/utils/mock-pinning-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export class PinningService {

async stop (): Promise<void> {
return new Promise<void>((resolve, reject) => {
this.server.close((err: any) => {
this.server.close((err?: Error | undefined) => {
if (err != null) {
reject(err)
} else {
Expand Down

0 comments on commit 17d702b

Please sign in to comment.