@keystrokehq/cli 0.1.55 → 0.1.56
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-CEMCyGkb.mjs → dist-BAEU9vmA.mjs} +3 -3
- package/dist/{dist-CEMCyGkb.mjs.map → dist-BAEU9vmA.mjs.map} +1 -1
- package/dist/{dist-BzVkNGve.mjs → dist-COJ2wk-j.mjs} +1 -1
- package/dist/{dist-DDUFwkyN.mjs → dist-DPWhoGsR.mjs} +4 -3
- package/dist/dist-DPWhoGsR.mjs.map +1 -0
- package/dist/index.mjs +6 -6
- package/package.json +1 -1
- package/dist/dist-DDUFwkyN.mjs.map +0 -1
package/dist/index.mjs
CHANGED
|
@@ -6579,7 +6579,7 @@ function registerBuildCommand(program) {
|
|
|
6579
6579
|
try {
|
|
6580
6580
|
const root = resolveProjectRoot(options.dir);
|
|
6581
6581
|
ensureSdkCurrent(root);
|
|
6582
|
-
const { buildApp } = await import("./dist-
|
|
6582
|
+
const { buildApp } = await import("./dist-BAEU9vmA.mjs");
|
|
6583
6583
|
await buildApp({ root });
|
|
6584
6584
|
process.stdout.write(`Built ${root}\n`);
|
|
6585
6585
|
} catch (error) {
|
|
@@ -6702,7 +6702,7 @@ async function sleep(ms) {
|
|
|
6702
6702
|
}
|
|
6703
6703
|
async function buildDeployArchive(client, root, projectId, filter) {
|
|
6704
6704
|
if (filter?.length) {
|
|
6705
|
-
const { buildFilteredApp } = await import("./dist-
|
|
6705
|
+
const { buildFilteredApp } = await import("./dist-BAEU9vmA.mjs");
|
|
6706
6706
|
const filtered = await buildFilteredApp({
|
|
6707
6707
|
root,
|
|
6708
6708
|
filter,
|
|
@@ -6724,7 +6724,7 @@ async function buildDeployArchive(client, root, projectId, filter) {
|
|
|
6724
6724
|
sourceFiles: filtered.sourceFiles
|
|
6725
6725
|
};
|
|
6726
6726
|
}
|
|
6727
|
-
const { buildApp } = await import("./dist-
|
|
6727
|
+
const { buildApp } = await import("./dist-BAEU9vmA.mjs");
|
|
6728
6728
|
const { sourceFiles } = await buildApp({
|
|
6729
6729
|
root,
|
|
6730
6730
|
collectSources: true,
|
|
@@ -6849,7 +6849,7 @@ function runtimeChildEnv(parentEnv, overrides) {
|
|
|
6849
6849
|
//#region src/project/bootstrap-run.ts
|
|
6850
6850
|
/** Node args + env for `@keystrokehq/build` bootstrap (shared by start + dev). */
|
|
6851
6851
|
async function resolveBootstrapRun(options) {
|
|
6852
|
-
const { resolveRuntimeBuildArtifact } = await import("./dist-
|
|
6852
|
+
const { resolveRuntimeBuildArtifact } = await import("./dist-BAEU9vmA.mjs");
|
|
6853
6853
|
const loader = pathToFileURL(resolveRuntimeBuildArtifact(options.runtimeNodeModules, "dist/runtime-loader.mjs")).href;
|
|
6854
6854
|
const bootstrap = resolveRuntimeBuildArtifact(options.runtimeNodeModules, "dist/standalone-bootstrap.mjs");
|
|
6855
6855
|
const args = [`--import=${loader}`];
|
|
@@ -6998,7 +6998,7 @@ async function runDev(options) {
|
|
|
6998
6998
|
process.on("SIGINT", shutdown);
|
|
6999
6999
|
process.on("SIGTERM", shutdown);
|
|
7000
7000
|
try {
|
|
7001
|
-
const { watchApp } = await import("./dist-
|
|
7001
|
+
const { watchApp } = await import("./dist-BAEU9vmA.mjs");
|
|
7002
7002
|
await watchApp({
|
|
7003
7003
|
root,
|
|
7004
7004
|
clean: false,
|
|
@@ -8031,7 +8031,7 @@ async function runStart(options) {
|
|
|
8031
8031
|
const apiPort = Number(new URL(serverUrl).port || 80);
|
|
8032
8032
|
const runtimeNodeModules = resolveCliRuntimeNodeModules(resolveCliRoot(import.meta.url));
|
|
8033
8033
|
ensureNativeDeps(runtimeNodeModules);
|
|
8034
|
-
const { buildApp } = await import("./dist-
|
|
8034
|
+
const { buildApp } = await import("./dist-BAEU9vmA.mjs");
|
|
8035
8035
|
await buildApp({
|
|
8036
8036
|
root,
|
|
8037
8037
|
clean: false
|