@f-o-h/cli 0.1.18 → 0.1.19
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/README.md +1 -1
- package/dist/foh.js +6 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ AI-operator provisioning CLI for Front Of House.
|
|
|
4
4
|
|
|
5
5
|
Public mirror: https://github.com/iiko38/front-of-house-cli
|
|
6
6
|
|
|
7
|
-
Current published baseline: `@f-o-h/cli@0.1.
|
|
7
|
+
Current published baseline: `@f-o-h/cli@0.1.19`
|
|
8
8
|
|
|
9
9
|
This mirror is a generated release artifact. The private product monorepo is not
|
|
10
10
|
published here, and no open-source license is granted unless stated separately.
|
package/dist/foh.js
CHANGED
|
@@ -32681,7 +32681,7 @@ var StdioServerTransport = class {
|
|
|
32681
32681
|
};
|
|
32682
32682
|
|
|
32683
32683
|
// src/lib/cli-version.ts
|
|
32684
|
-
var CLI_VERSION = "0.1.
|
|
32684
|
+
var CLI_VERSION = "0.1.19";
|
|
32685
32685
|
|
|
32686
32686
|
// src/commands/mcp-serve.ts
|
|
32687
32687
|
var DEFAULT_TIMEOUT_MS = 12e4;
|
|
@@ -38971,6 +38971,11 @@ function copyCommandCaptureArtifacts(input) {
|
|
|
38971
38971
|
const commandLog = (0, import_path12.join)(input.captureDir, "commands.ndjson");
|
|
38972
38972
|
if (!(0, import_fs14.existsSync)(commandLog)) return;
|
|
38973
38973
|
(0, import_fs14.writeFileSync)((0, import_path12.join)(input.runDir, "commands.ndjson"), (0, import_fs14.readFileSync)(commandLog, "utf8"), "utf8");
|
|
38974
|
+
for (const name of (0, import_fs14.readdirSync)(input.captureDir)) {
|
|
38975
|
+
if (name.startsWith("command-output-cmd_")) {
|
|
38976
|
+
(0, import_fs14.copyFileSync)((0, import_path12.join)(input.captureDir, name), (0, import_path12.join)(input.runDir, name));
|
|
38977
|
+
}
|
|
38978
|
+
}
|
|
38974
38979
|
}
|
|
38975
38980
|
function relativeArtifactName(path2) {
|
|
38976
38981
|
return (0, import_path12.basename)(path2);
|