mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Adds a dev app that can be used to prototype and debug things while developing Angular. Use `pnpm dev` to run it.
13 lines
215 B
Text
13 lines
215 B
Text
load("@aspect_bazel_lib//lib:copy_to_bin.bzl", "copy_to_bin")
|
|
|
|
exports_files(
|
|
glob(["*"]),
|
|
)
|
|
|
|
copy_to_bin(
|
|
name = "public",
|
|
srcs = glob(["*"]),
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
)
|