@keystrokehq/cli 0.1.140 → 0.1.142
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-Cp7XrP0x.mjs → dist-BCbmN5Di.mjs} +10 -1
- package/dist/{dist-Cp7XrP0x.mjs.map → dist-BCbmN5Di.mjs.map} +1 -1
- package/dist/dist-BcY5XTlp.mjs.map +1 -1
- package/dist/dist-D95-g2ba.mjs.map +1 -1
- package/dist/dist-DaDxDpeX.mjs.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/{program-CYtD52e1.mjs → program-5IMLXBit.mjs} +7 -7
- package/dist/{program-CYtD52e1.mjs.map → program-5IMLXBit.mjs.map} +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -8087,7 +8087,7 @@ function registerBuildCommand(program) {
|
|
|
8087
8087
|
try {
|
|
8088
8088
|
const root = resolveProjectRoot(options.dir);
|
|
8089
8089
|
await ensureSdkCurrent(root);
|
|
8090
|
-
const { buildApp } = await import("./dist-
|
|
8090
|
+
const { buildApp } = await import("./dist-BCbmN5Di.mjs");
|
|
8091
8091
|
await buildApp({ root });
|
|
8092
8092
|
process.stdout.write(`Built ${root}\n`);
|
|
8093
8093
|
} catch (error) {
|
|
@@ -8222,7 +8222,7 @@ async function sleep(ms) {
|
|
|
8222
8222
|
}
|
|
8223
8223
|
async function buildDeployArchive(client, root, projectId, filter) {
|
|
8224
8224
|
if (filter?.length) {
|
|
8225
|
-
const { buildFilteredApp } = await import("./dist-
|
|
8225
|
+
const { buildFilteredApp } = await import("./dist-BCbmN5Di.mjs");
|
|
8226
8226
|
const filtered = await buildFilteredApp({
|
|
8227
8227
|
root,
|
|
8228
8228
|
filter,
|
|
@@ -8244,7 +8244,7 @@ async function buildDeployArchive(client, root, projectId, filter) {
|
|
|
8244
8244
|
sourceFiles: filtered.sourceFiles
|
|
8245
8245
|
};
|
|
8246
8246
|
}
|
|
8247
|
-
const { buildApp } = await import("./dist-
|
|
8247
|
+
const { buildApp } = await import("./dist-BCbmN5Di.mjs");
|
|
8248
8248
|
const { sourceFiles } = await buildApp({
|
|
8249
8249
|
root,
|
|
8250
8250
|
collectSources: true,
|
|
@@ -8375,7 +8375,7 @@ function runtimeChildEnv(parentEnv, overrides) {
|
|
|
8375
8375
|
//#region src/project/bootstrap-run.ts
|
|
8376
8376
|
/** Node args + env for `@keystrokehq/build` bootstrap (shared by start + dev). */
|
|
8377
8377
|
async function resolveBootstrapRun(options) {
|
|
8378
|
-
const { resolveRuntimeBuildArtifact } = await import("./dist-
|
|
8378
|
+
const { resolveRuntimeBuildArtifact } = await import("./dist-BCbmN5Di.mjs");
|
|
8379
8379
|
const loader = pathToFileURL(resolveRuntimeBuildArtifact(options.runtimeNodeModules, "dist/runtime-loader.mjs")).href;
|
|
8380
8380
|
const bootstrap = resolveRuntimeBuildArtifact(options.runtimeNodeModules, "dist/standalone-bootstrap.mjs");
|
|
8381
8381
|
const args = [`--import=${loader}`];
|
|
@@ -8525,7 +8525,7 @@ async function runDev(options) {
|
|
|
8525
8525
|
process.on("SIGINT", shutdown);
|
|
8526
8526
|
process.on("SIGTERM", shutdown);
|
|
8527
8527
|
try {
|
|
8528
|
-
const { watchApp } = await import("./dist-
|
|
8528
|
+
const { watchApp } = await import("./dist-BCbmN5Di.mjs");
|
|
8529
8529
|
await watchApp({
|
|
8530
8530
|
root,
|
|
8531
8531
|
clean: false,
|
|
@@ -9635,7 +9635,7 @@ async function runStart(options) {
|
|
|
9635
9635
|
const apiPort = Number(new URL(serverUrl).port || 80);
|
|
9636
9636
|
const runtimeNodeModules = resolveCliRuntimeNodeModules(resolveCliRoot(import.meta.url));
|
|
9637
9637
|
ensureNativeDeps(runtimeNodeModules);
|
|
9638
|
-
const { buildApp } = await import("./dist-
|
|
9638
|
+
const { buildApp } = await import("./dist-BCbmN5Di.mjs");
|
|
9639
9639
|
await buildApp({
|
|
9640
9640
|
root,
|
|
9641
9641
|
clean: false
|
|
@@ -10537,4 +10537,4 @@ async function runCli(argv) {
|
|
|
10537
10537
|
//#endregion
|
|
10538
10538
|
export { runCli };
|
|
10539
10539
|
|
|
10540
|
-
//# sourceMappingURL=program-
|
|
10540
|
+
//# sourceMappingURL=program-5IMLXBit.mjs.map
|