Skip to content

Commit 24f9e9d

Browse files
authored
Fix type script rules after updated dependencies (#202)
## Release notes: usage and product changes We update dependencies to fix `typedb-protocol` build. ## Implementation We use the updated rules fixed in [dependencies](typedb/typedb-dependencies#547) and also update the code based on the new requirements of the updates `ts` rules. We also update `maven` dependencies based on other `sync-dependencies` commits to fix the build.
1 parent cc2c0af commit 24f9e9d

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.bazelrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,7 @@ try-import ./.bazel-remote-cache.rc
77
build --incompatible_strict_action_env --java_language_version=11 --javacopt='--release 11' --enable_runfiles
88
run --incompatible_strict_action_env --java_runtime_version=remotejdk_11
99
test --incompatible_strict_action_env --test_env=PATH --cache_test_results=no --java_runtime_version=remotejdk_11
10+
11+
build --@aspect_rules_ts//ts:skipLibCheck=always
12+
fetch --@aspect_rules_ts//ts:skipLibCheck=always
13+
query --@aspect_rules_ts//ts:skipLibCheck=always

dependencies/maven/artifacts.snapshot

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
@maven//:com_eclipsesource_minimal_json_minimal_json_0_9_5
22
@maven//:com_electronwill_night_config_core_3_6_5
33
@maven//:com_electronwill_night_config_toml_3_6_5
4-
@maven//:com_fasterxml_jackson_core_jackson_annotations_2_10_1
5-
@maven//:com_fasterxml_jackson_core_jackson_core_2_10_1
6-
@maven//:com_fasterxml_jackson_core_jackson_databind_2_10_1
4+
@maven//:com_fasterxml_jackson_core_jackson_annotations_2_16_0
5+
@maven//:com_fasterxml_jackson_core_jackson_core_2_16_0
6+
@maven//:com_fasterxml_jackson_core_jackson_databind_2_16_0
77
@maven//:com_google_android_annotations_4_1_1_4
88
@maven//:com_google_api_grpc_proto_google_common_protos_2_9_0
99
@maven//:com_google_auth_google_auth_library_credentials_1_6_0
@@ -25,6 +25,7 @@
2525
@maven//:com_googlecode_java_diff_utils_diffutils_1_3_0
2626
@maven//:com_squareup_okhttp_okhttp_2_7_5
2727
@maven//:com_squareup_okio_okio_1_17_5
28+
@maven//:com_vdurmont_semver4j_3_1_0
2829
@maven//:commons_codec_commons_codec_1_13
2930
@maven//:commons_io_commons_io_2_3
3031
@maven//:commons_logging_commons_logging_1_2

grpc/nodejs/BUILD

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ ts_project(
6363
":node_modules/@types/node",
6464
":node_modules/typescript",
6565
],
66+
transpiler = "tsc",
6667
visibility = ["//visibility:public"],
6768
)
6869

0 commit comments

Comments
 (0)