File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 34
34
},
35
35
"repository" : " github:ipfs/js-ipfs-utils" ,
36
36
"scripts" : {
37
- "prepare" : " aegir build --no-bundle" ,
38
37
"test" : " aegir test" ,
39
38
"test:browser" : " aegir test -t browser" ,
40
39
"test:node" : " aegir test -t node" ,
68
67
"stream-to-it" : " ^0.2.2"
69
68
},
70
69
"devDependencies" : {
71
- "aegir" : " ^33.2.0 " ,
70
+ "aegir" : " ^35.0.1 " ,
72
71
"delay" : " ^5.0.0" ,
73
72
"events" : " ^3.3.0" ,
74
73
"ipfs-unixfs" : " ^4.0.1" ,
77
76
"it-last" : " ^1.0.4" ,
78
77
"react-native-polyfill-globals" : " ^3.0.0" ,
79
78
"readable-stream" : " ^3.6.0" ,
80
- "uint8arrays" : " ^2 .0.5 " ,
79
+ "uint8arrays" : " ^3 .0.0 " ,
81
80
"util" : " ^0.12.3"
82
81
},
83
82
"eslintConfig" : {
Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ const drain = require('it-drain')
11
11
const all = require ( 'it-all' )
12
12
const { isBrowser, isWebWorker, isReactNative } = require ( '../src/env' )
13
13
const { Buffer } = require ( 'buffer' )
14
- const uint8ArrayFromString = require ( 'uint8arrays/from-string' )
15
- const uint8ArrayEquals = require ( 'uint8arrays/equals' )
16
- const uint8ArrayConcat = require ( 'uint8arrays/concat' )
14
+ const { fromString : uint8ArrayFromString } = require ( 'uint8arrays/from-string' )
15
+ const { equals : uint8ArrayEquals } = require ( 'uint8arrays/equals' )
16
+ const { concat : uint8ArrayConcat } = require ( 'uint8arrays/concat' )
17
17
18
18
const ECHO_SERVER = process . env . ECHO_SERVER || ''
19
19
You can’t perform that action at this time.
0 commit comments