Add dependencies for xDS Client

This commit is contained in:
Michael Lumish 2020-06-09 13:30:02 -07:00
parent e90d0c2c0e
commit 353a6e9714
4 changed files with 12 additions and 2 deletions

6
.gitmodules vendored
View File

@ -1,3 +1,9 @@
[submodule "packages/grpc-tools/deps/protobuf"]
path = packages/grpc-tools/deps/protobuf
url = https://github.com/protocolbuffers/protobuf
[submodule "packages/grpc-js/deps/envoy-api"]
path = packages/grpc-js/deps/envoy-api
url = https://github.com/envoyproxy/data-plane-api.git
[submodule "packages/grpc-js/deps/udpa"]
path = packages/grpc-js/deps/udpa
url = https://github.com/cncf/udpa.git

@ -0,0 +1 @@
Subproject commit 50cef8fcab37ba59a61068934d08a3f4c28a681f

@ -0,0 +1 @@
Subproject commit 3b31d022a144b334eb2224838e4d6952ab5253aa

View File

@ -15,7 +15,7 @@
"types": "build/src/index.d.ts",
"license": "Apache-2.0",
"devDependencies": {
"@grpc/proto-loader": "^0.5.0",
"@grpc/proto-loader": "^0.5.4",
"@types/gulp": "^4.0.6",
"@types/gulp-mocha": "0.0.32",
"@types/lodash": "^4.14.108",
@ -65,6 +65,8 @@
"files": [
"src/*.ts",
"build/src/*.{js,d.ts,js.map}",
"LICENSE"
"LICENSE",
"deps/envoy-api/envoy/**/*.proto",
"deps/udpa/udpa/**/*.proto"
]
}