@blinkk/root 1.0.0-beta.6 → 1.0.0-beta.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/bin/root.js +4 -0
- package/dist/chunk-6F72PDTR.js +1289 -0
- package/dist/chunk-6F72PDTR.js.map +1 -0
- package/dist/{chunk-WVRC46JG.js → chunk-DXD5LKU3.js} +18 -18
- package/dist/chunk-DXD5LKU3.js.map +1 -0
- package/dist/{chunk-WTSNW7BB.js → chunk-HQXIHYDN.js} +1 -1
- package/dist/chunk-HQXIHYDN.js.map +1 -0
- package/dist/{chunk-DTEQ2AIW.js → chunk-QKBMWK5B.js} +1 -1
- package/dist/chunk-QKBMWK5B.js.map +1 -0
- package/dist/chunk-QMEBIZAR.js +183 -0
- package/dist/chunk-QMEBIZAR.js.map +1 -0
- package/dist/{chunk-LTSJAEBG.js → chunk-SDT4J6VY.js} +18 -6
- package/dist/chunk-SDT4J6VY.js.map +1 -0
- package/dist/cli.d.ts +14 -4
- package/dist/cli.js +12 -1101
- package/dist/cli.js.map +1 -1
- package/dist/core.d.ts +10 -7
- package/dist/core.js +14 -13
- package/dist/core.js.map +1 -1
- package/dist/functions.d.ts +14 -0
- package/dist/functions.js +30 -0
- package/dist/functions.js.map +1 -0
- package/dist/middleware.d.ts +34 -0
- package/dist/middleware.js +17 -0
- package/dist/middleware.js.map +1 -0
- package/dist/node.d.ts +1 -1
- package/dist/node.js +2 -2
- package/dist/render.d.ts +1 -1
- package/dist/render.js +429 -228
- package/dist/render.js.map +1 -1
- package/dist/{types-47b9b530.d.ts → types-ca13e626.d.ts} +161 -34
- package/package.json +40 -4
- package/dist/chunk-DTEQ2AIW.js.map +0 -1
- package/dist/chunk-LTSJAEBG.js.map +0 -1
- package/dist/chunk-WTSNW7BB.js.map +0 -1
- package/dist/chunk-WVRC46JG.js.map +0 -1
package/dist/cli.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { S as Server } from './types-
|
|
1
|
+
import { S as Server } from './types-ca13e626.js';
|
|
2
2
|
import 'express';
|
|
3
3
|
import 'preact';
|
|
4
4
|
import 'vite';
|
|
@@ -8,21 +8,31 @@ import 'js-beautify';
|
|
|
8
8
|
interface BuildOptions {
|
|
9
9
|
ssrOnly?: boolean;
|
|
10
10
|
mode?: string;
|
|
11
|
+
concurrency?: number;
|
|
11
12
|
}
|
|
12
13
|
declare function build(rootProjectDir?: string, options?: BuildOptions): Promise<void>;
|
|
13
14
|
|
|
14
|
-
|
|
15
|
+
interface DevOptions {
|
|
16
|
+
host?: string;
|
|
17
|
+
}
|
|
18
|
+
declare function dev(rootProjectDir?: string, options?: DevOptions): Promise<void>;
|
|
15
19
|
declare function createDevServer(options?: {
|
|
16
20
|
rootDir?: string;
|
|
17
21
|
port?: number;
|
|
18
22
|
}): Promise<Server>;
|
|
19
23
|
|
|
20
|
-
|
|
24
|
+
interface PreviewOptions {
|
|
25
|
+
host?: string;
|
|
26
|
+
}
|
|
27
|
+
declare function preview(rootProjectDir?: string, options?: PreviewOptions): Promise<void>;
|
|
21
28
|
declare function createPreviewServer(options: {
|
|
22
29
|
rootDir: string;
|
|
23
30
|
}): Promise<Server>;
|
|
24
31
|
|
|
25
|
-
|
|
32
|
+
interface StartOptions {
|
|
33
|
+
host?: string;
|
|
34
|
+
}
|
|
35
|
+
declare function start(rootProjectDir?: string, options?: StartOptions): Promise<void>;
|
|
26
36
|
declare function createProdServer(options: {
|
|
27
37
|
rootDir: string;
|
|
28
38
|
}): Promise<Server>;
|