fix: Fix show changelog command
This commit is contained in:
parent
cf827d3f37
commit
370a4d9d9e
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ import { getDefaultValues, getPackageJSON, writeFile } from "./fs";
|
|||
import { PATHS } from '../consts/paths';
|
||||
|
||||
function previewFile(): void {
|
||||
let uri = vscode.Uri.parse(path.join('file:///', PATHS.VSIX_DIR, './CHANGELOG.md'));
|
||||
let uri = vscode.Uri.file(path.join(PATHS.VSIX_DIR, './CHANGELOG.md'));
|
||||
|
||||
vscode.commands.executeCommand('markdown.showPreview', uri);
|
||||
|
||||
|
|
Loading…
Reference in a new issue