create-svelte-docsmith 0.3.1 → 0.3.3

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": "create-svelte-docsmith",
3
- "version": "0.3.1",
3
+ "version": "0.3.3",
4
4
  "description": "Scaffold a documentation site powered by Svelte DocSmith.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -10,7 +10,7 @@
10
10
  "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json"
11
11
  },
12
12
  "dependencies": {
13
- "svelte-docsmith": "^0.10.0"
13
+ "svelte-docsmith": "^0.12.0"
14
14
  },
15
15
  "devDependencies": {
16
16
  "@sveltejs/adapter-auto": "^7.0.1",
@@ -1,8 +1,8 @@
1
- import type { DocsmithConfig } from 'svelte-docsmith';
1
+ import { defineConfig } from 'svelte-docsmith';
2
2
 
3
3
  // The whole-site config passed to DocsShell. Set your title, links, and the
4
4
  // SEO/social defaults here. See https://docsmith.geodask.com.
5
- export const siteConfig: DocsmithConfig = {
5
+ export const siteConfig = defineConfig({
6
6
  title: '{{SITE_TITLE}}',
7
7
  // github: 'https://github.com/you/your-library',
8
8
  // description: 'A short tagline, used as the default meta description.',
@@ -15,4 +15,4 @@ export const siteConfig: DocsmithConfig = {
15
15
  footer: {
16
16
  copyright: `© ${new Date().getFullYear()} {{SITE_TITLE}}`
17
17
  }
18
- };
18
+ });