Skip to content

Commit

Permalink
deps: update to latest deps (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
SgtPooki authored Feb 7, 2024
1 parent 72e9755 commit 4d9ad33
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 13 deletions.
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -158,18 +158,18 @@
"release": "aegir release"
},
"dependencies": {
"@libp2p/logger": "^4.0.1",
"@multiformats/multiaddr": "^12.1.11",
"@multiformats/multiaddr-matcher": "^1.1.0",
"multiformats": "^12.1.3",
"p-retry": "^6.1.0"
"@libp2p/logger": "^4.0.6",
"@multiformats/multiaddr": "^12.1.14",
"@multiformats/multiaddr-matcher": "^1.1.2",
"multiformats": "^13.0.1",
"p-retry": "^6.2.0"
},
"devDependencies": {
"@helia/interface": "^2.1.0",
"@helia/unixfs": "^1.4.3",
"@helia/interface": "^4.0.0",
"@helia/unixfs": "^3.0.0",
"@ipfs-shipyard/pinning-service-client": "^1.0.3",
"@types/express": "^4.17.17",
"aegir": "^41.1.14",
"@types/express": "^4.17.21",
"aegir": "^42.2.3",
"get-port": "^7.0.0",
"mock-ipfs-pinning-service": "^0.4.2",
"nyc": "^15.1.0",
Expand Down
2 changes: 1 addition & 1 deletion src/heliaRemotePinner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { type RemotePinningServiceClient, type Pin, type PinStatus, type PinsReq
import { logger } from '@libp2p/logger'
import { multiaddr, type Multiaddr } from '@multiformats/multiaddr'
import pRetry, { type Options as pRetryOptions } from 'p-retry'
import type { Helia } from '@helia/interface'
import type { Helia } from 'helia'
import type { CID } from 'multiformats/cid'

const log = logger('helia:remote-pinning')
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { HeliaRemotePinner, type HeliaRemotePinnerConfig } from './heliaRemotePinner.js'
import type { Helia } from '@helia/interface'
import type { RemotePinningServiceClient } from '@ipfs-shipyard/pinning-service-client'
import type { Helia } from 'helia'

export type { HeliaRemotePinner, HeliaRemotePinnerConfig } from './heliaRemotePinner.js'

Expand Down
3 changes: 1 addition & 2 deletions test/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@ import { unixfs, type UnixFS } from '@helia/unixfs'
import { Configuration, RemotePinningServiceClient, Status } from '@ipfs-shipyard/pinning-service-client'
import { multiaddr } from '@multiformats/multiaddr'
import { expect } from 'aegir/chai'
import { createHelia } from 'helia'
import { createHelia, type Helia } from 'helia'
import sinon, { type SinonSandbox, type SinonStub } from 'sinon'
import { type HeliaRemotePinner, createRemotePinner } from '../src/index.js'
import type { Helia } from '@helia/interface'

const encoder = new TextEncoder()

Expand Down

0 comments on commit 4d9ad33

Please sign in to comment.