@moku-labs/web 1.1.0 → 1.2.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.
- package/README.md +1 -1
- package/dist/index.cjs +552 -95
- package/dist/index.d.cts +11 -0
- package/dist/index.d.mts +11 -0
- package/dist/index.mjs +553 -96
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2109,6 +2109,17 @@ type CliRenderer = {
|
|
|
2109
2109
|
* render.check(false, "CLOUDFLARE_API_TOKEN is set", "Create one at …");
|
|
2110
2110
|
*/
|
|
2111
2111
|
check(ok: boolean, label: string, detail?: string): void;
|
|
2112
|
+
/**
|
|
2113
|
+
* Stop any running animation (the live `serve()` idle pulse, a phase/rebuild spinner)
|
|
2114
|
+
* and release the renderer's interval timer. Called by `serve()`'s SIGINT/SIGTERM
|
|
2115
|
+
* teardown so the persistent idle-pulse ticker never outlives the dev server. A no-op
|
|
2116
|
+
* when nothing is animating; safe to call more than once.
|
|
2117
|
+
*
|
|
2118
|
+
* @returns Nothing.
|
|
2119
|
+
* @example
|
|
2120
|
+
* render.dispose();
|
|
2121
|
+
*/
|
|
2122
|
+
dispose(): void;
|
|
2112
2123
|
};
|
|
2113
2124
|
/**
|
|
2114
2125
|
* A live directory watcher handle returned by the injectable `watch` seam. Closing
|
package/dist/index.d.mts
CHANGED
|
@@ -2109,6 +2109,17 @@ type CliRenderer = {
|
|
|
2109
2109
|
* render.check(false, "CLOUDFLARE_API_TOKEN is set", "Create one at …");
|
|
2110
2110
|
*/
|
|
2111
2111
|
check(ok: boolean, label: string, detail?: string): void;
|
|
2112
|
+
/**
|
|
2113
|
+
* Stop any running animation (the live `serve()` idle pulse, a phase/rebuild spinner)
|
|
2114
|
+
* and release the renderer's interval timer. Called by `serve()`'s SIGINT/SIGTERM
|
|
2115
|
+
* teardown so the persistent idle-pulse ticker never outlives the dev server. A no-op
|
|
2116
|
+
* when nothing is animating; safe to call more than once.
|
|
2117
|
+
*
|
|
2118
|
+
* @returns Nothing.
|
|
2119
|
+
* @example
|
|
2120
|
+
* render.dispose();
|
|
2121
|
+
*/
|
|
2122
|
+
dispose(): void;
|
|
2112
2123
|
};
|
|
2113
2124
|
/**
|
|
2114
2125
|
* A live directory watcher handle returned by the injectable `watch` seam. Closing
|