We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d7cf71 commit 4cbed8cCopy full SHA for 4cbed8c
1 file changed
packages/cli/src/checkout/command.ts
@@ -4,8 +4,9 @@ import { ensure, build } from '../util/command-builders';
4
import * as o from '../options';
5
6
export type CheckoutOptions = Required<
7
- Pick<Opts, 'command' | 'projectName' | 'projectPath' | 'log'>
8
->;
+ Pick<Opts, 'command' | 'projectName' | 'projectPath'>
+> &
9
+ Pick<Opts, 'log'>;
10
11
const options = [o.projectName, o.projectPath, o.log];
12
0 commit comments