luau-promise/moonwave.toml

28 lines
930 B
TOML
Raw Normal View History

2021-09-30 07:01:59 +00:00
classOrder = [
"Promise"
]
2021-09-23 23:08:38 +00:00
[docusaurus]
2021-09-23 23:14:03 +00:00
url = "https://eryn.io"
2021-09-23 23:08:38 +00:00
tagline = "Promise implementation for Roblox"
[[navbar.items]]
2021-10-23 19:52:30 +00:00
href = "https://discord.gg/aQwDAYhqtJ"
2021-09-23 23:08:38 +00:00
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."