Skip to content
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

Move to TypeScript / TSDX #51

Merged
merged 34 commits into from
Dec 5, 2020
Merged
Show file tree
Hide file tree
Changes from 23 commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
61d1a52
Move to esbuild (WIP)
bpierre Aug 7, 2020
bd1cc56
Update prettierrc
bpierre Aug 7, 2020
31549e5
Fix build (see scripts/build.sh for details)
bpierre Aug 7, 2020
9775b1b
Fix ESLint / Prettier
bpierre Aug 7, 2020
5d19630
Set yarn to v1
bpierre Aug 7, 2020
b533591
More comments
bpierre Aug 7, 2020
a429c67
Add a SnowPack example
bpierre Aug 7, 2020
e190ac2
Remove debug code
bpierre Aug 7, 2020
67e4354
Move to TypeScript (TSDX)
bpierre Aug 11, 2020
f4065ae
Fix yarn lint
bpierre Aug 12, 2020
62f7fcd
Remove unused dependency
bpierre Aug 12, 2020
2a3fc6d
Remove useless useMemo() dependency
bpierre Aug 12, 2020
6eb766f
Update simple-connect example
bpierre Aug 12, 2020
1d4f340
Update nextjs example
bpierre Aug 12, 2020
b5023f4
Enable Authereum again
bpierre Aug 12, 2020
01d180d
Enable SquareLink again
bpierre Aug 12, 2020
6d9d3ed
Remove custom types (using TS-generated ones now)
bpierre Aug 12, 2020
224caac
Remove build.sh
bpierre Aug 12, 2020
be5b4c7
simple-connect: fix babel version range
bpierre Aug 17, 2020
53c0d6f
Remove debug code
bpierre Aug 17, 2020
506e28f
Dynamically import connectors
bpierre Sep 8, 2020
a932151
Examples: remove with-snowpack
bpierre Sep 8, 2020
bd12842
examples/simple-connect: new status API
bpierre Sep 8, 2020
307eb02
Update dependencies
bpierre Dec 5, 2020
45569ae
Next.js example: use token-amount + link peer dependencies
bpierre Dec 5, 2020
d3bbed7
Next.js example: fix event handler
bpierre Dec 5, 2020
41b03ce
Connectors: add Torus and Portis back
bpierre Dec 5, 2020
f6e587c
Use provider.request() (EIP 1193) if it exists
bpierre Dec 5, 2020
fb32596
Update yarn.lock
bpierre Dec 5, 2020
e05c3a5
Add missing connectors
bpierre Dec 5, 2020
ca1a4f6
Merge branch 'master' into fix-build
bpierre Dec 5, 2020
86bd548
Examples: fix / update simple-connect and web3-js-compat
bpierre Dec 5, 2020
ed68cfd
Remove SnowPack example
bpierre Dec 5, 2020
b3a1fc5
Examples: remove Fortmatic / Portis testing keys
bpierre Dec 5, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions .babelrc.json

This file was deleted.

45 changes: 0 additions & 45 deletions .eslintrc.js

This file was deleted.

5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
node_modules/
.cache/
dist/
node_modules/
yarn-error.log
.yarn/cache
.cache/
3 changes: 1 addition & 2 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
"singleQuote": true
}
Loading