Skip to content

Commit

Permalink
chore: version pinning (#435)
Browse files Browse the repository at this point in the history
* version pinning

* add dist files
  • Loading branch information
dvdanielamoitzi authored Jan 22, 2024
1 parent 80b70c1 commit fafd114
Show file tree
Hide file tree
Showing 16 changed files with 19,022 additions and 68 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ __pycache__/
*.pyc
*.swp
*.lock
!yarn.lock
# due to using tox and pytest
.tox
.cache
Expand All @@ -28,8 +29,6 @@ node_modules/
*.log
/.awcache
/.cache-loader
package-lock.json
/yarn.lock
# yarn
.pnp.*
.yarn/*
Expand Down
2 changes: 1 addition & 1 deletion dist/components/OrdinoFooter.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/components/OrdinoFooter.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions dist/internal/OrdinoApp.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/internal/OrdinoApp.js.map

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions dist/internal/ViewWrapper.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/internal/ViewWrapper.js.map

Large diffs are not rendered by default.

98 changes: 49 additions & 49 deletions dist/locales/en/tdp.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion dist/phovea_registry.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/phovea_registry.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion dist/phovea_registry.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/phovea_registry.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,16 +57,16 @@
"@types/react-select": "^4.0.13"
},
"dependencies": {
"html-react-parser": "^4.2.0",
"react-dropzone": "^11.3.1",
"react-highlight-words": "^0.17.0",
"react-intersection-observer": "^8.31.1",
"react-router-dom": "^5.2.0",
"react-select": "^4.1.0",
"react-select-async-paginate": "^0.5.3",
"react-virtualized": "^9.22.3",
"html-react-parser": "^4.2.0",
"tdp_core": "git+ssh://[email protected]:datavisyn/tdp_core#develop",
"visyn_scripts": "git+ssh://[email protected]/datavisyn/visyn_scripts.git#develop"
"tdp_core": "^23.0.1",
"visyn_scripts": "^7.0.1"
},
"resolutions": {
"@types/react": "~18.2.0",
Expand Down
2 changes: 1 addition & 1 deletion src/components/OrdinoFooter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function FooterLink(props: IFooterLinkProps) {
}

export function OrdinoFooter(props) {
const testId = props.testId;
const { testId } = props;
const openInNewWindow = !!props.openInNewWindow; // undefined and null = false (default)

const lists: IOrdinoFooterMenuLink[][] = PluginRegistry.getInstance()
Expand Down
1 change: 0 additions & 1 deletion src/phovea_registry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import reg from './phovea';
* build a registry by registering all phovea modules
*/
// other modules
import 'visyn_core/phovea_registry';
import 'tdp_core/dist/phovea_registry';
// self
PluginRegistry.getInstance().register('ordino', reg);
Loading

0 comments on commit fafd114

Please sign in to comment.