mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
25e13e9f96
Adds a dev app that can be used to prototype and debug things while developing Angular. Use `pnpm dev` to run it.
14 lines
215 B
Python
14 lines
215 B
Python
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",
|
|
],
|
|
)
|