build: create dist/bin symlink with Bazel outputs (#27781)

Note that we had nasty problems in the past when this was enabled, but those have supposedly been fixed.

PR Close #27781
This commit is contained in:
Alex Eagle
2018-12-20 12:12:51 -08:00
committed by Alex Rickabaugh
parent 351ef2a6de
commit 9a965c9145
4 changed files with 28 additions and 5 deletions

15
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,15 @@
{
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/bazel-out/**": true,
"**/dist/**": true,
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/bazel-out": true,
"**/dist": true,
},
}