Skip to content

Commit

Permalink
fix(cogify): fix malformed 'RGBA' inteface import and export
Browse files Browse the repository at this point in the history
  • Loading branch information
tawera-manaena committed Dec 20, 2024
1 parent 1bbde99 commit 7a24780
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/cogify/src/cogify/gdal.command.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { RGBA } from '@basemaps/config/src/color.js';
import { RGBA } from '@basemaps/config';
import { Epsg, EpsgCode, TileMatrixSets } from '@basemaps/geo';
import { urlToString } from '@basemaps/shared';

Expand Down
2 changes: 1 addition & 1 deletion packages/cogify/src/cogify/parsers.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { pathToFileURL } from 'node:url';

import { parseRgba, RGBA } from '@basemaps/config/src/color.js';
import { parseRgba, RGBA } from '@basemaps/config';
import { fsa } from '@basemaps/shared';
import { Type } from 'cmd-ts';

Expand Down
2 changes: 1 addition & 1 deletion packages/cogify/src/cogify/stac.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { createHash } from 'node:crypto';

import { RGBA } from '@basemaps/config/src/color.js';
import { RGBA } from '@basemaps/config';
import { Tile } from '@basemaps/geo';
import { StacCollection, StacItem, StacLink } from 'stac-ts';

Expand Down
2 changes: 1 addition & 1 deletion packages/cogify/src/tile.cover.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { RGBA } from '@basemaps/config/src/color.js';
import { RGBA } from '@basemaps/config';
import { ConfigImageryTiff } from '@basemaps/config-loader';
import { BoundingBox, Bounds, EpsgCode, Projection, ProjectionLoader, TileId, TileMatrixSet } from '@basemaps/geo';
import { fsa, LogType, urlToString } from '@basemaps/shared';
Expand Down
2 changes: 1 addition & 1 deletion packages/config/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export {
} from './base.config.js';
export { base58, isBase58 } from './base58.js';
export { ensureBase58, sha256base58 } from './base58.node.js';
export { parseHex, parseRgba } from './color.js';
export { parseHex, parseRgba, RGBA } from './color.js';
export { ConfigBase as BaseConfig } from './config/base.js';
export { ConfigBundle } from './config/config.bundle.js';
export { ConfigImagery, ConfigImageryOverview, ImageryBandType, ImageryDataType } from './config/imagery.js';
Expand Down

0 comments on commit 7a24780

Please sign in to comment.