Skip to content

Commit 0dec18e

Browse files
author
aladdin
committed
Fixed plugin not work with vscode Command Palette
related issues: #9
1 parent b2ec961 commit 0dec18e

File tree

4 files changed

+311
-256
lines changed

4 files changed

+311
-256
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Change Log
22

3+
## [0.0.7] - 2019-11-28
4+
- fixed issue (#9)[https://github.com/huangjianke/fish-redux-template/issues/9]
5+
36
## [0.0.6] - 2019-05-23
47
- fixed issue (#3)[https://github.com/huangjianke/fish-redux-template/issues/3]
58

package.json

+94-94
Original file line numberDiff line numberDiff line change
@@ -1,96 +1,96 @@
11
{
2-
"name": "fish-redux-template",
3-
"displayName": "fish-redux-template",
4-
"description": "Generate fish-redux Template",
5-
"version": "0.0.6",
6-
"publisher": "huangjianke",
7-
"icon": "images/logo.png",
8-
"license": "SEE LICENSE IN LICENSE.md",
9-
"repository": {
10-
"type": "git",
11-
"url": "https://github.com/huangjianke/fish-redux-template.git"
12-
},
13-
"engines": {
14-
"vscode": "^1.32.0"
15-
},
16-
"categories": [
17-
"Other"
18-
],
19-
"keywords": [
20-
"Template",
21-
"Fish Redux",
22-
"Flutter"
23-
],
24-
"activationEvents": [
25-
"*"
26-
],
27-
"main": "./out/extension.js",
28-
"contributes": {
29-
"commands": [
30-
{
31-
"command": "extension.GenerateFishReduxPageTemplate",
32-
"title": "Generate Page Template",
33-
"category": "Fish-Redux Template"
34-
},
35-
{
36-
"command": "extension.GenerateFishReduxComponentTemplate",
37-
"title": "Generate Component Template",
38-
"category": "Fish-Redux-Template"
39-
},
40-
{
41-
"command": "extension.GenerateFishReduxAdapterTemplate",
42-
"title": "Generate Adapter Template",
43-
"category": "Fish-Redux-Template"
44-
},
45-
{
46-
"command": "extension.OpenFishReduxTemplateFolder",
47-
"title": "Open Template Folder",
48-
"category": "Fish-Redux-Template"
49-
}
50-
],
51-
"menus": {
52-
"explorer/context": [
53-
{
54-
"command": "extension.GenerateFishReduxPageTemplate",
55-
"group": "1_modification"
56-
},
57-
{
58-
"command": "extension.GenerateFishReduxComponentTemplate",
59-
"group": "1_modification"
60-
},
61-
{
62-
"command": "extension.GenerateFishReduxAdapterTemplate",
63-
"group": "1_modification"
64-
},
65-
{
66-
"command": "extension.OpenFishReduxTemplateFolder",
67-
"group": "1_modification"
68-
}
69-
]
70-
}
71-
},
72-
"scripts": {
73-
"vscode:prepublish": "npm run compile",
74-
"compile": "tsc -p ./",
75-
"watch": "tsc -watch -p ./",
76-
"postinstall": "node ./node_modules/vscode/bin/install",
77-
"test": "npm run compile && node ./node_modules/vscode/bin/test"
78-
},
79-
"devDependencies": {
80-
"typescript": "^3.3.1",
81-
"vscode": "^1.1.28",
82-
"tslint": "^5.12.1",
83-
"@types/node": "^10.12.21",
84-
"@types/mocha": "^2.2.42",
85-
"mocha": "^5.0.0",
86-
"@types/mz": "0.0.32",
87-
"@types/lodash": "^4.14.99"
88-
},
89-
"dependencies": {
90-
"@types/mkdirp": "^0.5.2",
91-
"i": "^0.3.6",
92-
"lodash": "^4.17.4",
93-
"mkdirp": "^0.5.1",
94-
"mz": "^2.7.0"
95-
}
2+
"name": "fish-redux-template",
3+
"displayName": "fish-redux-template",
4+
"description": "Generate fish-redux Template",
5+
"version": "0.0.7",
6+
"publisher": "huangjianke",
7+
"icon": "images/logo.png",
8+
"license": "SEE LICENSE IN LICENSE.md",
9+
"repository": {
10+
"type": "git",
11+
"url": "https://github.com/huangjianke/fish-redux-template.git"
12+
},
13+
"engines": {
14+
"vscode": "^1.32.0"
15+
},
16+
"categories": [
17+
"Other"
18+
],
19+
"keywords": [
20+
"Template",
21+
"Fish Redux",
22+
"Flutter"
23+
],
24+
"activationEvents": [
25+
"*"
26+
],
27+
"main": "./out/extension.js",
28+
"contributes": {
29+
"commands": [
30+
{
31+
"command": "extension.GenerateFishReduxPageTemplate",
32+
"title": "Generate Page Template",
33+
"category": "Fish-Redux Template"
34+
},
35+
{
36+
"command": "extension.GenerateFishReduxComponentTemplate",
37+
"title": "Generate Component Template",
38+
"category": "Fish-Redux-Template"
39+
},
40+
{
41+
"command": "extension.GenerateFishReduxAdapterTemplate",
42+
"title": "Generate Adapter Template",
43+
"category": "Fish-Redux-Template"
44+
},
45+
{
46+
"command": "extension.OpenFishReduxTemplateFolder",
47+
"title": "Open Template Folder",
48+
"category": "Fish-Redux-Template"
49+
}
50+
],
51+
"menus": {
52+
"explorer/context": [
53+
{
54+
"command": "extension.GenerateFishReduxPageTemplate",
55+
"group": "1_modification"
56+
},
57+
{
58+
"command": "extension.GenerateFishReduxComponentTemplate",
59+
"group": "1_modification"
60+
},
61+
{
62+
"command": "extension.GenerateFishReduxAdapterTemplate",
63+
"group": "1_modification"
64+
},
65+
{
66+
"command": "extension.OpenFishReduxTemplateFolder",
67+
"group": "1_modification"
68+
}
69+
]
70+
}
71+
},
72+
"scripts": {
73+
"vscode:prepublish": "npm run compile",
74+
"compile": "tsc -p ./",
75+
"watch": "tsc -watch -p ./",
76+
"postinstall": "node ./node_modules/vscode/bin/install",
77+
"test": "npm run compile && node ./node_modules/vscode/bin/test"
78+
},
79+
"devDependencies": {
80+
"typescript": "^3.3.1",
81+
"vscode": "^1.1.28",
82+
"tslint": "^5.12.1",
83+
"@types/node": "^10.12.21",
84+
"@types/mocha": "^2.2.42",
85+
"mocha": "^5.0.0",
86+
"@types/mz": "0.0.32",
87+
"@types/lodash": "^4.14.99"
88+
},
89+
"dependencies": {
90+
"@types/mkdirp": "^0.5.2",
91+
"i": "^0.3.6",
92+
"lodash": "^4.17.4",
93+
"mkdirp": "^0.5.1",
94+
"mz": "^2.7.0"
95+
}
9696
}

0 commit comments

Comments
 (0)