Skip to content

Commit 313bcf4

Browse files
xmokraycastbot
andauthored
Update Resend extension - Update Icons + Modernize to use latest config + chore: remove node-fetch, cross-fetch (raycast#20179)
* [Resend] Modernize + useGetDomains uses SDK * [Resend] update icons + revert useGetDomains refactor * [Resend] ye olde lint * Update CHANGELOG.md and optimise images --------- Co-authored-by: raycastbot <[email protected]>
1 parent 217bcbc commit 313bcf4

28 files changed

+965
-1831
lines changed

extensions/resend/.eslintrc.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

extensions/resend/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Resend Changelog
22

3+
## [Update Icons] - 2025-07-04
4+
5+
- Update Icons to reflect Resend's new Brand ([Brand Kit](https://resend.com/brand))
6+
- Modernize extension to use latest Raycast config
7+
- chore: remove `node-fetch`, `cross-fetch`
8+
39
## [Added Region] - 2025-03-10
410

511
Added support for Tokyo region

extensions/resend/README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# <img src="./assets/resend.png" width="20" height="20" /> Resend Raycast Extension
1+
# <img src="./assets/resend-extension_icon@dark.png" width="20" height="20" /> Resend Raycast Extension
22

33
This is a Raycast extension for [Resend](https://resend.com/). With this extension, you can Manage API Keys and Domains, and Send Emails using Resend.
44

@@ -41,4 +41,8 @@ This extension provides the following commands:
4141
- View Contacts
4242
- Create, Update And Delete Contacts
4343

44-
Additionally, this extension supports [AI tools](https://youtu.be/sHIlFKKaq0A), so you can use it with natural language by mentioning `@resend`.
44+
Additionally, this extension supports ✨[AI tools](https://youtu.be/sHIlFKKaq0A)✨, so you can use it with natural language by mentioning `@resend`.
45+
46+
---
47+
<br />
48+
<img src="./assets/resend-wordmark-white.svg" />
3.69 KB
Loading
3.56 KB
Loading
Lines changed: 3 additions & 0 deletions
Loading
-8.57 KB
Binary file not shown.
-10.4 KB
Binary file not shown.

extensions/resend/eslint.config.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
const { defineConfig } = require("eslint/config");
2+
const raycastConfig = require("@raycast/eslint-config");
3+
4+
module.exports = defineConfig([
5+
...raycastConfig,
6+
{
7+
rules: {
8+
"@raycast/prefer-title-case": "off"
9+
}
10+
}
11+
]);

0 commit comments

Comments
 (0)