Skip to content

Commit 5004822

Browse files
authored
Remove repo self-references (#406)
* Avoid @// * Remove lock file for @maven It is shared by multiple workspaces and seems to cause problems when locked
1 parent e515eca commit 5004822

File tree

12 files changed

+54
-1117
lines changed

12 files changed

+54
-1117
lines changed

BUILD.bazel

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ filegroup(
5151
"go.mod",
5252
"go.sum",
5353
"maven_akka_install.json",
54-
"maven_install.json",
5554
"maven_scala_install.json",
5655
"maven_zio_install.json",
5756
"package.json",

MODULE.bazel

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,6 @@ maven.install(
245245
"grpc-java",
246246
"protobuf",
247247
],
248-
lock_file = "//:maven_install.json",
249248
)
250249
maven.install(
251250
name = "maven_scala",

example/person/BUILD.bazel

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -151,11 +151,11 @@ proto_ts_library(
151151
srcs = ["person.ts"],
152152
visibility = ["//visibility:public"],
153153
deps = [
154+
"//:node_modules/@nestjs/microservices",
155+
"//:node_modules/@types/node",
156+
"//:node_modules/long",
157+
"//:node_modules/protobufjs",
158+
"//:node_modules/rxjs",
154159
"//example/place:place_ts_proto",
155-
"@//:node_modules/@nestjs/microservices",
156-
"@//:node_modules/@types/node",
157-
"@//:node_modules/long",
158-
"@//:node_modules/protobufjs",
159-
"@//:node_modules/rxjs",
160160
],
161161
)

example/place/BUILD.bazel

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -151,11 +151,11 @@ proto_ts_library(
151151
srcs = ["place.ts"],
152152
visibility = ["//visibility:public"],
153153
deps = [
154+
"//:node_modules/@nestjs/microservices",
155+
"//:node_modules/@types/node",
156+
"//:node_modules/long",
157+
"//:node_modules/protobufjs",
158+
"//:node_modules/rxjs",
154159
"//example/thing:thing_ts_proto",
155-
"@//:node_modules/@nestjs/microservices",
156-
"@//:node_modules/@types/node",
157-
"@//:node_modules/long",
158-
"@//:node_modules/protobufjs",
159-
"@//:node_modules/rxjs",
160160
],
161161
)

example/routeguide/BUILD.bazel

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -252,10 +252,10 @@ proto_ts_library(
252252
srcs = ["routeguide.ts"],
253253
visibility = ["//visibility:public"],
254254
deps = [
255-
"@//:node_modules/@nestjs/microservices",
256-
"@//:node_modules/@types/node",
257-
"@//:node_modules/long",
258-
"@//:node_modules/protobufjs",
259-
"@//:node_modules/rxjs",
255+
"//:node_modules/@nestjs/microservices",
256+
"//:node_modules/@types/node",
257+
"//:node_modules/long",
258+
"//:node_modules/protobufjs",
259+
"//:node_modules/rxjs",
260260
],
261261
)

example/thing/BUILD.bazel

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -151,11 +151,11 @@ proto_ts_library(
151151
srcs = ["thing.ts"],
152152
visibility = ["//visibility:public"],
153153
deps = [
154+
"//:node_modules/@nestjs/microservices",
155+
"//:node_modules/@types/node",
156+
"//:node_modules/long",
157+
"//:node_modules/protobufjs",
158+
"//:node_modules/rxjs",
154159
"//google/protobuf:timestamppb_ts_proto",
155-
"@//:node_modules/@nestjs/microservices",
156-
"@//:node_modules/@types/node",
157-
"@//:node_modules/long",
158-
"@//:node_modules/protobufjs",
159-
"@//:node_modules/rxjs",
160160
],
161161
)

google/protobuf/BUILD.bazel

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ proto_ts_library(
2727
srcs = ["timestamp.ts"],
2828
visibility = ["//visibility:public"],
2929
deps = [
30-
"@//:node_modules/@nestjs/microservices",
31-
"@//:node_modules/@types/node",
32-
"@//:node_modules/long",
33-
"@//:node_modules/protobufjs",
34-
"@//:node_modules/rxjs",
30+
"//:node_modules/@nestjs/microservices",
31+
"//:node_modules/@types/node",
32+
"//:node_modules/long",
33+
"//:node_modules/protobufjs",
34+
"//:node_modules/rxjs",
3535
],
3636
)

0 commit comments

Comments
 (0)