Releases: LitoMore/raycast-cross-extension-conventions
Releases · LitoMore/raycast-cross-extension-conventions
v0.2.3
Changes
- Read
ownerOrAuthorName
from Raycast built-in API 6195d5c - Update extension link e5cf044
- Suggest always use
crossLaunchCommand()
5f145e6 - Add arguments-based command usage 6708c2f
- Add implementation case f45babf
- Add utility implementation 7964b53
- Update links a234ab3
- Update document d59dc38
Full Changelog: v0.2.2...v0.2.3
v0.2.2
Changes
- Export type
CallbackLaunchOptions
- Add support for disabling command callback
Full Changelog: v0.2.1...v0.2.2
v0.2.1
Changes
Now the crossLaunchCommand
will read ownerOrAuthorName
from package.json. No need to manually pass in the ownerOrAuthorName
anymore.
Full Changelog: v0.2.0...v0.2.1
v0.2.0
Changes
Now, we require command consumers to define the target extension in the crossExtensions
list of package.json. This allows providers to get to know who is using their extension API.
{
"crossExtensions": ["target-extension-author-name/target-extension-name"]
}