@keystrokehq/cli 0.1.116 → 0.1.118
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-BZnKpPOl.mjs → dist-5C-6yUgD.mjs} +3 -3
- package/dist/{dist-BZnKpPOl.mjs.map → dist-5C-6yUgD.mjs.map} +1 -1
- package/dist/dist-BFMOjbkM.mjs +3 -0
- package/dist/{dist-CcF6D8j7.mjs → dist-Bqwb8ruo.mjs} +7 -2
- package/dist/dist-Bqwb8ruo.mjs.map +1 -0
- package/dist/index.mjs +6 -6
- package/package.json +3 -4
- package/dist/dist-CcF6D8j7.mjs.map +0 -1
- package/dist/dist-a5or5u2A.mjs +0 -3
package/dist/index.mjs
CHANGED
|
@@ -7451,7 +7451,7 @@ function registerBuildCommand(program) {
|
|
|
7451
7451
|
try {
|
|
7452
7452
|
const root = resolveProjectRoot(options.dir);
|
|
7453
7453
|
await ensureSdkCurrent(root);
|
|
7454
|
-
const { buildApp } = await import("./dist-
|
|
7454
|
+
const { buildApp } = await import("./dist-5C-6yUgD.mjs");
|
|
7455
7455
|
await buildApp({ root });
|
|
7456
7456
|
process.stdout.write(`Built ${root}\n`);
|
|
7457
7457
|
} catch (error) {
|
|
@@ -7576,7 +7576,7 @@ async function sleep(ms) {
|
|
|
7576
7576
|
}
|
|
7577
7577
|
async function buildDeployArchive(client, root, projectId, filter) {
|
|
7578
7578
|
if (filter?.length) {
|
|
7579
|
-
const { buildFilteredApp } = await import("./dist-
|
|
7579
|
+
const { buildFilteredApp } = await import("./dist-5C-6yUgD.mjs");
|
|
7580
7580
|
const filtered = await buildFilteredApp({
|
|
7581
7581
|
root,
|
|
7582
7582
|
filter,
|
|
@@ -7598,7 +7598,7 @@ async function buildDeployArchive(client, root, projectId, filter) {
|
|
|
7598
7598
|
sourceFiles: filtered.sourceFiles
|
|
7599
7599
|
};
|
|
7600
7600
|
}
|
|
7601
|
-
const { buildApp } = await import("./dist-
|
|
7601
|
+
const { buildApp } = await import("./dist-5C-6yUgD.mjs");
|
|
7602
7602
|
const { sourceFiles } = await buildApp({
|
|
7603
7603
|
root,
|
|
7604
7604
|
collectSources: true,
|
|
@@ -7725,7 +7725,7 @@ function runtimeChildEnv(parentEnv, overrides) {
|
|
|
7725
7725
|
//#region src/project/bootstrap-run.ts
|
|
7726
7726
|
/** Node args + env for `@keystrokehq/build` bootstrap (shared by start + dev). */
|
|
7727
7727
|
async function resolveBootstrapRun(options) {
|
|
7728
|
-
const { resolveRuntimeBuildArtifact } = await import("./dist-
|
|
7728
|
+
const { resolveRuntimeBuildArtifact } = await import("./dist-5C-6yUgD.mjs");
|
|
7729
7729
|
const loader = pathToFileURL(resolveRuntimeBuildArtifact(options.runtimeNodeModules, "dist/runtime-loader.mjs")).href;
|
|
7730
7730
|
const bootstrap = resolveRuntimeBuildArtifact(options.runtimeNodeModules, "dist/standalone-bootstrap.mjs");
|
|
7731
7731
|
const args = [`--import=${loader}`];
|
|
@@ -7875,7 +7875,7 @@ async function runDev(options) {
|
|
|
7875
7875
|
process.on("SIGINT", shutdown);
|
|
7876
7876
|
process.on("SIGTERM", shutdown);
|
|
7877
7877
|
try {
|
|
7878
|
-
const { watchApp } = await import("./dist-
|
|
7878
|
+
const { watchApp } = await import("./dist-5C-6yUgD.mjs");
|
|
7879
7879
|
await watchApp({
|
|
7880
7880
|
root,
|
|
7881
7881
|
clean: false,
|
|
@@ -8937,7 +8937,7 @@ async function runStart(options) {
|
|
|
8937
8937
|
const apiPort = Number(new URL(serverUrl).port || 80);
|
|
8938
8938
|
const runtimeNodeModules = resolveCliRuntimeNodeModules(resolveCliRoot(import.meta.url));
|
|
8939
8939
|
ensureNativeDeps(runtimeNodeModules);
|
|
8940
|
-
const { buildApp } = await import("./dist-
|
|
8940
|
+
const { buildApp } = await import("./dist-5C-6yUgD.mjs");
|
|
8941
8941
|
await buildApp({
|
|
8942
8942
|
root,
|
|
8943
8943
|
clean: false
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keystrokehq/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.118",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/keystrokehq/keystroke.git",
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
"tsdown": "^0.22.0",
|
|
44
44
|
"tsx": "^4.22.3",
|
|
45
45
|
"@keystrokehq/oxlint-config": "0.0.4",
|
|
46
|
+
"@keystrokehq/tsconfig": "0.0.3",
|
|
46
47
|
"@keystrokehq/tsdown-config": "0.0.5",
|
|
47
|
-
"@keystrokehq/vitest-config": "0.0.7"
|
|
48
|
-
"@keystrokehq/tsconfig": "0.0.3"
|
|
48
|
+
"@keystrokehq/vitest-config": "0.0.7"
|
|
49
49
|
},
|
|
50
50
|
"scripts": {
|
|
51
51
|
"build": "tsdown && node scripts/copy-templates.mjs && node scripts/copy-skills-bundle.mjs && node scripts/copy-configs.mjs",
|
|
@@ -55,7 +55,6 @@
|
|
|
55
55
|
"dev": "tsx src/index.ts",
|
|
56
56
|
"test": "vitest run",
|
|
57
57
|
"test:unit": "vitest run --project unit",
|
|
58
|
-
"test:integration": "vitest run --project integration",
|
|
59
58
|
"typecheck": "tsc --noEmit"
|
|
60
59
|
}
|
|
61
60
|
}
|