Skip to content

Commit b14b07f

Browse files
committed
Using a class now
1 parent 80b9a76 commit b14b07f

File tree

2 files changed

+194
-153
lines changed

2 files changed

+194
-153
lines changed

package.json

Lines changed: 68 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,57 @@
11
{
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.",
2+
"name": "RelativePath",
3+
"description": "Get relative url paths from files in the current workspace.",
4+
"version": "0.9.1",
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": "^1.0.0"
16+
},
17+
"categories": [
18+
"Other"
19+
],
20+
"license": "MIT",
21+
"displayName": "Relative Path",
22+
"activationEvents": [
23+
],
24+
"main": "./out/src/extension",
25+
"contributes": {
26+
"commands": [
27+
{
28+
"title": "Relative Path"
29+
}
30+
],
31+
"keybindings": [
32+
{
33+
"key": "ctrl+shift+h",
34+
"mac": "cmd+shift+h",
35+
"when": "editorTextFocus"
36+
}
37+
],
38+
"configuration": {
39+
"title": "RelativePath extension configuration",
40+
"type": "object",
41+
"properties": {
42+
"relativePath.ignore": {
43+
"type": "array",
44+
"default": [
45+
"**/node_modules/**",
46+
"**/*.dll",
47+
"**/obj/**",
48+
"**/objd/**"
49+
],
50+
"description": "An array of glob keys to ignore when searching.",
4551
"items": {
4652
"type": "string"
4753
}
48-
},
54+
},
4955
"relativePath.removeExtension": {
5056
"type": "boolean",
5157
"default": false,
@@ -56,17 +62,22 @@
5662
"default": false,
5763
"description": "Removes the leading ./ character when the path is pointing to a parent folder."
5864
}
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-
}
65+
}
66+
}
67+
},
68+
"icon": "icon.png",
69+
"keywords": [
70+
"relative",
71+
"path",
72+
"url",
73+
"file"
74+
],
75+
"scripts": {
76+
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
77+
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./"
78+
},
79+
"devDependencies": {
80+
"typescript": "^1.6.2",
81+
"vscode": "0.10.x"
82+
}
7283
}

0 commit comments

Comments
 (0)