Skip to content

Commit dd40594

Browse files
author
Conventional Changelog Action
committed
chore(release): v0.1.1
1 parent 4b42117 commit dd40594

File tree

2 files changed

+99
-86
lines changed

2 files changed

+99
-86
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
## [0.1.1](https://github.com/rhalaly/scope-to-this-vscode/compare/v0.1.0...v0.1.1) (2021-04-21)
2+
3+
4+
### Bug Fixes
5+
6+
* :bug: hide files with the same name as the folder ([502e2ae](https://github.com/rhalaly/scope-to-this-vscode/commit/502e2ae55b39ed4d61900689857c19722b0b4937))
7+
8+
9+
10+
# 0.1.0 (2021-04-08)
11+
12+
13+

package.json

Lines changed: 86 additions & 86 deletions
Original file line numberDiff line numberDiff line change
@@ -1,91 +1,91 @@
11
{
2-
"name": "scope-to-this",
3-
"displayName": "Scope to This",
4-
"description": "Adds Scope to This feature to the explorer context menu. Lets you focus on the things that matter",
5-
"publisher": "rhalaly",
6-
"version": "0.1.0",
7-
"license": "MIT",
8-
"icon": "resources/icon.png",
9-
"galleryBanner": {
10-
"color": "#1e1e1e",
11-
"theme": "dark"
12-
},
13-
"engines": {
14-
"vscode": "^1.55.0"
15-
},
16-
"categories": [
17-
"Other"
2+
"name": "scope-to-this",
3+
"displayName": "Scope to This",
4+
"description": "Adds Scope to This feature to the explorer context menu. Lets you focus on the things that matter",
5+
"publisher": "rhalaly",
6+
"version": "0.1.1",
7+
"license": "MIT",
8+
"icon": "resources/icon.png",
9+
"galleryBanner": {
10+
"color": "#1e1e1e",
11+
"theme": "dark"
12+
},
13+
"engines": {
14+
"vscode": "^1.55.0"
15+
},
16+
"categories": [
17+
"Other"
18+
],
19+
"keywords": [
20+
"scope",
21+
"directories",
22+
"folders",
23+
"show",
24+
"hide",
25+
"hidden",
26+
"ignore",
27+
"explorer",
28+
"workspace"
29+
],
30+
"main": "./out/extension.js",
31+
"homepage": "https://github.com/rhalaly/scope-to-this-vscode/blob/master/README.md",
32+
"repository": {
33+
"type": "git",
34+
"url": "https://github.com/rhalaly/scope-to-this-vscode"
35+
},
36+
"activationEvents": [
37+
"onStartupFinished",
38+
"onView:fileExplorer",
39+
"onCommand:scope-to-this.scope",
40+
"onCommand:scope-to-this.clear"
41+
],
42+
"contributes": {
43+
"commands": [
44+
{
45+
"command": "scope-to-this.scope",
46+
"title": "Scope to This"
47+
},
48+
{
49+
"command": "scope-to-this.clear",
50+
"title": "Clear Scope"
51+
}
1852
],
19-
"keywords": [
20-
"scope",
21-
"directories",
22-
"folders",
23-
"show",
24-
"hide",
25-
"hidden",
26-
"ignore",
27-
"explorer",
28-
"workspace"
29-
],
30-
"main": "./out/extension.js",
31-
"homepage": "https://github.com/rhalaly/scope-to-this-vscode/blob/master/README.md",
32-
"repository": {
33-
"type": "git",
34-
"url": "https://github.com/rhalaly/scope-to-this-vscode"
35-
},
36-
"activationEvents": [
37-
"onStartupFinished",
38-
"onView:fileExplorer",
39-
"onCommand:scope-to-this.scope",
40-
"onCommand:scope-to-this.clear"
41-
],
42-
"contributes": {
43-
"commands": [
44-
{
45-
"command": "scope-to-this.scope",
46-
"title": "Scope to This"
47-
},
48-
{
49-
"command": "scope-to-this.clear",
50-
"title": "Clear Scope"
51-
}
52-
],
53-
"menus": {
54-
"explorer/context": [
55-
{
56-
"command": "scope-to-this.scope",
57-
"group": "2_workspace@1",
58-
"when": "activeViewlet == 'workbench.view.explorer' && explorerResourceIsFolder && !scopeToThis.scoped"
59-
},
60-
{
61-
"command": "scope-to-this.clear",
62-
"group": "2_workspace@2",
63-
"when": "activeViewlet == 'workbench.view.explorer' && explorerResourceIsFolder && scopeToThis.scoped"
64-
}
65-
]
53+
"menus": {
54+
"explorer/context": [
55+
{
56+
"command": "scope-to-this.scope",
57+
"group": "2_workspace@1",
58+
"when": "activeViewlet == 'workbench.view.explorer' && explorerResourceIsFolder && !scopeToThis.scoped"
59+
},
60+
{
61+
"command": "scope-to-this.clear",
62+
"group": "2_workspace@2",
63+
"when": "activeViewlet == 'workbench.view.explorer' && explorerResourceIsFolder && scopeToThis.scoped"
6664
}
67-
},
68-
"scripts": {
69-
"vscode:prepublish": "yarn run compile",
70-
"compile": "tsc -p ./",
71-
"watch": "tsc -watch -p ./",
72-
"pretest": "yarn run compile && yarn run lint",
73-
"lint": "eslint src --ext ts",
74-
"test": "node ./out/test/runTest.js",
75-
"deploy": "vsce publish --yarn"
76-
},
77-
"devDependencies": {
78-
"@types/glob": "^7.1.3",
79-
"@types/mocha": "^8.0.4",
80-
"@types/node": "^12.11.7",
81-
"@types/vscode": "^1.55.0",
82-
"@typescript-eslint/eslint-plugin": "^4.14.1",
83-
"@typescript-eslint/parser": "^4.14.1",
84-
"eslint": "^7.19.0",
85-
"glob": "^7.1.6",
86-
"mocha": "^8.2.1",
87-
"typescript": "^4.1.3",
88-
"vsce": "^1.87.1",
89-
"vscode-test": "^1.5.0"
65+
]
9066
}
67+
},
68+
"scripts": {
69+
"vscode:prepublish": "yarn run compile",
70+
"compile": "tsc -p ./",
71+
"watch": "tsc -watch -p ./",
72+
"pretest": "yarn run compile && yarn run lint",
73+
"lint": "eslint src --ext ts",
74+
"test": "node ./out/test/runTest.js",
75+
"deploy": "vsce publish --yarn"
76+
},
77+
"devDependencies": {
78+
"@types/glob": "^7.1.3",
79+
"@types/mocha": "^8.0.4",
80+
"@types/node": "^12.11.7",
81+
"@types/vscode": "^1.55.0",
82+
"@typescript-eslint/eslint-plugin": "^4.14.1",
83+
"@typescript-eslint/parser": "^4.14.1",
84+
"eslint": "^7.19.0",
85+
"glob": "^7.1.6",
86+
"mocha": "^8.2.1",
87+
"typescript": "^4.1.3",
88+
"vsce": "^1.87.1",
89+
"vscode-test": "^1.5.0"
90+
}
9191
}

0 commit comments

Comments
 (0)