-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ucan-core refactor #82
Merged
Changes from 5 commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
f8e1c0c
refactor
dholms 93b5295
fleshing out plugins
dholms 0060b8c
fleshed out plugin api & got all tests running again
dholms 97bae0f
cleaned up plugins
dholms 23c950b
refactored plugins library based on cryptosystem
dholms 91df141
cleaning up, removed KeyType
dholms f820eee
patched up DID operations
dholms 93b20ec
cleanup
dholms 11108c5
Cleanup root package.json
dholms b9c1118
tsconfigs in root
dholms 7697e21
PR fixups
dholms ef01a24
DidableKey
dholms 61ed38e
Inject plugins by passing through fns instead of global state var
dholms ce32e24
add test for rsa
dholms b60d09c
minor naming chnage
dholms ccd4f34
setup -> lib
dholms 62d07c0
Moved jest config to root
dholms f8adc50
v0.0.1-alpha
dholms e313254
v0.0.1-alpha2
dholms 91f1fb8
mkBuilder & mkState
dholms 0e2d550
moved tests to ucans
dholms 8e94b30
bump dependencies
dholms f3997fe
no alpha version
dholms 26352bb
workspace cmds
dholms 61f4417
update version
dholms 2f5b178
Merge branch 'main' into refactor
dholms File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,4 +1,4 @@ | ||
module.exports = { // eslint-disable-line | ||
export default { | ||
transform: { | ||
".(ts|tsx)": "ts-jest" | ||
}, | ||
|
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 |
---|---|---|
|
@@ -15,5 +15,8 @@ | |
"private": true, | ||
"workspaces": [ | ||
"packages/*" | ||
] | ||
], | ||
"devDependencies": { | ||
"ts-node": "^10.8.2" | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import baseConfig from "../../jest.config" | ||
|
||
export default baseConfig |
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
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
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
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not
?
And then there's no need for a
private plugins: Plugins
member.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
Mk-
based naming here I'm not too sure nor am I attached to it. It may be simpler to just have it bebuilder
orBuilder
or similar.