Skip to content

Commit

Permalink
Merge pull request #1937 from murgatroid99/grpc-js_publish_generated_…
Browse files Browse the repository at this point in the history
…channelz

grpc-js: Publish missing channelz proto and type files
  • Loading branch information
murgatroid99 authored Oct 13, 2021
2 parents d1aac29 + 24df9a0 commit aa7df42
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions packages/grpc-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@grpc/grpc-js",
"version": "1.4.0",
"version": "1.4.1",
"description": "gRPC Library for Node - pure JS implementation",
"homepage": "https://grpc.io/",
"repository": "https://github.com/grpc/grpc-node/tree/master/packages/grpc-js",
Expand Down Expand Up @@ -48,11 +48,11 @@
"compile": "tsc -p .",
"format": "clang-format -i -style=\"{Language: JavaScript, BasedOnStyle: Google, ColumnLimit: 80}\" src/*.ts test/*.ts",
"lint": "npm run check",
"prepare": "npm run compile",
"prepare": "npm run generate-types && npm run compile",
"test": "gulp test",
"check": "gts check src/**/*.ts",
"fix": "gts fix src/*.ts",
"pretest": "npm run compile",
"pretest": "npm run generate-types && npm run compile",
"posttest": "npm run check && madge -c ./build/src",
"generate-types": "proto-loader-gen-types --keepCase --longs String --enums String --defaults --oneofs --includeComments --includeDirs proto/ -O src/generated/ --grpcLib ../index channelz.proto"
},
Expand All @@ -62,7 +62,8 @@
},
"files": [
"src/**/*.ts",
"build/src/*.{js,d.ts,js.map}",
"build/src/**/*.{js,d.ts,js.map}",
"proto/*.proto",
"LICENSE",
"deps/envoy-api/envoy/api/v2/**/*.proto",
"deps/envoy-api/envoy/config/**/*.proto",
Expand Down

0 comments on commit aa7df42

Please sign in to comment.