Skip to content

Commit

Permalink
Upgrade Vite (#506)
Browse files Browse the repository at this point in the history
* Upgrade Vite

* Prettier.

* Revert type import change.

* Fix indexer type import issue
  • Loading branch information
ilan-gold committed Sep 24, 2021
1 parent ad9b51e commit b32bb85
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 34 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
- `channelIsOn` -> `channelsVisible`
- `loaderSelection` -> `selections`
- `MAX_SLIDERS_AND_CHANNELS` -> `MAX_CHANNELS`
- Upgrade `Vite` to `~2.5.4`

## 0.10.6

Expand Down
56 changes: 28 additions & 28 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
"tape-catch": "^1.0.6",
"tape-run": "^8.0.0",
"typescript": "^4.1.3",
"vite": "^2.4.1"
"vite": "^2.5.4"
},
"dependencies": {
"@math.gl/culling": "^3.4.2",
Expand Down
7 changes: 2 additions & 5 deletions src/loaders/tiff/ome-tiff.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,10 @@ import type { GeoTIFF } from 'geotiff';
import { fromString } from '../omexml';

import TiffPixelSource from './pixel-source';
import {
getOmeLegacyIndexer,
getOmeSubIFDIndexer,
OmeTiffIndexer
} from './lib/indexers';
import { getOmeLegacyIndexer, getOmeSubIFDIndexer } from './lib/indexers';
import { getOmePixelSourceMeta, guessTileSize } from './lib/utils';
import type Pool from './lib/Pool';
import type { OmeTiffIndexer } from './lib/indexers';

export interface OmeTiffSelection {
t: number;
Expand Down

0 comments on commit b32bb85

Please sign in to comment.