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

chore: version pinning #111

Merged
merged 1 commit into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ node_modules/
*.css
*.log
/dist/
/yarn.lock
!yarn.lock
# yarn
.pnp.*
.yarn/*
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,13 +97,13 @@
"d3.parsets": "git+ssh://git@github.com/jasondavies/d3-parsets#v1.2.4",
"jstat": "^1.9.4",
"lodash": "~4.17.20",
"tdp_core": "git+ssh://git@github.com:datavisyn/tdp_core#develop",
"tdp_core": "^23.0.1",
"vega": "~5.20.0",
"vega-embed": "6.19.1",
"vega-functions": "5.12.0",
"vega-lite": "5.1.1",
"vega-parser": "6.1.3",
"visyn_scripts": "git+ssh://git@github.com/datavisyn/visyn_scripts.git#develop",
"visyn_scripts": "^7.0.1",
"xxhashjs": "^0.2.2"
},
"resolutions": {
Expand Down
6 changes: 5 additions & 1 deletion src/app/TouringPanel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,11 @@ export class TouringPanel {

private active: boolean;

constructor(private readonly _desc: IPanelTabExtensionDesc, private readonly tab: PanelTab, private readonly provider: LocalDataProvider) {
constructor(
private readonly _desc: IPanelTabExtensionDesc,
private readonly tab: PanelTab,
private readonly provider: LocalDataProvider,
) {
this.node = tab.node;
this.node.classList.add('touring');
this.node.innerHTML = touringTemplate;
Expand Down
1 change: 1 addition & 0 deletions src/phovea_registry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import reg from './phovea';
* build a registry by registering all phovea modules
*/
// other modules
import 'tdp_core/dist/phovea_registry';

// self
PluginRegistry.getInstance().register('tourdino', reg);
5 changes: 4 additions & 1 deletion src/tasks/RankingAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ export class RankingAdapter {
return indices;
}

constructor(protected readonly provider: LocalDataProvider, private rankingIndex = 0) {}
constructor(
protected readonly provider: LocalDataProvider,
private rankingIndex = 0,
) {}

public getProvider(): LocalDataProvider {
return this.provider;
Expand Down
Loading
Loading