Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @openfn/cli

## 1.17.1

### Patch Changes

- a0a1cb7: Add log option for checkout and merge

## 1.17.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openfn/cli",
"version": "1.17.0",
"version": "1.17.1",
"description": "CLI devtools for the OpenFn toolchain",
"engines": {
"node": ">=18",
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/src/checkout/command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import { ensure, build } from '../util/command-builders';
import * as o from '../options';

export type CheckoutOptions = Required<
Pick<Opts, 'command' | 'projectName' | 'projectPath'>
Pick<Opts, 'command' | 'projectName' | 'projectPath' | 'log'>
>;

const options = [o.projectName, o.projectPath];
const options = [o.projectName, o.projectPath, o.log];

const checkoutCommand: yargs.CommandModule = {
command: 'checkout <project-name>',
Expand Down
2 changes: 2 additions & 0 deletions packages/cli/src/merge/command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export type MergeOptions = Required<
| 'projectPath'
| 'removeUnmapped'
| 'workflowMappings'
| 'log'
>
>;

Expand All @@ -19,6 +20,7 @@ const options = [
o.projectPath,
o.removeUnmapped,
o.workflowMappings,
o.log,
];

const mergeCommand: yargs.CommandModule = {
Expand Down