@keystrokehq/cli 0.1.49 → 0.1.50
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-B4IgTkp3.mjs.map +1 -1
- package/dist/{dist-DJFUIl5O.mjs → dist-BVw5-nbD.mjs} +3 -3
- package/dist/{dist-DJFUIl5O.mjs.map → dist-BVw5-nbD.mjs.map} +1 -1
- package/dist/dist-DGiFjeeF.mjs +3 -0
- package/dist/{dist-rdfKnOL3.mjs → dist-GOTKB94Y.mjs} +151 -9
- package/dist/dist-GOTKB94Y.mjs.map +1 -0
- package/dist/index.mjs +6 -6
- package/package.json +1 -1
- package/dist/dist-rdfKnOL3.mjs.map +0 -1
- package/dist/dist-vpjsc5px.mjs +0 -3
package/dist/index.mjs
CHANGED
|
@@ -6583,7 +6583,7 @@ function registerBuildCommand(program) {
|
|
|
6583
6583
|
try {
|
|
6584
6584
|
const root = resolveProjectRoot(options.dir);
|
|
6585
6585
|
ensureSdkCurrent(root);
|
|
6586
|
-
const { buildApp } = await import("./dist-
|
|
6586
|
+
const { buildApp } = await import("./dist-BVw5-nbD.mjs");
|
|
6587
6587
|
await buildApp({ root });
|
|
6588
6588
|
process.stdout.write(`Built ${root}\n`);
|
|
6589
6589
|
} catch (error) {
|
|
@@ -6706,7 +6706,7 @@ async function sleep(ms) {
|
|
|
6706
6706
|
}
|
|
6707
6707
|
async function buildDeployArchive(client, root, projectId, filter) {
|
|
6708
6708
|
if (filter?.length) {
|
|
6709
|
-
const { buildFilteredApp } = await import("./dist-
|
|
6709
|
+
const { buildFilteredApp } = await import("./dist-BVw5-nbD.mjs");
|
|
6710
6710
|
const filtered = await buildFilteredApp({
|
|
6711
6711
|
root,
|
|
6712
6712
|
filter,
|
|
@@ -6728,7 +6728,7 @@ async function buildDeployArchive(client, root, projectId, filter) {
|
|
|
6728
6728
|
sourceFiles: filtered.sourceFiles
|
|
6729
6729
|
};
|
|
6730
6730
|
}
|
|
6731
|
-
const { buildApp } = await import("./dist-
|
|
6731
|
+
const { buildApp } = await import("./dist-BVw5-nbD.mjs");
|
|
6732
6732
|
const { sourceFiles } = await buildApp({
|
|
6733
6733
|
root,
|
|
6734
6734
|
collectSources: true,
|
|
@@ -6853,7 +6853,7 @@ function runtimeChildEnv(parentEnv, overrides) {
|
|
|
6853
6853
|
//#region src/project/bootstrap-run.ts
|
|
6854
6854
|
/** Node args + env for `@keystrokehq/build` bootstrap (shared by start + dev). */
|
|
6855
6855
|
async function resolveBootstrapRun(options) {
|
|
6856
|
-
const { resolveRuntimeBuildArtifact } = await import("./dist-
|
|
6856
|
+
const { resolveRuntimeBuildArtifact } = await import("./dist-BVw5-nbD.mjs");
|
|
6857
6857
|
const loader = pathToFileURL(resolveRuntimeBuildArtifact(options.runtimeNodeModules, "dist/runtime-loader.mjs")).href;
|
|
6858
6858
|
const bootstrap = resolveRuntimeBuildArtifact(options.runtimeNodeModules, "dist/standalone-bootstrap.mjs");
|
|
6859
6859
|
const args = [`--import=${loader}`];
|
|
@@ -7002,7 +7002,7 @@ async function runDev(options) {
|
|
|
7002
7002
|
process.on("SIGINT", shutdown);
|
|
7003
7003
|
process.on("SIGTERM", shutdown);
|
|
7004
7004
|
try {
|
|
7005
|
-
const { watchApp } = await import("./dist-
|
|
7005
|
+
const { watchApp } = await import("./dist-BVw5-nbD.mjs");
|
|
7006
7006
|
await watchApp({
|
|
7007
7007
|
root,
|
|
7008
7008
|
clean: false,
|
|
@@ -8035,7 +8035,7 @@ async function runStart(options) {
|
|
|
8035
8035
|
const apiPort = Number(new URL(serverUrl).port || 80);
|
|
8036
8036
|
const runtimeNodeModules = resolveCliRuntimeNodeModules(resolveCliRoot(import.meta.url));
|
|
8037
8037
|
ensureNativeDeps(runtimeNodeModules);
|
|
8038
|
-
const { buildApp } = await import("./dist-
|
|
8038
|
+
const { buildApp } = await import("./dist-BVw5-nbD.mjs");
|
|
8039
8039
|
await buildApp({
|
|
8040
8040
|
root,
|
|
8041
8041
|
clean: false
|