Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump bazel and some deps #1

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bazelversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.5.0
7.1.0
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# rules_typescript_proto
![](https://github.com/Dig-Doug/rules_typescript_proto/workflows/ci/badge.svg)

Bazel rules for generating TypeScript declarations for JavaScript protocol buffers using the
Bazel rules for generating TypeScript declarations for JavaScript protocol buffers using the
[ts-protoc-gen](https://github.com/improbable-eng/ts-protoc-gen) protoc plugin. These rules can also
generate service definitions for use by [grpc-web](https://github.com/improbable-eng/grpc-web) or
[grpc-node](https://github.com/grpc/grpc-node).
Expand Down Expand Up @@ -56,7 +56,7 @@ typescript_proto_library(
)
```

You can now use the `test_ts_proto` target as a `dep` in other `ts_library` targets. However, you
You can now use the `test_ts_proto` target as a `dep` in other `ts_library` targets. However, you
will need to include the following dependencies at runtime yourself:

- `google-protobuf`
Expand Down
10 changes: 5 additions & 5 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
name = "build_bazel_rules_nodejs",
sha256 = "6142e9586162b179fdd570a55e50d1332e7d9c030efd853453438d607569721d",
urls = ["https://github.com/bazelbuild/rules_nodejs/releases/download/3.0.0/rules_nodejs-3.0.0.tar.gz"],
sha256 = "c911b5bd8aee8b0498cc387cacdb5f917098ce477fb4182db07b0ef8a9e045c0",
urls = ["https://github.com/bazelbuild/rules_nodejs/releases/download/4.7.1/rules_nodejs-4.7.1.tar.gz"],
)

http_archive(
name = "io_bazel_rules_go",
sha256 = "a8d6b1b354d371a646d2f7927319974e0f9e52f73a2452d2b3877118169eb6bb",
sha256 = "56d8c5a5c91e1af73eca71a6fab2ced959b67c86d12ba37feedb0a2dfea441a6",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.23.3/rules_go-v0.23.3.tar.gz",
"https://github.com/bazelbuild/rules_go/releases/download/v0.23.3/rules_go-v0.23.3.tar.gz",
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.37.0/rules_go-v0.37.0.zip",
"https://github.com/bazelbuild/rules_go/releases/download/v0.37.0/rules_go-v0.37.0.zip",
],
)

Expand Down
15 changes: 7 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,18 @@
"google-protobuf": "3.12.2"
},
"devDependencies": {
"@bazel/typescript": "3.0.0",
"@bazel/concatjs": "3.0.0",
"@bazel/jasmine": "3.0.0",
"@bazel/rollup": "3.0.0",
"@bazel/typescript": "^4.0.0",
"@bazel/concatjs": "4.6.2",
"@bazel/jasmine": "^4.6.1",
"@bazel/rollup": "^4.0.0",
"@improbable-eng/grpc-web": "0.13.0",
"@types/google-protobuf": "3.7.2",
"@types/jasmine": "3.5.11",
"@types/node": "12.12.50",
"@types/node": "^22.10.1",
"c8": "^7.3.0",
"clang-format": "1.4.0",
"grpc": "1.24.9",
"grpc-tools": "1.10.0",
"@grpc/grpc-js": "1.2.1",
"grpc-tools": "~1.12.0",
"@grpc/grpc-js": "1.12.4",
"husky": "4.2.5",
"jasmine": "^3.6.1",
"jasmine-core": "^3.6.0",
Expand Down
Loading