Skip to content

Commit

Permalink
fix: upgrade aegir and multibase (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
hugomrdias committed Mar 1, 2021
1 parent 3b20e16 commit 875fb95
Show file tree
Hide file tree
Showing 5 changed files with 6,819 additions and 13,518 deletions.
12 changes: 9 additions & 3 deletions .aegir.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
'use strict'

/** @type {import('aegir').PartialOptions} */
module.exports = {
webpack: {
entry: './index.js'
build: {
config: {
entryPoints: ['index.js']
}
},
docs: {
entryPoint: 'index.js'
}
}
}
18 changes: 12 additions & 6 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
'use strict'
const compare = require('./compare')
const concat = require('./concat')
const equals = require('./equals')
const fromString = require('./from-string')
const toString = require('./to-string')
const xor = require('./xor')

module.exports = {
compare: require('./compare'),
concat: require('./concat'),
equals: require('./equals'),
fromString: require('./from-string'),
toString: require('./to-string'),
xor: require('./xor')
compare,
concat,
equals,
fromString,
toString,
xor
}
Loading

0 comments on commit 875fb95

Please sign in to comment.