@keystrokehq/cli 0.0.54 → 0.0.55
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/index.mjs +6 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -3
package/dist/index.mjs
CHANGED
|
@@ -13915,8 +13915,10 @@ async function buildApp(options = {}) {
|
|
|
13915
13915
|
...options,
|
|
13916
13916
|
root
|
|
13917
13917
|
}));
|
|
13918
|
-
|
|
13919
|
-
|
|
13918
|
+
if (options.emitRouteManifest !== false) {
|
|
13919
|
+
const { emitRouteManifest } = await import("./emit-route-manifest-DRcNXHCP-CuH5IaKl.mjs");
|
|
13920
|
+
await emitRouteManifest(root);
|
|
13921
|
+
}
|
|
13920
13922
|
} finally {
|
|
13921
13923
|
process.chdir(previous);
|
|
13922
13924
|
}
|
|
@@ -14639,7 +14641,8 @@ async function runStart(options) {
|
|
|
14639
14641
|
ensureNativeDeps(runtimeNodeModules);
|
|
14640
14642
|
await buildApp({
|
|
14641
14643
|
root,
|
|
14642
|
-
clean: false
|
|
14644
|
+
clean: false,
|
|
14645
|
+
emitRouteManifest: false
|
|
14643
14646
|
});
|
|
14644
14647
|
const processes = [{
|
|
14645
14648
|
name: "api",
|