agent-conveyor 0.1.2 → 0.1.4
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/main.js
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
import { readFileSync } from "node:fs";
|
|
2
3
|
import { programNameFromArgv } from "./program-name.js";
|
|
3
4
|
import { runTypescriptRuntimeCommand } from "./typescript-runtime.js";
|
|
4
5
|
const args = process.argv.slice(2);
|
|
5
6
|
const program = programNameFromArgv(process.argv, process.env);
|
|
7
|
+
const stdin = args.includes("--from-stdin") ? readFileSync(0, "utf8") : undefined;
|
|
6
8
|
const typescriptRuntime = runTypescriptRuntimeCommand({
|
|
7
9
|
args,
|
|
8
10
|
cwd: process.cwd(),
|
|
9
11
|
env: process.env,
|
|
10
12
|
program,
|
|
13
|
+
stdin,
|
|
11
14
|
});
|
|
12
15
|
if (typescriptRuntime.stdout) {
|
|
13
16
|
process.stdout.write(typescriptRuntime.stdout);
|
package/dist/cli/main.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main.js","sourceRoot":"","sources":["../../src/cli/main.ts"],"names":[],"mappings":";AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,2BAA2B,EAAE,MAAM,yBAAyB,CAAC;AAEtE,MAAM,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;AACnC,MAAM,OAAO,GAAG,mBAAmB,CAAC,OAAO,CAAC,IAAI,EAAE,OAAO,CAAC,GAAG,CAAC,CAAC;AAC/D,MAAM,iBAAiB,GAAG,2BAA2B,CAAC;IACpD,IAAI;IACJ,GAAG,EAAE,OAAO,CAAC,GAAG,EAAE;IAClB,GAAG,EAAE,OAAO,CAAC,GAAG;IAChB,OAAO;
|
|
1
|
+
{"version":3,"file":"main.js","sourceRoot":"","sources":["../../src/cli/main.ts"],"names":[],"mappings":";AACA,OAAO,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AACvC,OAAO,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,2BAA2B,EAAE,MAAM,yBAAyB,CAAC;AAEtE,MAAM,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;AACnC,MAAM,OAAO,GAAG,mBAAmB,CAAC,OAAO,CAAC,IAAI,EAAE,OAAO,CAAC,GAAG,CAAC,CAAC;AAC/D,MAAM,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;AAClF,MAAM,iBAAiB,GAAG,2BAA2B,CAAC;IACpD,IAAI;IACJ,GAAG,EAAE,OAAO,CAAC,GAAG,EAAE;IAClB,GAAG,EAAE,OAAO,CAAC,GAAG;IAChB,OAAO;IACP,KAAK;CACN,CAAC,CAAC;AAEH,IAAI,iBAAiB,CAAC,MAAM,EAAE,CAAC;IAC7B,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,iBAAiB,CAAC,MAAM,CAAC,CAAC;AACjD,CAAC;AACD,IAAI,iBAAiB,CAAC,MAAM,EAAE,CAAC;IAC7B,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,iBAAiB,CAAC,MAAM,CAAC,CAAC;AACjD,CAAC;AACD,OAAO,CAAC,QAAQ,GAAG,iBAAiB,CAAC,QAAQ,CAAC"}
|
|
@@ -28,6 +28,9 @@ The historical Python metadata exposed:
|
|
|
28
28
|
- compatibility console script `workerctl`
|
|
29
29
|
- bundled `workerctl/assets/skills/**/*`
|
|
30
30
|
|
|
31
|
+
The historical Python/PyPI release path is archived in
|
|
32
|
+
`docs/archive/python-package-history.md`.
|
|
33
|
+
|
|
31
34
|
The historical wheel package smoke proved:
|
|
32
35
|
|
|
33
36
|
- wheel builds
|