Skip to content

Commit

Permalink
fixed issue with opening output
Browse files Browse the repository at this point in the history
  • Loading branch information
ntotten committed Dec 22, 2019
1 parent c073084 commit b57b238
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to the "prettier-vscode" extension will be documented in thi

<!-- Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. -->

## [3.18.0]

- Fixed a bug with the prettier output open command.
- Upgraded module dependencies.

## [3.17.0]

- Due to performance issues, global module resolution is now off by default. Enable by setting `prettier.resolveGlobalModules` to `true`.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "prettier-vscode",
"displayName": "Prettier - Code formatter",
"description": "Code formatter using prettier",
"version": "3.17.0",
"version": "3.18.0",
"publisher": "esbenp",
"author": "Prettier <@prettiercode>",
"galleryBanner": {
Expand Down
4 changes: 3 additions & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ export function activate(context: ExtensionContext) {
);
const openOutputCommand = commands.registerCommand(
"prettier.openOutput",
loggingService.show
() => {
loggingService.show();
}
);

const ignoreResolver = new IgnorerResolver(loggingService);
Expand Down

0 comments on commit b57b238

Please sign in to comment.