@nuasite/nua 0.0.59 → 0.0.61

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": "@nuasite/nua",
3
- "version": "0.0.59",
3
+ "version": "0.0.61",
4
4
  "type": "module",
5
5
  "license": "Apache-2.0",
6
6
  "module": "src/index.ts",
@@ -39,11 +39,11 @@
39
39
  "@astrojs/mdx": "4.3.8",
40
40
  "@astrojs/rss": "4.0.13",
41
41
  "@astrojs/sitemap": "3.6.0",
42
- "@nuasite/llm-enhancements": "0.0.59",
43
- "@nuasite/cli": "0.0.59",
44
- "@nuasite/cms-marker": "0.0.59",
45
- "@nuasite/components": "0.0.59",
46
- "@nuasite/core": "0.0.59",
42
+ "@nuasite/llm-enhancements": "0.0.61",
43
+ "@nuasite/cli": "0.0.61",
44
+ "@nuasite/cms-marker": "0.0.61",
45
+ "@nuasite/components": "0.0.61",
46
+ "@nuasite/core": "0.0.61",
47
47
  "@tailwindcss/vite": "^4.1.11",
48
48
  "astro": "^5.16.6",
49
49
  "flowbite": "3.1.2",
@@ -1,9 +1,9 @@
1
1
  import mdx from '@astrojs/mdx'
2
2
  import sitemap from '@astrojs/sitemap'
3
3
  import cmsMarker from '@nuasite/cms-marker'
4
- import pageMarkdown from '../../llm-enhancements/src'
5
4
  import tailwindcss from '@tailwindcss/vite'
6
5
  import type { AstroIntegration } from 'astro'
6
+ import pageMarkdown from '../../llm-enhancements/src'
7
7
  import { type NuaIntegrationOptions, resolveOptions } from './types'
8
8
 
9
9
  export default function nua(options: NuaIntegrationOptions = {}): AstroIntegration {