valaxy 0.0.9 → 0.1.0

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.
@@ -1,45 +0,0 @@
1
- import * as vite from 'vite';
2
- import { InlineConfig } from 'vite';
3
- import { V as ValaxyConfig } from '../config-d6527c8c.js';
4
- import 'type-fest';
5
- import 'unocss/vite';
6
- import 'markdown-it';
7
- import 'markdown-it-anchor';
8
- import 'katex';
9
- import 'vite-plugin-md';
10
-
11
- interface ResolvedValaxyOptions {
12
- /**
13
- * Client root path
14
- * @default 'valaxy/src/client'
15
- */
16
- clientRoot: string;
17
- /**
18
- * User root path
19
- * @default process.cwd()
20
- */
21
- userRoot: string;
22
- /**
23
- * Theme root path
24
- */
25
- themeRoot: string;
26
- /**
27
- * Theme name
28
- */
29
- theme: string;
30
- /**
31
- * Valaxy Config
32
- */
33
- config: ValaxyConfig;
34
- /**
35
- * config file path
36
- */
37
- configFile: string;
38
- }
39
- interface ValaxyServerOptions {
40
- onConfigReload?: (newConfig: ValaxyConfig, config: ValaxyConfig) => void;
41
- }
42
-
43
- declare function createServer(options: ResolvedValaxyOptions, viteConfig?: InlineConfig, serverOptions?: ValaxyServerOptions): Promise<vite.ViteDevServer>;
44
-
45
- export { createServer };