terminal-pilot 0.0.15 → 0.0.16
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/cli.js +390 -241
- package/dist/cli.js.map +4 -4
- package/dist/commands/close-session.js +7 -2
- package/dist/commands/close-session.js.map +4 -4
- package/dist/commands/create-session.js +7 -2
- package/dist/commands/create-session.js.map +4 -4
- package/dist/commands/fill.js +7 -2
- package/dist/commands/fill.js.map +4 -4
- package/dist/commands/get-session.js +7 -2
- package/dist/commands/get-session.js.map +4 -4
- package/dist/commands/index.js +29 -24
- package/dist/commands/index.js.map +4 -4
- package/dist/commands/install.js +13 -8
- package/dist/commands/install.js.map +4 -4
- package/dist/commands/installer.js +15 -10
- package/dist/commands/installer.js.map +4 -4
- package/dist/commands/list-sessions.js +7 -2
- package/dist/commands/list-sessions.js.map +4 -4
- package/dist/commands/press-key.js +7 -2
- package/dist/commands/press-key.js.map +4 -4
- package/dist/commands/read-history.js +7 -2
- package/dist/commands/read-history.js.map +4 -4
- package/dist/commands/read-screen.js +7 -2
- package/dist/commands/read-screen.js.map +4 -4
- package/dist/commands/resize.js +7 -2
- package/dist/commands/resize.js.map +4 -4
- package/dist/commands/runtime.js +6 -1
- package/dist/commands/runtime.js.map +4 -4
- package/dist/commands/screenshot.js +11 -6
- package/dist/commands/screenshot.js.map +4 -4
- package/dist/commands/send-signal.js +7 -2
- package/dist/commands/send-signal.js.map +4 -4
- package/dist/commands/type.js +7 -2
- package/dist/commands/type.js.map +4 -4
- package/dist/commands/uninstall.js +16 -11
- package/dist/commands/uninstall.js.map +4 -4
- package/dist/commands/wait-for-exit.js +7 -2
- package/dist/commands/wait-for-exit.js.map +4 -4
- package/dist/commands/wait-for.js +7 -2
- package/dist/commands/wait-for.js.map +4 -4
- package/dist/testing/cli-repl.js +390 -241
- package/dist/testing/cli-repl.js.map +4 -4
- package/dist/testing/qa-cli.js +402 -253
- package/dist/testing/qa-cli.js.map +4 -4
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// ../toolcraft/src/index.ts
|
|
2
|
-
import { fileURLToPath } from "node:url";
|
|
2
|
+
import { fileURLToPath as fileURLToPath2 } from "node:url";
|
|
3
3
|
|
|
4
4
|
// ../toolcraft/src/user-error.ts
|
|
5
5
|
var UserError = class extends Error {
|
|
@@ -154,6 +154,11 @@ var S = {
|
|
|
154
154
|
Json
|
|
155
155
|
};
|
|
156
156
|
|
|
157
|
+
// ../toolcraft/src/package-metadata.ts
|
|
158
|
+
import { existsSync, readFileSync, statSync } from "node:fs";
|
|
159
|
+
import path from "node:path";
|
|
160
|
+
import { fileURLToPath } from "node:url";
|
|
161
|
+
|
|
157
162
|
// ../toolcraft/src/index.ts
|
|
158
163
|
var commandConfigSymbol = /* @__PURE__ */ Symbol("toolcraft.command.config");
|
|
159
164
|
var commandSourcePathSymbol = /* @__PURE__ */ Symbol("toolcraft.command.sourcePath");
|
|
@@ -188,7 +193,7 @@ function cloneRequires(requires) {
|
|
|
188
193
|
function parseStackPath(candidate) {
|
|
189
194
|
if (candidate.startsWith("file://")) {
|
|
190
195
|
try {
|
|
191
|
-
return
|
|
196
|
+
return fileURLToPath2(candidate);
|
|
192
197
|
} catch {
|
|
193
198
|
return void 0;
|
|
194
199
|
}
|