@keystrokehq/cli 0.1.54 → 0.1.56

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
@@ -6579,7 +6579,7 @@ function registerBuildCommand(program) {
6579
6579
  try {
6580
6580
  const root = resolveProjectRoot(options.dir);
6581
6581
  ensureSdkCurrent(root);
6582
- const { buildApp } = await import("./dist-CEMCyGkb.mjs");
6582
+ const { buildApp } = await import("./dist-BAEU9vmA.mjs");
6583
6583
  await buildApp({ root });
6584
6584
  process.stdout.write(`Built ${root}\n`);
6585
6585
  } catch (error) {
@@ -6702,7 +6702,7 @@ async function sleep(ms) {
6702
6702
  }
6703
6703
  async function buildDeployArchive(client, root, projectId, filter) {
6704
6704
  if (filter?.length) {
6705
- const { buildFilteredApp } = await import("./dist-CEMCyGkb.mjs");
6705
+ const { buildFilteredApp } = await import("./dist-BAEU9vmA.mjs");
6706
6706
  const filtered = await buildFilteredApp({
6707
6707
  root,
6708
6708
  filter,
@@ -6724,7 +6724,7 @@ async function buildDeployArchive(client, root, projectId, filter) {
6724
6724
  sourceFiles: filtered.sourceFiles
6725
6725
  };
6726
6726
  }
6727
- const { buildApp } = await import("./dist-CEMCyGkb.mjs");
6727
+ const { buildApp } = await import("./dist-BAEU9vmA.mjs");
6728
6728
  const { sourceFiles } = await buildApp({
6729
6729
  root,
6730
6730
  collectSources: true,
@@ -6849,7 +6849,7 @@ function runtimeChildEnv(parentEnv, overrides) {
6849
6849
  //#region src/project/bootstrap-run.ts
6850
6850
  /** Node args + env for `@keystrokehq/build` bootstrap (shared by start + dev). */
6851
6851
  async function resolveBootstrapRun(options) {
6852
- const { resolveRuntimeBuildArtifact } = await import("./dist-CEMCyGkb.mjs");
6852
+ const { resolveRuntimeBuildArtifact } = await import("./dist-BAEU9vmA.mjs");
6853
6853
  const loader = pathToFileURL(resolveRuntimeBuildArtifact(options.runtimeNodeModules, "dist/runtime-loader.mjs")).href;
6854
6854
  const bootstrap = resolveRuntimeBuildArtifact(options.runtimeNodeModules, "dist/standalone-bootstrap.mjs");
6855
6855
  const args = [`--import=${loader}`];
@@ -6998,7 +6998,7 @@ async function runDev(options) {
6998
6998
  process.on("SIGINT", shutdown);
6999
6999
  process.on("SIGTERM", shutdown);
7000
7000
  try {
7001
- const { watchApp } = await import("./dist-CEMCyGkb.mjs");
7001
+ const { watchApp } = await import("./dist-BAEU9vmA.mjs");
7002
7002
  await watchApp({
7003
7003
  root,
7004
7004
  clean: false,
@@ -8031,7 +8031,7 @@ async function runStart(options) {
8031
8031
  const apiPort = Number(new URL(serverUrl).port || 80);
8032
8032
  const runtimeNodeModules = resolveCliRuntimeNodeModules(resolveCliRoot(import.meta.url));
8033
8033
  ensureNativeDeps(runtimeNodeModules);
8034
- const { buildApp } = await import("./dist-CEMCyGkb.mjs");
8034
+ const { buildApp } = await import("./dist-BAEU9vmA.mjs");
8035
8035
  await buildApp({
8036
8036
  root,
8037
8037
  clean: false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keystrokehq/cli",
3
- "version": "0.1.54",
3
+ "version": "0.1.56",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/keystrokehq/keystroke.git",
@@ -41,8 +41,8 @@
41
41
  "tsdown": "^0.22.0",
42
42
  "tsx": "^4.22.3",
43
43
  "@keystrokehq/oxlint-config": "0.0.4",
44
- "@keystrokehq/tsdown-config": "0.0.5",
45
44
  "@keystrokehq/tsconfig": "0.0.3",
45
+ "@keystrokehq/tsdown-config": "0.0.5",
46
46
  "@keystrokehq/vitest-config": "0.0.7"
47
47
  },
48
48
  "scripts": {