@keystrokehq/cli 0.1.119 → 0.1.120
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/{dist-09fqaTku.mjs → dist-Cbj9KWqy.mjs} +3 -3
- package/dist/{dist-09fqaTku.mjs.map → dist-Cbj9KWqy.mjs.map} +1 -1
- package/dist/dist-D-Rci5t2.mjs +3 -0
- package/dist/{dist-_VnO_w_x.mjs → dist-DEf7Qj_S.mjs} +996 -214
- package/dist/dist-DEf7Qj_S.mjs.map +1 -0
- package/dist/index.mjs +1 -1
- package/dist/{program-Clv5Xyph.mjs → program-DA7HhKFG.mjs} +7 -7
- package/dist/{program-Clv5Xyph.mjs.map → program-DA7HhKFG.mjs.map} +1 -1
- package/package.json +1 -1
- package/dist/dist-DxhD4InG.mjs +0 -3
- package/dist/dist-_VnO_w_x.mjs.map +0 -1
package/dist/index.mjs
CHANGED
|
@@ -7510,7 +7510,7 @@ function registerBuildCommand(program) {
|
|
|
7510
7510
|
try {
|
|
7511
7511
|
const root = resolveProjectRoot(options.dir);
|
|
7512
7512
|
await ensureSdkCurrent(root);
|
|
7513
|
-
const { buildApp } = await import("./dist-
|
|
7513
|
+
const { buildApp } = await import("./dist-Cbj9KWqy.mjs");
|
|
7514
7514
|
await buildApp({ root });
|
|
7515
7515
|
process.stdout.write(`Built ${root}\n`);
|
|
7516
7516
|
} catch (error) {
|
|
@@ -7645,7 +7645,7 @@ async function sleep(ms) {
|
|
|
7645
7645
|
}
|
|
7646
7646
|
async function buildDeployArchive(client, root, projectId, filter) {
|
|
7647
7647
|
if (filter?.length) {
|
|
7648
|
-
const { buildFilteredApp } = await import("./dist-
|
|
7648
|
+
const { buildFilteredApp } = await import("./dist-Cbj9KWqy.mjs");
|
|
7649
7649
|
const filtered = await buildFilteredApp({
|
|
7650
7650
|
root,
|
|
7651
7651
|
filter,
|
|
@@ -7667,7 +7667,7 @@ async function buildDeployArchive(client, root, projectId, filter) {
|
|
|
7667
7667
|
sourceFiles: filtered.sourceFiles
|
|
7668
7668
|
};
|
|
7669
7669
|
}
|
|
7670
|
-
const { buildApp } = await import("./dist-
|
|
7670
|
+
const { buildApp } = await import("./dist-Cbj9KWqy.mjs");
|
|
7671
7671
|
const { sourceFiles } = await buildApp({
|
|
7672
7672
|
root,
|
|
7673
7673
|
collectSources: true,
|
|
@@ -7798,7 +7798,7 @@ function runtimeChildEnv(parentEnv, overrides) {
|
|
|
7798
7798
|
//#region src/project/bootstrap-run.ts
|
|
7799
7799
|
/** Node args + env for `@keystrokehq/build` bootstrap (shared by start + dev). */
|
|
7800
7800
|
async function resolveBootstrapRun(options) {
|
|
7801
|
-
const { resolveRuntimeBuildArtifact } = await import("./dist-
|
|
7801
|
+
const { resolveRuntimeBuildArtifact } = await import("./dist-Cbj9KWqy.mjs");
|
|
7802
7802
|
const loader = pathToFileURL(resolveRuntimeBuildArtifact(options.runtimeNodeModules, "dist/runtime-loader.mjs")).href;
|
|
7803
7803
|
const bootstrap = resolveRuntimeBuildArtifact(options.runtimeNodeModules, "dist/standalone-bootstrap.mjs");
|
|
7804
7804
|
const args = [`--import=${loader}`];
|
|
@@ -7948,7 +7948,7 @@ async function runDev(options) {
|
|
|
7948
7948
|
process.on("SIGINT", shutdown);
|
|
7949
7949
|
process.on("SIGTERM", shutdown);
|
|
7950
7950
|
try {
|
|
7951
|
-
const { watchApp } = await import("./dist-
|
|
7951
|
+
const { watchApp } = await import("./dist-Cbj9KWqy.mjs");
|
|
7952
7952
|
await watchApp({
|
|
7953
7953
|
root,
|
|
7954
7954
|
clean: false,
|
|
@@ -9010,7 +9010,7 @@ async function runStart(options) {
|
|
|
9010
9010
|
const apiPort = Number(new URL(serverUrl).port || 80);
|
|
9011
9011
|
const runtimeNodeModules = resolveCliRuntimeNodeModules(resolveCliRoot(import.meta.url));
|
|
9012
9012
|
ensureNativeDeps(runtimeNodeModules);
|
|
9013
|
-
const { buildApp } = await import("./dist-
|
|
9013
|
+
const { buildApp } = await import("./dist-Cbj9KWqy.mjs");
|
|
9014
9014
|
await buildApp({
|
|
9015
9015
|
root,
|
|
9016
9016
|
clean: false
|
|
@@ -9853,4 +9853,4 @@ async function runCli(argv) {
|
|
|
9853
9853
|
//#endregion
|
|
9854
9854
|
export { runCli };
|
|
9855
9855
|
|
|
9856
|
-
//# sourceMappingURL=program-
|
|
9856
|
+
//# sourceMappingURL=program-DA7HhKFG.mjs.map
|