Skip to content

Commit acae7ea

Browse files
DBosleychuckjaz
authored andcommitted
Updated dependencies and fixed breaking changes (#136)
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
1 parent 58bf3be commit acae7ea

File tree

9 files changed

+154
-119
lines changed

9 files changed

+154
-119
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ client/out/
33
client/server/
44
server/node_modules/
55
dist/
6-
tests/**/yarn.lock
6+
tests/project/**/yarn.lock
77
**/.idea/
88
.DS_Store

client/package.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "ng-template",
2+
"name": "ng-language-service",
33
"displayName": "Angular Language Service",
44
"description": "Editor services for Angular templates",
55
"version": "0.1.4",
@@ -36,6 +36,9 @@
3636
]
3737
},
3838
"scripts": {
39+
"vscode:prepublish": "tsc -p ./",
40+
"compile": "tsc -watch -p ./",
41+
"update-vscode": "node ./node_modules/vscode/bin/install",
3942
"postinstall": "node ./node_modules/vscode/bin/install"
4043
},
4144
"devDependencies": {
@@ -44,10 +47,11 @@
4447
"vscode": "^1.1.0"
4548
},
4649
"dependencies": {
47-
"vscode-languageclient": "^3.2.2"
50+
"vscode-languageclient": "~3.2.2",
51+
"vscode-jsonrpc": "~3.2.0"
4852
},
4953
"repository": {
5054
"type": "git",
51-
"url": "https://github.com/angular/vscode-ng-template-service"
55+
"url": "https://github.com/angular/vscode-ng-language-service"
5256
}
5357
}

0 commit comments

Comments
 (0)