-
-
Notifications
You must be signed in to change notification settings - Fork 78
/
moonwave.toml
28 lines (22 loc) · 930 Bytes
/
moonwave.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
classOrder = [
"Promise"
]
[docusaurus]
url = "https://eryn.io"
tagline = "Promise implementation for Roblox"
[[navbar.items]]
href = "https://discord.gg/aQwDAYhqtJ"
label = "Discord"
position = "right"
[home]
enabled = true
includeReadme = true
[[home.features]]
title = "Versatile, composable, predictable"
description = "Promises model asynchronous operations in a way that makes them delightful to work with. You can easily chain together multiple async functions and you don't have to worry about accidentally yielding."
[[home.features]]
title = "Rich API"
description = "This library includes many utility functions beyond the basic functionality which make composing and creating Promises a breeze."
[[home.features]]
title = "Cancellation"
description = "On second thought, we don't want that value anymore. Promises support cancellation, which allows you to prematurely stop an async task and clean up if needed."