Skip to content

Commit 8c60f38

Browse files
committed
Final touches for 0.9.2
1 parent d731614 commit 8c60f38

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

RelativePath-0.8.0.vsix

-5.11 MB
Binary file not shown.

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "RelativePath",
33
"description": "Get relative url paths from files in the current workspace.",
4-
"version": "0.9.1",
4+
"version": "0.9.2",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/jakob101/RelativePath"
@@ -82,5 +82,9 @@
8282
"devDependencies": {
8383
"typescript": "^1.6.2",
8484
"vscode": "0.10.x"
85+
},
86+
"dependencies": {
87+
"@types/glob": "^5.0.29",
88+
"glob": "^7.0.6"
8589
}
8690
}

src/extension.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import {window, workspace, commands, Disposable,
44
ExtensionContext, StatusBarAlignment, StatusBarItem,
55
TextDocument, QuickPickItem, FileSystemWatcher, Uri,
66
TextEditorEdit, TextEditor, Position} from 'vscode';
7-
let path = require("path");
8-
let Glob = require("glob").Glob;
7+
import * as path from "path";
8+
let Glob = require("Glob");
99

1010
// this method is called when your extension is activated
1111
// your extension is activated the very first time the command is executed

0 commit comments

Comments
 (0)