File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ const createServer = require('./src').createServer
44
55const server = createServer ( ) // using defaults
66module . exports = {
7- bundlesize : { maxSize : '270kB ' } ,
7+ bundlesize : { maxSize : '280kB ' } ,
88 karma : {
99 files : [ {
1010 pattern : 'test/fixtures/**/*' ,
Original file line number Diff line number Diff line change 6262 " daemon"
6363 ],
6464 "dependencies" : {
65+ "@hapi/boom" : " ^7.4.3" ,
6566 "@hapi/hapi" : " ^18.3.2" ,
66- "boom " : " ^7.3.0 " ,
67+ "@hapi/joi " : " ^15.1.1 " ,
6768 "debug" : " ^4.1.1" ,
6869 "detect-node" : " ^2.0.4" ,
6970 "dexie" : " ^2.0.4" ,
7071 "execa" : " ^2.0.4" ,
7172 "fs-extra" : " ^8.1.0" ,
7273 "hat" : " ~0.0.3" ,
73- "ipfs-http-client" : " ^34.0.0" ,
74- "joi" : " ^14.3.1" ,
74+ "ipfs-http-client" : " ^35.1.0" ,
7575 "lodash.clone" : " ^4.5.0" ,
7676 "lodash.defaults" : " ^4.2.0" ,
7777 "lodash.defaultsdeep" : " ^4.6.1" ,
78- "multiaddr" : " ^6.1 .0" ,
78+ "multiaddr" : " ^7.0 .0" ,
7979 "safe-json-stringify" : " ^1.2.0" ,
8080 "superagent" : " ^5.0.5"
8181 },
Original file line number Diff line number Diff line change 11'use strict'
22
33const hat = require ( 'hat' )
4- const Joi = require ( 'joi' )
5- const boom = require ( 'boom' )
4+ const Joi = require ( '@hapi/ joi' )
5+ const boom = require ( '@hapi/ boom' )
66const defaults = require ( 'lodash.defaultsdeep' )
77const FactoryDaemon = require ( '../factory-daemon' )
88const tmpDir = require ( '../utils/tmp-dir' )
Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ const tests = [
2020
2121describe ( 'ipfsd.api for Daemons' , ( ) => {
2222 tests . forEach ( ( dfOpts ) => describe ( `${ dfOpts . type } ` , ( ) => {
23- const API_PORT = ' 5101'
24- const GW_PORT = ' 8180'
23+ const API_PORT = 5101
24+ const GW_PORT = 8180
2525
2626 const config = {
2727 Addresses : {
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ chai.use(dirtyChai)
99
1010const hat = require ( 'hat' )
1111
12- const boom = require ( 'boom' )
12+ const boom = require ( '@hapi/ boom' )
1313const proxyquire = require ( 'proxyquire' )
1414const superagent = require ( 'superagent' )
1515const mock = require ( 'superagent-mocker' ) ( superagent )
You can’t perform that action at this time.
0 commit comments