lildocs 0.1.15 → 0.1.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/dist/cli.mjs +356 -449
- package/dist/render/Layout.tsrx +362 -0
- package/dist/render/Search.tsrx +409 -0
- package/dist/render/client.tsrx +50 -0
- package/dist/render/copy-code.ts +56 -0
- package/dist/render/heading-links.ts +50 -0
- package/dist/render/navigation.ts +16 -0
- package/dist/render/paths.ts +47 -0
- package/dist/render/renderPage.tsrx +14 -0
- package/dist/render/section-highlight.ts +63 -0
- package/dist/render/sidebar.ts +31 -0
- package/dist/render/styles.css +435 -95
- package/dist/render/table-viewer.ts +161 -0
- package/dist/render/tabler-icons.css +16 -0
- package/dist/render/types.ts +9 -0
- package/package.json +15 -11
- package/dist/render/copy-code.js +0 -54
- package/dist/render/navigation.js +0 -14
- package/dist/render/search.js +0 -3254
package/README.md
CHANGED
|
@@ -58,10 +58,10 @@ Keep behavior aligned with the README, documentation, and existing tests.
|
|
|
58
58
|
The project uses:
|
|
59
59
|
|
|
60
60
|
- `cmd-ts` for CLI parsing
|
|
61
|
-
-
|
|
61
|
+
- Octane SSR for rendering and client interactivity
|
|
62
62
|
- `marked` and `gray-matter` for Markdown and frontmatter
|
|
63
63
|
- native dynamic `import()` for local theme loading
|
|
64
|
-
- `tsdown` for
|
|
64
|
+
- `tsdown` for the CLI bundle and Vite for the frontend bundle/dev server
|
|
65
65
|
- `oxlint` for linting
|
|
66
|
-
-
|
|
67
|
-
-
|
|
66
|
+
- Prettier with the TSRX plugin for formatting
|
|
67
|
+
- Vitest with the Octane Vite compiler plugin
|