-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: account recover with email (#149)
Theres also a commit with changes to rename access to access-client Co-authored-by: Alan Shaw <[email protected]>
- Loading branch information
1 parent
37788b1
commit 91ad47d
Showing
75 changed files
with
878 additions
and
601 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
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,6 +1,6 @@ | ||
{ | ||
"packages/wallet": "1.0.0", | ||
"packages/access": "5.0.2", | ||
"packages/access-client": "5.0.2", | ||
"packages/access-api": "3.0.0", | ||
"packages/upload-client": "1.0.0" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,8 +9,8 @@ on: | |
default: 'access-api' | ||
options: | ||
- access-api | ||
- access | ||
- upload-client | ||
- access-client | ||
- wallet | ||
environment: | ||
description: 'Environment to deploy' | ||
|
@@ -52,9 +52,9 @@ jobs: | |
with: | ||
environment: ${{ github.event.inputs.environment }} | ||
secrets: inherit | ||
deploy-access: | ||
deploy-access-client: | ||
runs-on: ubuntu-latest | ||
if: github.event.inputs.package == 'access' | ||
if: github.event.inputs.package == 'access-client' | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: pnpm/[email protected] | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"name": "ucan-protocol", | ||
"name": "w3protocol", | ||
"version": "0.0.0", | ||
"private": true, | ||
"workspaces": [ | ||
|
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
"dev": "scripts/cli.js dev", | ||
"build": "scripts/cli.js build", | ||
"check": "tsc --build", | ||
"test": "tsc --build && ava --timeout 10s" | ||
"test": "pnpm build && tsc --build && ava --timeout 10s" | ||
}, | ||
"author": "Hugo Dias <[email protected]> (hugodias.me)", | ||
"license": "(Apache-2.0 OR MIT)", | ||
|
@@ -56,6 +56,7 @@ | |
"git-rev-sync": "^3.0.1", | ||
"hd-scripts": "^3.0.2", | ||
"miniflare": "^2.10.0", | ||
"p-wait-for": "^5.0.0", | ||
"process": "^0.11.10", | ||
"readable-stream": "^4.1.0", | ||
"sade": "^1.7.4", | ||
|
@@ -92,8 +93,6 @@ | |
], | ||
"ava": { | ||
"failFast": true, | ||
"concurrency": 1, | ||
"workerThreads": false, | ||
"files": [ | ||
"test/**/*.test.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
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
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.