hono-decks 0.2.0 → 0.2.2
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/dist/advanced.d.ts +603 -46
- package/dist/advanced.js +2034 -1910
- package/dist/bin.d.ts +1 -1
- package/dist/bin.js +1826 -1910
- package/dist/cli.d.ts +16 -15
- package/dist/cli.js +1829 -1915
- package/dist/client.d.ts +14 -8
- package/dist/client.js +13 -16
- package/dist/mod.d.ts +512 -27
- package/dist/mod.js +812 -759
- package/dist/node.d.ts +670 -111
- package/dist/node.js +3831 -3940
- package/dist/vite.d.ts +8 -8
- package/dist/vite.js +1709 -1805
- package/package.json +3 -3
- package/dist/define-decks-U4NxIs66.d.ts +0 -587
- package/dist/jsx-renderer-BO-N4tMZ.d.ts +0 -20
package/dist/vite.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { Plugin } from
|
|
2
|
-
|
|
1
|
+
import { Plugin } from "vite";
|
|
2
|
+
//#region src/vite.d.ts
|
|
3
3
|
/** Options for the Hono Decks Vite integration. */
|
|
4
4
|
interface HonoDecksViteOptions {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
/** Config file relative to Vite's project root. */
|
|
6
|
+
configFile?: string;
|
|
7
|
+
/** Refresh remote OGP metadata during compilation. */
|
|
8
|
+
refreshOgp?: boolean;
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
11
|
* Compiles decks before Vite starts and regenerates them while authoring.
|
|
@@ -15,5 +15,5 @@ interface HonoDecksViteOptions {
|
|
|
15
15
|
* separate `hono-decks compile --watch` process is required.
|
|
16
16
|
*/
|
|
17
17
|
declare function honoDecks(options?: HonoDecksViteOptions): Plugin;
|
|
18
|
-
|
|
19
|
-
export {
|
|
18
|
+
//#endregion
|
|
19
|
+
export { HonoDecksViteOptions, honoDecks };
|