Skip to content

Commit a7b6c61

Browse files
committed
fix: format import statements and improve message formatting in activate function
1 parent eeebe1d commit a7b6c61

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

src/extension.ts

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@ import { CommandsProvider, MAGEFORGE_COMMANDS, MageforgeCommand } from './comman
33
import { ThemeTreeItem, ThemesProvider } from './themesProvider';
44
import { WelcomeViewProvider } from './welcomeProvider';
55
import { ChangelogViewProvider } from './changelogProvider';
6-
import { buildCommandLine, buildComposerUpdateCommand, getMagentoRoot, runInTerminal } from './magento';
6+
import {
7+
buildCommandLine,
8+
buildComposerUpdateCommand,
9+
getMagentoRoot,
10+
runInTerminal,
11+
} from './magento';
712

813
export function activate(context: vscode.ExtensionContext) {
914
const commandsProvider = new CommandsProvider();
@@ -52,7 +57,9 @@ export function activate(context: vscode.ExtensionContext) {
5257
return;
5358
}
5459
runInTerminal('MageForge Update', buildComposerUpdateCommand(magentoRoot), magentoRoot);
55-
void vscode.window.showInformationMessage('MageForge: Updating the MageForge CLI package in the terminal.');
60+
void vscode.window.showInformationMessage(
61+
'MageForge: Updating the MageForge CLI package in the terminal.',
62+
);
5663
}),
5764
);
5865
}

0 commit comments

Comments
 (0)