(argv)
| 823 | } |
| 824 | |
| 825 | async function handleTransfer(argv) { |
| 826 | const { options } = parseCommandInput(argv, { |
| 827 | valueOptions: ["cwd", "source"], |
| 828 | booleanOptions: ["json"] |
| 829 | }); |
| 830 | |
| 831 | const cwd = resolveCommandCwd(options); |
| 832 | const { payload, rendered } = await executeTransfer(cwd, { |
| 833 | source: options.source |
| 834 | }); |
| 835 | outputCommandResult(payload, rendered, options.json); |
| 836 | } |
| 837 | |
| 838 | async function handleTaskWorker(argv) { |
| 839 | const { options } = parseCommandInput(argv, { |
no test coverage detected