@keystrokehq/cli 0.1.65 → 0.1.66

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
@@ -6768,7 +6768,7 @@ function registerBuildCommand(program) {
6768
6768
  try {
6769
6769
  const root = resolveProjectRoot(options.dir);
6770
6770
  ensureSdkCurrent(root);
6771
- const { buildApp } = await import("./dist-BnlTZTsD.mjs");
6771
+ const { buildApp } = await import("./dist-Bna9bSWA.mjs");
6772
6772
  await buildApp({ root });
6773
6773
  process.stdout.write(`Built ${root}\n`);
6774
6774
  } catch (error) {
@@ -6891,7 +6891,7 @@ async function sleep(ms) {
6891
6891
  }
6892
6892
  async function buildDeployArchive(client, root, projectId, filter) {
6893
6893
  if (filter?.length) {
6894
- const { buildFilteredApp } = await import("./dist-BnlTZTsD.mjs");
6894
+ const { buildFilteredApp } = await import("./dist-Bna9bSWA.mjs");
6895
6895
  const filtered = await buildFilteredApp({
6896
6896
  root,
6897
6897
  filter,
@@ -6913,7 +6913,7 @@ async function buildDeployArchive(client, root, projectId, filter) {
6913
6913
  sourceFiles: filtered.sourceFiles
6914
6914
  };
6915
6915
  }
6916
- const { buildApp } = await import("./dist-BnlTZTsD.mjs");
6916
+ const { buildApp } = await import("./dist-Bna9bSWA.mjs");
6917
6917
  const { sourceFiles } = await buildApp({
6918
6918
  root,
6919
6919
  collectSources: true,
@@ -7035,7 +7035,7 @@ function runtimeChildEnv(parentEnv, overrides) {
7035
7035
  //#region src/project/bootstrap-run.ts
7036
7036
  /** Node args + env for `@keystrokehq/build` bootstrap (shared by start + dev). */
7037
7037
  async function resolveBootstrapRun(options) {
7038
- const { resolveRuntimeBuildArtifact } = await import("./dist-BnlTZTsD.mjs");
7038
+ const { resolveRuntimeBuildArtifact } = await import("./dist-Bna9bSWA.mjs");
7039
7039
  const loader = pathToFileURL(resolveRuntimeBuildArtifact(options.runtimeNodeModules, "dist/runtime-loader.mjs")).href;
7040
7040
  const bootstrap = resolveRuntimeBuildArtifact(options.runtimeNodeModules, "dist/standalone-bootstrap.mjs");
7041
7041
  const args = [`--import=${loader}`];
@@ -7184,7 +7184,7 @@ async function runDev(options) {
7184
7184
  process.on("SIGINT", shutdown);
7185
7185
  process.on("SIGTERM", shutdown);
7186
7186
  try {
7187
- const { watchApp } = await import("./dist-BnlTZTsD.mjs");
7187
+ const { watchApp } = await import("./dist-Bna9bSWA.mjs");
7188
7188
  await watchApp({
7189
7189
  root,
7190
7190
  clean: false,
@@ -8215,7 +8215,7 @@ async function runStart(options) {
8215
8215
  const apiPort = Number(new URL(serverUrl).port || 80);
8216
8216
  const runtimeNodeModules = resolveCliRuntimeNodeModules(resolveCliRoot(import.meta.url));
8217
8217
  ensureNativeDeps(runtimeNodeModules);
8218
- const { buildApp } = await import("./dist-BnlTZTsD.mjs");
8218
+ const { buildApp } = await import("./dist-Bna9bSWA.mjs");
8219
8219
  await buildApp({
8220
8220
  root,
8221
8221
  clean: false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keystrokehq/cli",
3
- "version": "0.1.65",
3
+ "version": "0.1.66",
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-aQ56wvGQ.mjs";
3
- export { emitStoredRouteManifestForProject };