@keystrokehq/cli 0.1.92 → 0.1.93
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--hhBOtX7.mjs +3 -0
- package/dist/{dist-Da8gEr12.mjs → dist-C7z6Dird.mjs} +3 -3
- package/dist/{dist-Da8gEr12.mjs.map → dist-C7z6Dird.mjs.map} +1 -1
- package/dist/{dist-CMWayagw.mjs → dist-D81Ms0uu.mjs} +1 -100
- package/dist/dist-D81Ms0uu.mjs.map +1 -0
- package/dist/index.mjs +6 -6
- package/package.json +1 -1
- package/dist/dist-BA8hASdK.mjs +0 -3
- package/dist/dist-CMWayagw.mjs.map +0 -1
package/dist/index.mjs
CHANGED
|
@@ -6760,7 +6760,7 @@ function registerBuildCommand(program) {
|
|
|
6760
6760
|
try {
|
|
6761
6761
|
const root = resolveProjectRoot(options.dir);
|
|
6762
6762
|
await ensureSdkCurrent(root);
|
|
6763
|
-
const { buildApp } = await import("./dist-
|
|
6763
|
+
const { buildApp } = await import("./dist-C7z6Dird.mjs");
|
|
6764
6764
|
await buildApp({ root });
|
|
6765
6765
|
process.stdout.write(`Built ${root}\n`);
|
|
6766
6766
|
} catch (error) {
|
|
@@ -6885,7 +6885,7 @@ async function sleep(ms) {
|
|
|
6885
6885
|
}
|
|
6886
6886
|
async function buildDeployArchive(client, root, projectId, filter) {
|
|
6887
6887
|
if (filter?.length) {
|
|
6888
|
-
const { buildFilteredApp } = await import("./dist-
|
|
6888
|
+
const { buildFilteredApp } = await import("./dist-C7z6Dird.mjs");
|
|
6889
6889
|
const filtered = await buildFilteredApp({
|
|
6890
6890
|
root,
|
|
6891
6891
|
filter,
|
|
@@ -6907,7 +6907,7 @@ async function buildDeployArchive(client, root, projectId, filter) {
|
|
|
6907
6907
|
sourceFiles: filtered.sourceFiles
|
|
6908
6908
|
};
|
|
6909
6909
|
}
|
|
6910
|
-
const { buildApp } = await import("./dist-
|
|
6910
|
+
const { buildApp } = await import("./dist-C7z6Dird.mjs");
|
|
6911
6911
|
const { sourceFiles } = await buildApp({
|
|
6912
6912
|
root,
|
|
6913
6913
|
collectSources: true,
|
|
@@ -7029,7 +7029,7 @@ function runtimeChildEnv(parentEnv, overrides) {
|
|
|
7029
7029
|
//#region src/project/bootstrap-run.ts
|
|
7030
7030
|
/** Node args + env for `@keystrokehq/build` bootstrap (shared by start + dev). */
|
|
7031
7031
|
async function resolveBootstrapRun(options) {
|
|
7032
|
-
const { resolveRuntimeBuildArtifact } = await import("./dist-
|
|
7032
|
+
const { resolveRuntimeBuildArtifact } = await import("./dist-C7z6Dird.mjs");
|
|
7033
7033
|
const loader = pathToFileURL(resolveRuntimeBuildArtifact(options.runtimeNodeModules, "dist/runtime-loader.mjs")).href;
|
|
7034
7034
|
const bootstrap = resolveRuntimeBuildArtifact(options.runtimeNodeModules, "dist/standalone-bootstrap.mjs");
|
|
7035
7035
|
const args = [`--import=${loader}`];
|
|
@@ -7178,7 +7178,7 @@ async function runDev(options) {
|
|
|
7178
7178
|
process.on("SIGINT", shutdown);
|
|
7179
7179
|
process.on("SIGTERM", shutdown);
|
|
7180
7180
|
try {
|
|
7181
|
-
const { watchApp } = await import("./dist-
|
|
7181
|
+
const { watchApp } = await import("./dist-C7z6Dird.mjs");
|
|
7182
7182
|
await watchApp({
|
|
7183
7183
|
root,
|
|
7184
7184
|
clean: false,
|
|
@@ -8220,7 +8220,7 @@ async function runStart(options) {
|
|
|
8220
8220
|
const apiPort = Number(new URL(serverUrl).port || 80);
|
|
8221
8221
|
const runtimeNodeModules = resolveCliRuntimeNodeModules(resolveCliRoot(import.meta.url));
|
|
8222
8222
|
ensureNativeDeps(runtimeNodeModules);
|
|
8223
|
-
const { buildApp } = await import("./dist-
|
|
8223
|
+
const { buildApp } = await import("./dist-C7z6Dird.mjs");
|
|
8224
8224
|
await buildApp({
|
|
8225
8225
|
root,
|
|
8226
8226
|
clean: false
|
package/package.json
CHANGED
package/dist/dist-BA8hASdK.mjs
DELETED