Skip to content

Commit

Permalink
Updated dependencies and fixed breaking changes (#136)
Browse files Browse the repository at this point in the history
Added VSCode tasks and launch options
Added scripts that follow the VSCode language service example more
closely
Fixes: #128 for errors now handled by @angular/language-service
Will need to add better exception handling to fix it in all cases

fixed issues with debugging locally
  • Loading branch information
DBosley authored and chuckjaz committed Aug 4, 2017
1 parent 58bf3be commit acae7ea
Show file tree
Hide file tree
Showing 9 changed files with 154 additions and 119 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ client/out/
client/server/
server/node_modules/
dist/
tests/**/yarn.lock
tests/project/**/yarn.lock
**/.idea/
.DS_Store
10 changes: 7 additions & 3 deletions client/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "ng-template",
"name": "ng-language-service",
"displayName": "Angular Language Service",
"description": "Editor services for Angular templates",
"version": "0.1.4",
Expand Down Expand Up @@ -36,6 +36,9 @@
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"update-vscode": "node ./node_modules/vscode/bin/install",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
Expand All @@ -44,10 +47,11 @@
"vscode": "^1.1.0"
},
"dependencies": {
"vscode-languageclient": "^3.2.2"
"vscode-languageclient": "~3.2.2",
"vscode-jsonrpc": "~3.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/angular/vscode-ng-template-service"
"url": "https://github.com/angular/vscode-ng-language-service"
}
}

0 comments on commit acae7ea

Please sign in to comment.