-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1878 from whitep4nth3r/add-bsky-support
Add support for bluesky urls with one test case
- Loading branch information
Showing
2 changed files
with
15 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ | |
* @property {string} country - flag emoji for contributor's country | ||
* @property {string} [twitter] - optional Twitter username (beginning with `@`) | ||
* @property {string} [mastodon] - optional Mastodon username & server (beginning with `@`, ex: `@[email protected]`) | ||
* @property {string} [bluesky] - optional Bluesky (bsky.app) handle (do not use `@`) | ||
* @property {string} [emoji] - some emoji corresponding to the contributor | ||
* @property {'apple' | 'windows' | 'linux' | 'bsd'} [computer] | ||
* @property {'iphone' | 'android' | 'windowsphone' | 'flipphone'} [phone] | ||
|
@@ -3844,7 +3845,7 @@ module.exports = [ | |
name: 'Salma Alam-Naylor', | ||
description: 'I write code for your entertainment.', | ||
url: 'https://whitep4nth3r.com/uses', | ||
twitter: '@whitep4nth3r', | ||
bluesky: 'whitep4nth3r.com', | ||
emoji: '⚡️', | ||
country: '🇬🇧', | ||
computer: 'apple', | ||
|