radiant-docs 0.1.27 → 0.1.30

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "radiant-docs",
3
- "version": "0.1.27",
3
+ "version": "0.1.30",
4
4
  "description": "CLI tool for previewing Radiant documentation locally",
5
5
  "type": "module",
6
6
  "bin": {
@@ -3,6 +3,7 @@ import { defineConfig } from "astro/config";
3
3
  import tailwindcss from "@tailwindcss/vite";
4
4
  import mdx from "@astrojs/mdx";
5
5
  import alpine from "@astrojs/alpinejs";
6
+ import preact from "@astrojs/preact";
6
7
  import icon from "astro-icon";
7
8
  import fs from "fs";
8
9
  import path from "path";
@@ -271,6 +272,9 @@ export default defineConfig({
271
272
  format: "directory",
272
273
  },
273
274
  integrations: [
275
+ preact({
276
+ compat: true,
277
+ }),
274
278
  mdx({
275
279
  remarkPlugins: [
276
280
  remarkGfm,