fix(lune): write docs to docs/intro.md instead

This commit is contained in:
Erica Marigold 2025-02-23 11:51:25 +00:00
parent 52ae48178e
commit c7f9c8e03c
Signed by: DevComp
SSH key fingerprint: SHA256:jD3oMT4WL3WHPJQbrjC3l5feNCnkv7ndW8nYaHX5wFw
2 changed files with 8 additions and 2 deletions

View file

@ -29,6 +29,6 @@ local function extract(input: string): (number, { moonwave.Item }?)
end
local code, items = extract("lib/init.luau")
writeMarkdown("./docs/index.md", items :: { moonwave.Item })
writeMarkdown("./docs/intro.md", items :: { moonwave.Item })
process.exit(code)

View file

@ -6,7 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
## [Unreleased]
## [0.1.2] - 2025-02-23
## [0.1.3] - 2025-02-23
This is a hotfix release to fix documentation not being displayed properly on the pesde package page.
### Fixed
- Markdown doc file not being named correctly (rename docs/index.md->docs/intro.md)
## [0.1.2] - 2025-02-23 [YANKED]
This update brings documentation and some bug fixes! Your IDE should now display information such as usage and best practices for this library when you hover over any of its exported items. The docs are also available on the web in the markdown format, which can be found on [the pesde package page](https://pesde.dev/packages/0x5eal/unzip/0.1.2/luau/docs/intro).
### Added