Skip to content

Commit

Permalink
refactor: Join imports
Browse files Browse the repository at this point in the history
  • Loading branch information
l0b0 committed Feb 8, 2024
1 parent fa98b63 commit 1f36e73
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
3 changes: 1 addition & 2 deletions src/commands/copy/__test__/copy.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';
import { fsa, FsMemory } from '@chunkd/fs';

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

Expand Down
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';
import { fsa, FsMemory } from '@chunkd/fs';

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

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

import { fsa } from '@chunkd/fs';
import { FsMemory } from '@chunkd/fs';
import { fsa, FsMemory } from '@chunkd/fs';

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

Expand Down
3 changes: 1 addition & 2 deletions src/fs.register.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { S3Client } from '@aws-sdk/client-s3';
import { FileSystem } from '@chunkd/fs';
import { fsa } from '@chunkd/fs';
import { FileSystem, fsa } from '@chunkd/fs';
import { AwsCredentialConfig, AwsS3CredentialProvider, FsAwsS3 } from '@chunkd/fs-aws';

import { logger } from './log.js';
Expand Down

0 comments on commit 1f36e73

Please sign in to comment.