@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/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-Da8gEr12.mjs");
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-Da8gEr12.mjs");
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-Da8gEr12.mjs");
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-Da8gEr12.mjs");
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-Da8gEr12.mjs");
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-Da8gEr12.mjs");
8223
+ const { buildApp } = await import("./dist-C7z6Dird.mjs");
8224
8224
  await buildApp({
8225
8225
  root,
8226
8226
  clean: false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keystrokehq/cli",
3
- "version": "0.1.92",
3
+ "version": "0.1.93",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/keystrokehq/keystroke.git",
@@ -1,3 +0,0 @@
1
- #!/usr/bin/env node
2
- import { g as emitStoredRouteManifestForProject } from "./dist-CMWayagw.mjs";
3
- export { emitStoredRouteManifestForProject };