Skip to content

Commit 750d2dd

Browse files
committed
prettier
1 parent 72a94a5 commit 750d2dd

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

bin/completion-handlers.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,12 @@ export function setupCompletionForPackageManager(
7777
export function setupPnpmCompletions(completion: Completion) {
7878
completion.addCommand('add', 'Install a package', [], async () => []);
7979
completion.addCommand('remove', 'Remove a package', [], async () => []);
80-
completion.addCommand('install', 'Install all dependencies', [], async () => []);
80+
completion.addCommand(
81+
'install',
82+
'Install all dependencies',
83+
[],
84+
async () => []
85+
);
8186
completion.addCommand('update', 'Update packages', [], async () => []);
8287
completion.addCommand('exec', 'Execute a command', [], async () => []);
8388
completion.addCommand('run', 'Run a script', [], async () => []);

0 commit comments

Comments
 (0)