Skip to content

Commit

Permalink
fix: google-protobuf as dependency (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
bruuuuuuuce authored Oct 14, 2021
1 parent 15361eb commit 43dc5f8
Show file tree
Hide file tree
Showing 5 changed files with 132 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
set -x
export PATH=`pwd`/protoc/bin/:$PATH
pushd typescript
npm install
npm ci
npm run build
popd
shell: bash
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
set -x
export PATH=`pwd`/protoc/bin/:$PATH
pushd typescript
npm install
npm ci
npm run build
popd
shell: bash
Expand Down
1 change: 0 additions & 1 deletion typescript/.gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
node_modules
dist
package-lock.json
**/*.d.ts
index.js
128 changes: 128 additions & 0 deletions typescript/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
"license": "MIT",
"devDependencies": {
"@tsconfig/node16": "1.0.2",
"@types/google-protobuf": "3.15.5",
"@types/node": "16.10.3",
"google-protobuf": "3.18.1",
"protoc-gen-ts": "0.6.0",
"typescript": "4.4.3"
},
"dependencies": {
"@types/google-protobuf": "3.15.5",
"google-protobuf": "3.18.1",
"@grpc/grpc-js": "1.3.7"
},
"files": [
Expand Down

0 comments on commit 43dc5f8

Please sign in to comment.