Skip to content

Commit 6965d1b

Browse files
committed
added missing dep
1 parent 11766b7 commit 6965d1b

File tree

2 files changed

+75
-61
lines changed

2 files changed

+75
-61
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
**v0.8.3**
2+
=============================================
3+
4+
## Bug Fixes
5+
- Missing iconv-lite dep
6+
17
**v0.8.2**
28
=============================================
39

package.json

Lines changed: 69 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -1,64 +1,72 @@
11
{
2-
"name": "svn-scm",
3-
"displayName": "svn-scm",
4-
"description": "",
5-
"version": "0.8.2",
6-
"publisher": "johnstoncode",
7-
"engines": {
8-
"vscode": "^1.16.0"
9-
},
10-
"homepage": "https://github.com/JohnstonCode/svn-scm/blob/master/README.md",
11-
"repository": {
12-
"type": "git",
13-
"url": "https://github.com/JohnstonCode/svn-scm.git"
14-
},
15-
"bugs": {
16-
"url": "https://github.com/JohnstonCode/svn-scm/issues"
17-
},
18-
"categories": ["Other", "SCM Providers"],
19-
"keywords": ["multi-root ready"],
20-
"activationEvents": ["*"],
21-
"main": "./src/extension",
22-
"scripts": {
23-
"postinstall": "node ./node_modules/vscode/bin/install",
24-
"test": "node ./node_modules/vscode/bin/test"
25-
},
26-
"dependencies": {
27-
"svn-spawn": "^0.1.5"
28-
},
29-
"devDependencies": {
30-
"typescript": "^2.5.2",
31-
"vscode": "^1.1.5",
32-
"mocha": "^3.5.0",
33-
"eslint": "^4.6.1",
34-
"@types/node": "^7.0.0",
35-
"@types/mocha": "^2.2.42"
36-
},
37-
"contributes": {
38-
"commands": [
39-
{
40-
"command": "svn.add",
41-
"title": "add",
42-
"category": "svn",
43-
"icon": {
44-
"light": "icons/light/add.svg",
45-
"dark": "icons/dark/add.svg"
46-
}
47-
}
2+
"name": "svn-scm",
3+
"displayName": "svn-scm",
4+
"description": "",
5+
"version": "0.8.3",
6+
"publisher": "johnstoncode",
7+
"engines": {
8+
"vscode": "^1.16.0"
9+
},
10+
"homepage": "https://github.com/JohnstonCode/svn-scm/blob/master/README.md",
11+
"repository": {
12+
"type": "git",
13+
"url": "https://github.com/JohnstonCode/svn-scm.git"
14+
},
15+
"bugs": {
16+
"url": "https://github.com/JohnstonCode/svn-scm/issues"
17+
},
18+
"categories": [
19+
"Other",
20+
"SCM Providers"
21+
],
22+
"keywords": [
23+
"multi-root ready"
4824
],
49-
"menus": {
50-
"commandPalette": [],
51-
"scm/title": [],
52-
"scm/resourceGroup/context": [],
53-
"scm/resourceState/context": [
54-
{
55-
"command": "svn.add",
56-
"when": "scmProvider == svn && scmResourceGroup == unversioned",
57-
"group": "inline"
58-
}
59-
],
60-
"editor/title": []
25+
"activationEvents": [
26+
"*"
27+
],
28+
"main": "./src/extension",
29+
"scripts": {
30+
"postinstall": "node ./node_modules/vscode/bin/install",
31+
"test": "node ./node_modules/vscode/bin/test"
32+
},
33+
"dependencies": {
34+
"iconv-lite": "^0.4.19",
35+
"svn-spawn": "^0.1.5"
36+
},
37+
"devDependencies": {
38+
"typescript": "^2.5.2",
39+
"vscode": "^1.1.5",
40+
"mocha": "^3.5.0",
41+
"eslint": "^4.6.1",
42+
"@types/node": "^7.0.0",
43+
"@types/mocha": "^2.2.42"
6144
},
62-
"configuration": {}
63-
}
64-
}
45+
"contributes": {
46+
"commands": [
47+
{
48+
"command": "svn.add",
49+
"title": "add",
50+
"category": "svn",
51+
"icon": {
52+
"light": "icons/light/add.svg",
53+
"dark": "icons/dark/add.svg"
54+
}
55+
}
56+
],
57+
"menus": {
58+
"commandPalette": [],
59+
"scm/title": [],
60+
"scm/resourceGroup/context": [],
61+
"scm/resourceState/context": [
62+
{
63+
"command": "svn.add",
64+
"when": "scmProvider == svn && scmResourceGroup == unversioned",
65+
"group": "inline"
66+
}
67+
],
68+
"editor/title": []
69+
},
70+
"configuration": {}
71+
}
72+
}

0 commit comments

Comments
 (0)