fix: 🐛 Properly install and import the S3 client

This commit is contained in:
Jesse Wierzbinski 2024-06-28 20:49:17 -10:00
parent 106e34848a
commit e95cabb304
No known key found for this signature in database
6 changed files with 12 additions and 10 deletions

View file

@ -4,7 +4,7 @@
*/
import { beforeEach, describe, expect, it, mock } from "bun:test";
import type { S3Client } from "@jsr/bradenmacdonald__s3-lite-client";
import type { S3Client } from "@bradenmacdonald/s3-lite-client";
import type { Config } from "config-manager";
import type { MediaHasher } from "../media-hasher";
import { S3MediaDriver } from "./s3";

View file

@ -3,7 +3,7 @@
* @module MediaManager/Drivers
*/
import { S3Client } from "@jsr/bradenmacdonald__s3-lite-client";
import { S3Client } from "@bradenmacdonald/s3-lite-client";
import type { Config } from "config-manager";
import { MediaHasher } from "../media-hasher";
import type { UploadedFileMetadata } from "../media-manager";