Skip to content

Commit

Permalink
refactor: correct import locations
Browse files Browse the repository at this point in the history
  • Loading branch information
blacha committed Feb 7, 2024
1 parent f4f916d commit 67a8bc0
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/commands/copy/__test__/copy.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import assert from 'node:assert';
import { beforeEach, describe, it } from 'node:test';

import { fsa } from '@chunkd/fs';
import { FsMemory } from '@chunkd/fs/build/src/systems/memory.js';
import { FsMemory } from '@chunkd/fs';

import { worker } from '../copy-worker.js';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import assert from 'node:assert';
import { beforeEach, describe, it } from 'node:test';

import { fsa } from '@chunkd/fs';
import { FsMemory } from '@chunkd/fs/build/src/systems/memory.js';
import { FsMemory } from '@chunkd/fs';

import { createManifest, validatePaths } from '../create-manifest.js';

Expand Down
2 changes: 1 addition & 1 deletion src/commands/group/__test__/group.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import assert from 'node:assert';
import { before, describe, it } from 'node:test';

import { fsa } from '@chunkd/fs';
import { FsMemory } from '@chunkd/fs/build/src/systems/memory.js';
import { FsMemory } from '@chunkd/fs';

import { commandGroup, groupItems } from '../group.js';

Expand Down
2 changes: 1 addition & 1 deletion src/commands/stac-catalog/__test__/stac.catalog.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import assert from 'node:assert';
import { beforeEach, describe, it } from 'node:test';

import { fsa } from '@chunkd/fs';
import { FsMemory } from '@chunkd/fs/build/src/systems/memory.js';
import { FsMemory } from '@chunkd/fs';

import { createLinks, makeRelative } from '../stac.catalog.js';

Expand Down
3 changes: 1 addition & 2 deletions src/commands/stac-sync/__test__/stac.sync.test.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import assert from 'node:assert';
import { beforeEach, describe, it } from 'node:test';

import { fsa } from '@chunkd/fs';
import { FsMemory } from '@chunkd/fs/build/src/systems/memory.js';
import { fsa, FsMemory } from '@chunkd/fs';
import { createHash } from 'crypto';

import { HashKey, synchroniseFiles } from '../stac.sync.js';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import assert from 'node:assert';
import { before, beforeEach, describe, it } from 'node:test';

import { fsa } from '@chunkd/fs';
import { FsMemory } from '@chunkd/fs/build/src/systems/memory.js';
import { fsa, FsMemory } from '@chunkd/fs';
import { FeatureCollection } from 'geojson';

import { GridSize, MapSheet } from '../../../utils/mapsheet.js';
Expand Down
3 changes: 1 addition & 2 deletions src/utils/__test__/geotiff.test.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import assert from 'node:assert';
import { describe, it } from 'node:test';

import { fsa } from '@chunkd/fs';
import { FsMemory } from '@chunkd/fs/build/src/systems/memory.js';
import { fsa, FsMemory } from '@chunkd/fs';
import { Source, Tiff, TiffImage } from '@cogeotiff/core';

import { createTiff } from '../../commands/common.js';
Expand Down

0 comments on commit 67a8bc0

Please sign in to comment.