Skip to content

Commit

Permalink
chore: version pinning (#111)
Browse files Browse the repository at this point in the history
version pinning
  • Loading branch information
dvdanielamoitzi authored Feb 29, 2024
1 parent 5ae02ef commit dec6e72
Show file tree
Hide file tree
Showing 6 changed files with 19,537 additions and 5 deletions.
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

0 comments on commit dec6e72

Please sign in to comment.