@nuasite/nua 0.41.0 → 0.42.1

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.
Files changed (2) hide show
  1. package/package.json +7 -7
  2. package/src/types.ts +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuasite/nua",
3
- "version": "0.41.0",
3
+ "version": "0.42.1",
4
4
  "type": "module",
5
5
  "license": "Apache-2.0",
6
6
  "module": "src/index.ts",
@@ -38,12 +38,12 @@
38
38
  "@astrojs/check": "0.9.8",
39
39
  "@astrojs/mdx": "5.0.3",
40
40
  "@astrojs/sitemap": "3.7.2",
41
- "@nuasite/checks": "0.41.0",
42
- "@nuasite/llm-enhancements": "0.41.0",
43
- "@nuasite/cli": "0.41.0",
44
- "@nuasite/cms": "0.41.0",
45
- "@nuasite/components": "0.41.0",
46
- "@nuasite/core": "0.41.0",
41
+ "@nuasite/checks": "0.42.1",
42
+ "@nuasite/llm-enhancements": "0.42.1",
43
+ "@nuasite/cli": "0.42.1",
44
+ "@nuasite/cms": "0.42.1",
45
+ "@nuasite/components": "0.42.1",
46
+ "@nuasite/core": "0.42.1",
47
47
  "@tailwindcss/vite": "^4.2.2",
48
48
  "@tailwindcss/typography": "^0.5.19",
49
49
  "astro": "6.1.4",
package/src/types.ts CHANGED
@@ -1,18 +1,18 @@
1
1
  import type { MdxOptions } from '@astrojs/mdx'
2
2
  import type { SitemapOptions } from '@astrojs/sitemap'
3
3
  import type { ChecksOptions } from '../../checks/src'
4
- import type { CmsMarkerOptions } from '../../cms/src'
4
+ import type { CmsMarkerOptions, NuaCmsOptions } from '../../cms/src'
5
5
  import type { PageMarkdownOptions } from '../../llm-enhancements/src'
6
6
 
7
7
  export type { MdxOptions } from '@astrojs/mdx'
8
8
  export type { SitemapOptions } from '@astrojs/sitemap'
9
9
  export type { ChecksOptions } from '../../checks/src'
10
- export type { CmsMarkerOptions } from '../../cms/src'
10
+ export type { CmsMarkerOptions, NuaCmsOptions } from '../../cms/src'
11
11
  export type { PageMarkdownOptions } from '../../llm-enhancements/src'
12
12
 
13
13
  export interface NuaIntegrationOptions {
14
14
  /** Enable/disable or configure @nuasite/cms (default: true) */
15
- cms?: boolean | CmsMarkerOptions
15
+ cms?: boolean | NuaCmsOptions
16
16
  /** Enable/disable or configure @nuasite/llm-enhancements (default: true) */
17
17
  pageMarkdown?: boolean | PageMarkdownOptions
18
18
  /** Enable/disable or configure @astrojs/mdx (default: true) */
@@ -24,7 +24,7 @@ export interface NuaIntegrationOptions {
24
24
  }
25
25
 
26
26
  export interface ResolvedIntegrationOptions {
27
- cms: CmsMarkerOptions | false
27
+ cms: NuaCmsOptions | false
28
28
  pageMarkdown: PageMarkdownOptions | false
29
29
  mdx: MdxOptions | false
30
30
  sitemap: SitemapOptions | false