-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: add v12_language_service/node_modules to release package (#1826)
* build: add missing vscode-nls to npm_translate_lock hoisted package * fix: add v12_language_service/node_modules to release package
- Loading branch information
1 parent
199a88a
commit a7cde7e
Showing
4 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
packages: | ||
- v12_language_service |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,16 @@ | ||
load("@npm//:defs.bzl", "npm_link_all_packages") | ||
|
||
npm_link_all_packages(name = "node_modules") | ||
|
||
filegroup( | ||
name = "npm_files", | ||
srcs = [ | ||
"package.json", | ||
"yarn.lock", | ||
# There are needed for backward compat with Angular v12. | ||
# See https://github.com/angular/vscode-ng-language-service/issues/1821. | ||
":node_modules/@angular/language-service", | ||
":node_modules/@angular/language-server", | ||
], | ||
visibility = ["//:__pkg__"], | ||
) |