-
Notifications
You must be signed in to change notification settings - Fork 6
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
Port over adapters #73
Conversation
package.json
Outdated
@@ -36,26 +34,24 @@ | |||
"@nightingale-elements/nightingale-structure": "5.2.0", | |||
"@nightingale-elements/nightingale-track": "5.2.0", | |||
"@nightingale-elements/nightingale-variation": "5.2.0", | |||
"color-hash": "^2.0.2", |
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.
How about just using the fixed version like the rest of them?
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.
Pinned all dep versions but not devDeps as I encountered webpack issues so left as is there.
src/protvista-uniprot.ts
Outdated
|
||
import ProtvistaUniprotStructure from './protvista-uniprot-structure'; | ||
|
||
import { load } from 'data-loader'; |
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.
Data-loader from the old version is used only in two places. we can replace it with fetch()
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.
Removed
src/protvista-uniprot.ts
Outdated
@@ -124,7 +101,7 @@ type ProtvistaCategory = { | |||
'color-range'?: string; | |||
}; | |||
|
|||
export type DownloadConfig = { | |||
type DownloadConfig = { |
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.
We do not have download in protvista-uniprot anymore. we can delete it
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.
Removed
Note
yarn jest
gives me these warningsbut I couldn't figure out how to remove them. Leaving for now as they don't impact anything. Suggestions welcome.
Description of changes
Testing/Styleguide