Skip to content

Commit 80b9a76

Browse files
committed
Revert "0.9.0"
This reverts commit fb49f47.
1 parent fb49f47 commit 80b9a76

File tree

3 files changed

+57
-71
lines changed

3 files changed

+57
-71
lines changed

RelativePath-0.8.0.vsix

5.11 MB
Binary file not shown.

RelativePath-0.9.0.vsix

-8.24 KB
Binary file not shown.

package.json

Lines changed: 57 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,51 @@
11
{
2-
"name": "RelativePath",
3-
"description": "Get relative url paths from files in the current workspace.",
4-
"version": "0.9.0",
5-
"repository": {
6-
"type": "git",
7-
"url": "https://github.com/jakob101/RelativePath"
8-
},
9-
"publisher": "jakob101",
10-
"galleryBanner": {
11-
"color": "#373277",
12-
"theme": "dark"
13-
},
14-
"engines": {
15-
"vscode": "^0.10.1"
16-
},
17-
"categories": [
18-
"Other"
19-
],
20-
"license": "MIT",
21-
"displayName": "Relative Path",
22-
"activationEvents": [
23-
"onCommand:extension.relativePath"
24-
],
25-
"main": "./out/src/extension",
26-
"contributes": {
27-
"commands": [
28-
{
29-
"command": "extension.relativePath",
30-
"title": "Relative Path"
31-
}
32-
],
33-
"keybindings": [
34-
{
35-
"command": "extension.relativePath",
36-
"key": "ctrl+shift+h",
37-
"mac": "cmd+shift+h",
38-
"when": "editorTextFocus"
39-
}
40-
],
41-
"configuration": {
42-
"title": "RelativePath extension configuration",
43-
"type": "object",
44-
"properties": {
45-
"relativePath.ignore": {
46-
"type": "array",
47-
"default": [
48-
"**/node_modules/**",
49-
"**/*.dll",
50-
"**/obj/**",
51-
"**/objd/**"
52-
],
53-
"description": "An array of glob keys to ignore when searching.",
2+
"name": "RelativePath",
3+
"description": "Get relative url paths from files in the current workspace.",
4+
"version": "0.8.0",
5+
"repository": {
6+
"type": "git",
7+
"url": "https://github.com/jakob101/RelativePath"
8+
},
9+
"publisher": "jakob101",
10+
"galleryBanner": {
11+
"color": "#373277",
12+
"theme": "dark"
13+
},
14+
"engines": {
15+
"vscode": "^0.10.1"
16+
},
17+
"categories": [
18+
"Other"
19+
],
20+
"license": "MIT",
21+
"displayName": "Relative Path",
22+
"activationEvents": [
23+
"onCommand:extension.relativePath"
24+
],
25+
"main": "./out/src/extension",
26+
"contributes": {
27+
"commands": [{
28+
"command": "extension.relativePath",
29+
"title": "Relative Path"
30+
}],
31+
"keybindings": [{
32+
"command": "extension.relativePath",
33+
"key": "ctrl+shift+h",
34+
"mac": "cmd+shift+h",
35+
"when": "editorTextFocus"
36+
}],
37+
"configuration": {
38+
"title": "RelativePath extension configuration",
39+
"type": "object",
40+
"properties": {
41+
"relativePath.ignore": {
42+
"type": "array",
43+
"default": ["**/node_modules/**","**/*.dll","**/obj/**","**/objd/**"],
44+
"description": "An array of glob keys to ignore when searching.",
5445
"items": {
5546
"type": "string"
5647
}
57-
},
48+
},
5849
"relativePath.removeExtension": {
5950
"type": "boolean",
6051
"default": false,
@@ -65,22 +56,17 @@
6556
"default": false,
6657
"description": "Removes the leading ./ character when the path is pointing to a parent folder."
6758
}
68-
}
69-
}
70-
},
71-
"icon": "icon.png",
72-
"keywords": [
73-
"relative",
74-
"path",
75-
"url",
76-
"file"
77-
],
78-
"scripts": {
79-
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
80-
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./"
81-
},
82-
"devDependencies": {
83-
"typescript": "^1.6.2",
84-
"vscode": "0.10.x"
85-
}
59+
}
60+
}
61+
},
62+
"icon": "icon.png",
63+
"keywords": ["relative", "path", "url", "file"],
64+
"scripts": {
65+
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
66+
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./"
67+
},
68+
"devDependencies": {
69+
"typescript": "^1.6.2",
70+
"vscode": "0.10.x"
71+
}
8672
}

0 commit comments

Comments
 (0)