Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
hugomrdias committed Apr 14, 2020
1 parent e7c5e20 commit bb31c3b
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 16 deletions.
20 changes: 9 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,26 +55,24 @@
"@hapi/joi": "^16.1.8",
"debug": "^4.1.1",
"execa": "^4.0.0",
"fs-extra": "^8.1.0",
"ipfs-utils": "^0.7.1",
"ky": "^0.15.0",
"ky-universal": "^0.3.0",
"fs-extra": "^9.0.0",
"ipfs-utils": "^2.2.0",
"merge-options": "^2.0.0",
"multiaddr": "^7.2.1",
"nanoid": "^2.1.9",
"nanoid": "^3.1.3",
"temp-write": "^4.0.0"
},
"devDependencies": {
"aegir": "^20.5.0",
"aegir": "^21.8.1",
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"go-ipfs-dep": "github:ipfs/npm-go-ipfs-dep#master",
"husky": "^4.0.10",
"ipfs": "^0.40.0",
"ipfs-http-client": "^42.0.0",
"lint-staged": "^10.0.2"
"go-ipfs-dep": "^0.4.23-3",

This comment has been minimized.

Copy link
@achingbrain

achingbrain Apr 29, 2020

Member

This should be pinned to 0.4.23-3 because npm doesn't use the -3 in resolving versions and people want to keep the version of the go-ipfs-dep module in line with go-ipfs versions.

Will be upgraded by #504 anyway.

"husky": "^4.2.5",
"ipfs": "^0.42.1",
"ipfs-http-client": "^43.0.1",
"lint-staged": "^10.1.3"
},
"peerDependencies": {
"go-ipfs-dep": "*",
Expand Down
2 changes: 1 addition & 1 deletion src/endpoint/routes.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict'

const nanoid = require('nanoid')
const { nanoid } = require('nanoid')
const Joi = require('@hapi/joi')
const boom = require('@hapi/boom')
const debug = require('debug')('ipfsd-ctl:routes')
Expand Down
2 changes: 1 addition & 1 deletion src/endpoint/server.browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class Server {
* @param {object} [options] - {@link https://hapi.dev/api/?v=18.4.0#-await-serverstopoptions Hapi docs}
* @returns {Promise}
*/
stop (options) {
stop () {
console.warn('Server not implemented in the browser')
return Promise.resolve(this)
}
Expand Down
2 changes: 1 addition & 1 deletion src/ipfsd-daemon.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const fs = require('fs-extra')
const merge = require('merge-options').bind({ ignoreUndefined: true })
const debug = require('debug')
const execa = require('execa')
const nanoid = require('nanoid')
const { nanoid } = require('nanoid')
const path = require('path')
const os = require('os')
const tempWrite = require('temp-write')
Expand Down
2 changes: 1 addition & 1 deletion src/utils.browser.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'use strict'
const nanoid = require('nanoid')
const { nanoid } = require('nanoid')

const deleteDb = (path) => {
return new Promise((resolve, reject) => {
Expand Down
2 changes: 1 addition & 1 deletion src/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const os = require('os')
const path = require('path')
const fs = require('fs-extra')
const debug = require('debug')
const nanoid = require('nanoid')
const { nanoid } = require('nanoid')

const log = debug('ipfsd-ctl:utils')

Expand Down

0 comments on commit bb31c3b

Please sign in to comment.