-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: upgrade aegir and multibase (#14)
- Loading branch information
1 parent
3b20e16
commit 875fb95
Showing
5 changed files
with
6,819 additions
and
13,518 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |
Oops, something went wrong.