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

Import from Fabric #5

Open
wants to merge 55 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
465e298
Import @fabric/react
martindale May 31, 2022
70a3936
Import @fabric/react
martindale May 31, 2022
1e42148
Add support for Coinbase quotes
martindale May 31, 2022
acc6d8e
Use exchange rate, not buy price, for Coinbase
martindale May 31, 2022
d980891
build: add watch for any changes
victorwu May 31, 2022
4a03a54
Merge pull request #6 from victorwu/build/watch
martindale May 31, 2022
ff183bc
Run rollup watch and Fabric HTTP server concurrently
martindale May 31, 2022
2ed58bb
Remove extraneous package
martindale May 31, 2022
c7b749e
Update @fabric/core to feature/node-16
martindale Jun 1, 2022
8c39919
Update package-lock.json
martindale Jun 1, 2022
a798b9f
Migrate to FeedMonitor, App-like definition
martindale Jun 1, 2022
48a1c67
Smooth out use of FeedMonitor
martindale Jun 1, 2022
d71103f
build: add externals
victorwu Jun 1, 2022
9475b77
feature: add FabricBridge component
victorwu Jun 1, 2022
129a0e8
build: add FabricBridge as global external
victorwu Jun 1, 2022
1a39657
Format Feed component, regenerate build
martindale Jun 1, 2022
9daff57
fix: bad merge: closing block; brackets in rollup config
victorwu Jun 1, 2022
a7c3430
Merge branch 'feature/fabric' of github.com:victorwu/portal-feed into…
martindale Jun 1, 2022
ba3e3e6
Merge branch 'feature/fabric-components' of github.com:victorwu/porta…
martindale Jun 1, 2022
8c0a69e
Remove unnecessary import from React
martindale Jun 1, 2022
211653a
Generate working build
martindale Jun 1, 2022
0cb9a2c
Update package-lock.json
martindale Jun 1, 2022
49cfd6b
Add new weighted estimate method
martindale Jun 1, 2022
d364d4a
Add test GitHub Workflow (tm)
martindale Jun 3, 2022
b3b8ee9
fix: build issues from react not importing https://github.com/rollup/…
victorwu Jun 6, 2022
0a9ad85
Add missing lodash.merge
martindale Jun 7, 2022
1e20803
Improve coverage, test flow
martindale Jun 9, 2022
8bbdb97
Add Quote, Rate components
martindale Jun 9, 2022
712bfc6
Update package-lock.json
martindale Jun 9, 2022
0b54e45
Update general UI
martindale Jun 9, 2022
3d7dfdf
Merge branch 'feature/node-16' of github.com:FabricLabs/portal-feed i…
martindale Jun 9, 2022
710ae40
Add "states" map to local store
martindale Jun 9, 2022
bb59cdf
Merge branch 'feature/node-16' of github.com:FabricLabs/portal-feed i…
martindale Jun 9, 2022
f8333b6
Add "history" array to local store
martindale Jun 9, 2022
d8712d2
Merge branch 'feature/node-16' of github.com:FabricLabs/portal-feed i…
martindale Jun 9, 2022
864ef24
Generate build
martindale Jun 9, 2022
677ef56
Update .travis.yml
martindale Jun 9, 2022
90c7ecb
Specify HTTP port 8080
martindale Jun 9, 2022
333bcd6
Update tests, settings
martindale Jun 9, 2022
9c5f615
Merge branch 'feature/node-16' of github.com:FabricLabs/portal-feed i…
martindale Jun 9, 2022
bf15aa2
Fix build
martindale Jun 9, 2022
72f6f07
Stop HTTP server
martindale Jun 9, 2022
96545c8
Merge branch 'feature/node-16' of github.com:FabricLabs/portal-feed i…
martindale Jun 9, 2022
56531bf
Fix various warnings
martindale Jun 9, 2022
e2bb5b7
Merge branch 'feature/node-16' of github.com:FabricLabs/portal-feed i…
martindale Jun 9, 2022
1be39c6
Include missing changes
martindale Jun 9, 2022
da19847
Merge branch 'feature/node-16' of github.com:FabricLabs/portal-feed i…
martindale Jun 9, 2022
419cfd5
Use htmlFor instead of for
martindale Jun 9, 2022
c363af9
Merge branch 'feature/node-16' of github.com:FabricLabs/portal-feed i…
martindale Jun 9, 2022
dcd264f
Handle large quote lists
martindale Jun 9, 2022
efcc606
Refactor "price" to "rate"
martindale Jun 9, 2022
81a8e57
Add graph to FeedMonitor
martindale Jun 9, 2022
4a6e1c0
build: remove circular dependency
victorwu Jun 10, 2022
6745b60
Merge pull request #10 from victorwu/feature/package
martindale Jun 10, 2022
b2e0d27
fix: global variable names
victorwu Jun 20, 2022
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
21 changes: 21 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: "@portal/feed npm test"
on:
push:
branches: '*'
pull_request:
branches: '*'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x, 17.x]
steps:
- uses: actions/checkout@v3
- name: setup node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm test
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
language: node_js
node_js:
- "16.15.0"
Loading