We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02bb00e commit a8f9e21Copy full SHA for a8f9e21
frontend/angular/BUILD.bazel
@@ -51,7 +51,21 @@ angular_cli.ng(
51
args = ["build"],
52
chdir = package_name(),
53
out_dirs = ["dist"],
54
- tags = ["local"],
+ tags = ["local"], # TODO: make this work in the Bazel sandbox / remote
55
+)
56
+
57
+# FIXME:
58
+# Fails due to running in the bazel run execroot which symlinks to the sources:
59
+# [ERROR] File '../../../../src/main.ts' is missing from the TypeScript compilation. [plugin angular-compiler]
60
+angular_cli.ng_binary(
61
+ name = "serve",
62
+ args = ["serve"],
63
+ chdir = package_name(),
64
+ data = [
65
+ ":config",
66
+ ":src",
67
+ ] + TOOLS + RUNTIME,
68
69
)
70
71
http_server.http_server_binary(
0 commit comments