-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: run tests with deno 2, fix formatting issues it finds
- Loading branch information
1 parent
c88afa6
commit cbc3650
Showing
3 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,7 +51,7 @@ Supported functionality: | |
<script type="module"> | ||
import { S3Client } from "https://esm.sh/jsr/@bradenmacdonald/[email protected]"; | ||
// Or: | ||
const { S3Client } = await import('https://esm.sh/jsr/@bradenmacdonald/[email protected]'); | ||
const { S3Client } = await import("https://esm.sh/jsr/@bradenmacdonald/[email protected]"); | ||
</script> | ||
``` | ||
|
||
|
@@ -132,7 +132,7 @@ await s3client.putObject("key", streamOrData, { | |
"x-amz-acl": "public-read", | ||
"x-amz-meta-custom": "value", | ||
}, | ||
}) | ||
}); | ||
``` | ||
|
||
For more examples, check out the tests in [`integration.ts`](./integration.ts) | ||
|