Skip to content

Commit 32bd70f

Browse files
committed
Update package.json for VS Code 0.10.7
There have been some changes in how extension code must get new versions of the vscode.d.ts file which contains VS Code API type definitions. This change updates the package.json file so that a new installation script is used to pull the appropriate version of the vscode.d.ts file.
1 parent 466c020 commit 32bd70f

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

package.json

+5-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"publisher": "ms-vscode",
66
"description": "Develop PowerShell scripts in Visual Studio Code!",
77
"engines": {
8-
"vscode": "0.10.x"
8+
"vscode": "^0.10.7"
99
},
1010
"license": "SEE LICENSE IN LICENSE.txt",
1111
"homepage": "https://github.com/PowerShell/vscode-powershell/blob/master/README.md",
@@ -29,16 +29,17 @@
2929
"onLanguage:powershell"
3030
],
3131
"dependencies": {
32-
"vscode-languageclient": "1.1.2"
32+
"vscode-languageclient": "1.3.1"
3333
},
3434
"devDependencies": {
35-
"vscode": "0.10.6",
35+
"vscode": "^0.11.x",
3636
"typescript": "1.7.3"
3737
},
3838
"extensionDependencies": [
3939
"vscode.powershell"
4040
],
4141
"scripts": {
42+
"postinstall": "node ./node_modules/vscode/bin/install",
4243
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
4344
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./"
4445
},
@@ -112,7 +113,7 @@
112113
"powershell"
113114
]
114115
},
115-
"program": "bin/Microsoft.PowerShell.EditorServices.Host.DebugAdapter.cmd",
116+
"program": "bin/PowerShellEditorServices.Host/bin/Debug/Microsoft.PowerShell.EditorServices.Host.DebugAdapter.cmd",
116117
"configurationAttributes": {
117118
"launch": {
118119
"required": [

0 commit comments

Comments
 (0)